We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:globals
the :globals command should print a list of all the globals in the current session, organized by type:
CoffeeMaker <class> maker <CoffeeMaker instance> start <function> counter1 <closure> counter2 <closure> count <primitive:number> program <primitive:string> flag <primitive:bool>
for clox, even though we always wrap functions in closures, by inspecting the upvalues array we can tell if a function is an actual closure.
clox
upvalues
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the
:globals
command should print a list of all the globals in the current session, organized by type:for
clox
, even though we always wrap functions in closures, by inspecting theupvalues
array we can tell if a function is an actual closure.The text was updated successfully, but these errors were encountered: