Searched defs:KeywordString (Results 1 - 2 of 2) sorted by relevance
/arkcompiler/ets_frontend/es2panda/lexer/ |
H A D | keywordString.h | 25 struct KeywordString { struct 26 constexpr KeywordString(std::string_view s, TokenType t, TokenType k) : str(s), tokenType(t), keywordType(k) {} in KeywordString() function 28 explicit KeywordString(std::string_view &s) : str(s) {} in KeywordString() function
|
/arkcompiler/ets_frontend/ets2panda/lexer/ |
H A D | keywordString.h | 24 struct KeywordString { struct 25 constexpr KeywordString(std::string_view s, TokenType t) : KeywordString(s, t, t) {} in KeywordString() function 26 constexpr KeywordString(std::string_view s, TokenType t, TokenType k) : str_(s), tokenType_(t), keywordType_(k) {} in KeywordString() function 28 explicit KeywordString(std::string_view &s) : str_(s) {} in KeywordString() function
|
Completed in 2 milliseconds