NuriaProject Framework  0.1
The NuriaProject Framework
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Modules
Public Member Functions | Public Attributes | List of all members
Nuria::Template::Location Struct Reference

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
 

Detailed Description

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.

Note
The debug operator of TemplateError also pretty-prints the location.

Member Function Documentation

bool Nuria::Template::Location::operator< ( const Location right) const

Returns true if this instance comes before right.

Member Data Documentation

int Nuria::Template::Location::column

Column

int Nuria::Template::Location::row

Row


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