Inja  3.4.0
A Template Engine for Modern C++
Public Types | Public Member Functions | Public Attributes | List of all members
inja::Token Struct Reference

Helper-class for the inja Lexer. More...

#include <token.hpp>

Public Types

enum class  Kind {
  Text , ExpressionOpen , ExpressionClose , LineStatementOpen ,
  LineStatementClose , StatementOpen , StatementClose , CommentOpen ,
  CommentClose , Id , Number , String ,
  Plus , Minus , Times , Slash ,
  Percent , Power , Comma , Dot ,
  Colon , LeftParen , RightParen , LeftBracket ,
  RightBracket , LeftBrace , RightBrace , Equal ,
  NotEqual , GreaterThan , GreaterEqual , LessThan ,
  LessEqual , Unknown , Eof
}
 

Public Member Functions

constexpr Token (Kind kind, std::string_view text)
 
std::string describe () const
 

Public Attributes

Kind kind {Kind::Unknown}
 
std::string_view text
 

Detailed Description

Helper-class for the inja Lexer.


The documentation for this struct was generated from the following file: