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