This module implements script functions that are stored in the global namespace such as parseInt and isdefined. isdefined takes a string as an argument, and returns true if a variable with that name is defined anywhere on the stack.
This is called by the interpreter's initializeStdlib method to store functions in the global namespace
See Source File
This module implements script functions that are stored in the global namespace such as parseInt and isdefined. isdefined takes a string as an argument, and returns true if a variable with that name is defined anywhere on the stack.