(name string, isArray bool)
| 31 | } |
| 32 | |
| 33 | func NewPrimitiveType(name string, isArray bool) Type { |
| 34 | return &PrimitiveType{name: name, isArray: isArray} |
| 35 | } |
| 36 | |
| 37 | func NewPrimitiveTypeWithType(t Type) Type { |
| 38 | declareFunctionType, ok := t.(*DeclareFunctionType) |
no outgoing calls
no test coverage detected