"native" -> "foreign".

This commit is contained in:
Bob Nystrom
2013-12-29 10:14:38 -08:00
parent 63d1255566
commit a9323376ec
2 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -247,11 +247,11 @@ struct WrenVM
// During a foreign function call, this will point to the first argument (the
// receiver) of the call on the fiber's stack.
Value* nativeCallSlot;
Value* foreignCallSlot;
// During a foreign function call, this will contain the number of arguments
// to the function.
int nativeCallNumArgs;
int foreignCallNumArgs;
};
// A generic allocation function that handles all explicit memory management.