| 120 | int precedence; |
| 121 | int argCount; |
| 122 | Token(TokenType t, const std::string& v = std::string(), int p = -1, int ac = 0) : type(t), value(v), precedence(p), argCount(ac) {} |
| 123 | }; |
| 124 | |
| 125 | struct ReturnException : public std::exception |
nothing calls this directly
no outgoing calls
no test coverage detected