Implement Process.version (#42)

* Implement `Process.version`
* Update`os` test suite
This commit is contained in:
Dario Vladović
2020-06-13 21:23:02 -07:00
committed by GitHub
parent 1ab88ed201
commit e4a0fa485e
5 changed files with 17 additions and 0 deletions
+6
View File
@@ -71,6 +71,12 @@ void processAllArguments(WrenVM* vm)
}
}
void processVersion(WrenVM* vm) {
wrenEnsureSlots(vm, 1);
wrenSetSlotString(vm, 0, WREN_VERSION_STRING);
}
void processCwd(WrenVM* vm)
{
wrenEnsureSlots(vm, 1);
+1
View File
@@ -10,5 +10,6 @@ class Process {
static arguments { allArguments[2..-1] }
foreign static allArguments
foreign static version
foreign static cwd
}
+1
View File
@@ -12,5 +12,6 @@ static const char* osModuleSource =
" static arguments { allArguments[2..-1] }\n"
"\n"
" foreign static allArguments\n"
" foreign static version\n"
" foreign static cwd\n"
"}\n";