NuriaProject Framework
0.1
The NuriaProject Framework
|
Storage for a location in Twig code. More...
#include <templateerror.hpp>
Public Member Functions | |
constexpr | Location (int row=0, int column=0) |
bool | operator< (const Location &right) const |
Public Attributes | |
int | column |
int | row |
Storage for a location in Twig code.
This plain structure is used while all stages of the TemplateEngine to store positions of code in the Twig code.
The structure is flat, meaning you directly access the fields. This was chosen due to the runtime overhead of shared structures to avoid performance issues while tokenizing and parsing the Twig code.
Both the row and column begin counting from zero.
bool Nuria::Template::Location::operator< | ( | const Location & | right | ) | const |
Returns true
if this instance comes before right.
int Nuria::Template::Location::column |
Column
int Nuria::Template::Location::row |
Row