Node is connector between commands and expressions
| 13 | |
| 14 | // Node is connector between commands and expressions |
| 15 | type Node interface { |
| 16 | TokenLiteral() string |
| 17 | } |
| 18 | |
| 19 | // Command - Part of sequence - represent single static command |
| 20 | // |
no outgoing calls
no test coverage detected