| # | Line 125 | Line 125 | class SelectionEvaluator{ | |
|---|---|---|
| 125 | void clearDefinitionsAndLoadPredefined(); | |
| 126 | ||
| 127 | void define(); | |
| 128 | < | |
| 128 | > | void select(); | 
| 129 | void predefine(); | |
| 130 | ||
| 131 | void instructionDispatchLoop(); | |
| # | Line 134 | Line 134 | class SelectionEvaluator{ | |
| 134 | ||
| 135 | BitSet expression(std::vector<Token>& tokens, int pc); | |
| 136 | ||
| 137 | + | |
| 138 | + | void evalError(const std::string& message); | 
| 139 | + | |
| 140 | + | void unrecognizedCommand(const Token& token) { | 
| 141 | + | evalError("unrecognized command:" + token.value); | 
| 142 | + | } | 
| 143 | + | |
| 144 | SelectionCompiler compiler; | |
| 145 | ||
| 146 | const static int scriptLevelMax = 10; | |
| – | Removed lines | 
| + | Added lines | 
| < | Changed lines | 
| > | Changed lines |