TextMateLib 1.0
Modern C++ implementation of the TextMate syntax highlighting engine
Loading...
Searching...
No Matches
main.cpp
1#include "main.h"
2
3namespace tml {
4
5// Initialize INITIAL constant
6const StateStack* INITIAL = nullptr; // Will be initialized to StateStackImpl::NULL_STATE
7
8} // namespace tml
Abstract interface representing the parsing state at the end of a line.
Definition types.h:55
const StateStack * INITIAL
Initial parsing state for the first line of a document.
Definition main.cpp:6