MCPcopy Create free account
hub / github.com/crossoverJie/gscript / GetClassFunctionVariable

Method GetClassFunctionVariable

symbol/class_type.go:64–67  ·  view source on GitHub ↗

GetClassFunctionVariable 查找类中的函数变量

(name string, paramTypes []Type)

Source from the content-addressed store, hash-verified

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

Callers 1

ExitFunctionCallMethod · 0.80

Calls 1

GetFunctionVariableMethod · 0.65

Tested by

no test coverage detected