Command - Part of sequence - represent single static command Example: SELECT * FROM Customers;
| 21 | // Example: |
| 22 | // SELECT * FROM Customers; |
| 23 | type Command interface { |
| 24 | Node |
| 25 | CommandNode() |
| 26 | } |
| 27 | |
| 28 | // Expression - Mathematical expression that is used to evaluate conditions |
| 29 | // |
nothing calls this directly
no outgoing calls
no test coverage detected