GetClassFunctionVariable 查找类中的函数变量
(name string, paramTypes []Type)
| 62 | |
| 63 | // GetClassFunctionVariable 查找类中的函数变量 |
| 64 | func (c *Class) GetClassFunctionVariable(name string, paramTypes []Type) *Variable { |
| 65 | // todo crossoverJie 查找父类的函数 |
| 66 | return c.scope.GetFunctionVariable(name, paramTypes) |
| 67 | } |
| 68 | |
| 69 | func (c *Class) ContainsSymbol(symbol Symbol) bool { |
| 70 | // todo crossoverJie 查找父类 |
no test coverage detected