(variable *symbol.Variable)
| 87 | // Object 变量对象,可以获取和保存变量的值 |
| 88 | type Object interface { |
| 89 | GetValue(variable *symbol.Variable) interface{} |
| 90 | SetValue(variable *symbol.Variable, value interface{}) |
| 91 | String() string |
| 92 | } |
no outgoing calls
no test coverage detected