Expression - Mathematical expression that is used to evaluate conditions Methods: GetIdentifiers - Return array for all Identifiers within expression
| 31 | // |
| 32 | // GetIdentifiers - Return array for all Identifiers within expression |
| 33 | type Expression interface { |
| 34 | GetIdentifiers() []Identifier |
| 35 | } |
| 36 | |
| 37 | // Tifier - Interface that represent Token with string value |
| 38 | // |
no outgoing calls
no test coverage detected