(object *FuncObject)
| 48 | } |
| 49 | |
| 50 | func NewObjectStackFrame(object *FuncObject) *Frame { |
| 51 | return &Frame{object: object, scope: object.GetFunction()} |
| 52 | } |
| 53 | func NewBlockScopeFrame(scope symbol.Scope) *Frame { |
| 54 | return &Frame{scope: scope, object: NewEmptyObject()} |
| 55 | } |
no test coverage detected