pushScope method
Implementation
void pushScope({LuaObject? context}) {
// scope.dump();
scope = Scope(parent: scope, context: context);
// print('scope depth: ${scope.depth}');
}
void pushScope({LuaObject? context}) {
// scope.dump();
scope = Scope(parent: scope, context: context);
// print('scope depth: ${scope.depth}');
}