Lines Matching full:token
34 * Returns current value of a token
36 * sets the next token value
37 * returns current value of a token
39 * sets the next token value
40 * returns the next value of a token
44 std::string_view token; /* current token */ member
45 std::vector<panda::pandasm::Token> tokens; /* token list */
48 Token::Type id = Token::Type::ID_BAD; /* current token type */
49 …Token::Type signop = Token::Type::ID_BAD; /* current token operand type (if it is an operation) */
57 void Make(const std::vector<panda::pandasm::Token> &t);
66 Token::Type WaitFor();
67 Token::Type Next();
69 Token::Type operator++(int);
70 Token::Type operator--(int);
71 Token::Type operator++();
72 Token::Type operator--();
73 Token::Type operator*();