mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-02 19:00:47 +08:00
🎨 dump gc time occupation
This commit is contained in:
@@ -151,7 +151,7 @@ var _parse = func(parser, args, result_hash) {
|
||||
return;
|
||||
}
|
||||
|
||||
var _add_command = func(parser, long, short, help, need_arg , need_nargs) {
|
||||
var _add_command = func(parser, long, short, help, need_arg, need_nargs) {
|
||||
var new_command = {
|
||||
full_name: long,
|
||||
short_name: short,
|
||||
|
||||
@@ -380,7 +380,7 @@ var bind = func(function, locals, outer_scope = nil) {
|
||||
die("this runtime does not support bind");
|
||||
}
|
||||
|
||||
var call = func(function ,args = nil, _me = nil, locals = nil, error = nil) {
|
||||
var call = func(function, args = nil, _me = nil, locals = nil, error = nil) {
|
||||
die("this runtime does not support call");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user