| 95 | } |
| 96 | |
| 97 | type Value struct { |
| 98 | Pos lexer.Position |
| 99 | |
| 100 | Number *float64 ` @Number` |
| 101 | Variable *string `| @Ident` |
| 102 | String *string `| @String` |
| 103 | Call *Call `| @@` |
| 104 | Subexpression *Expression `| "(" @@ ")"` |
| 105 | } |
| 106 | |
| 107 | type Factor struct { |
| 108 | Pos lexer.Position |
nothing calls this directly
no outgoing calls
no test coverage detected