Add Stdin.isTerminal.

This commit is contained in:
Bob Nystrom
2016-05-21 12:51:11 -07:00
parent 06731f66d4
commit 6002cc4d65
6 changed files with 20 additions and 0 deletions
+6
View File
@@ -539,6 +539,12 @@ void stdinIsRawSet(WrenVM* vm)
}
}
void stdinIsTerminal(WrenVM* vm)
{
initStdin();
wrenSetSlotBool(vm, 0, uv_guess_handle(stdinDescriptor) == UV_TTY);
}
static void allocCallback(uv_handle_t* handle, size_t suggestedSize,
uv_buf_t* buf)
{
+1
View File
@@ -217,6 +217,7 @@ foreign class Stat {
class Stdin {
foreign static isRaw
foreign static isRaw=(value)
foreign static isTerminal
static readByte() {
return read_ {
+1
View File
@@ -219,6 +219,7 @@ static const char* ioModuleSource =
"class Stdin {\n"
" foreign static isRaw\n"
" foreign static isRaw=(value)\n"
" foreign static isTerminal\n"
"\n"
" static readByte() {\n"
" return read_ {\n"