| 107 | } |
| 108 | |
| 109 | type BuiltinExpr struct { |
| 110 | P position.Position |
| 111 | Name string |
| 112 | Args Node |
| 113 | |
| 114 | typMu sync.RWMutex |
| 115 | typ types.Type |
| 116 | } |
| 117 | |
| 118 | func (n *BuiltinExpr) Pos() *position.Position { |
| 119 | return &n.P |
nothing calls this directly
no outgoing calls
no test coverage detected