| 414 | var functionTypeIndex int |
| 415 | |
| 416 | type DeclareFunctionType struct { |
| 417 | name string |
| 418 | encloseScope Scope |
| 419 | returnType Type // 返回值类型 |
| 420 | parameterType []Type // 参数类型 |
| 421 | isArray bool |
| 422 | } |
| 423 | |
| 424 | // NewDeclareFunctionType 函数类型的变量 |
| 425 | // func int(int) f2 = f1(); f2 的类型 |
nothing calls this directly
no outgoing calls
no test coverage detected