(classObject *ClassObject)
| 54 | return &Frame{scope: scope, object: NewEmptyObject()} |
| 55 | } |
| 56 | func NewClassStackFrame(classObject *ClassObject) *Frame { |
| 57 | return &Frame{scope: classObject.class, object: classObject} |
| 58 | } |
| 59 | |
| 60 | func (s *Frame) GetScope() symbol.Scope { |
| 61 | return s.scope |
no outgoing calls
no test coverage detected