///////////////////////////////////////////////////////////////////////////
| 45 | |
| 46 | //////////////////////////////////////////////////////////////////////////////// |
| 47 | Lexer::Lexer(const std::string& text) : _text(text), _cursor(0), _eos(text.size()) {} |
| 48 | |
| 49 | //////////////////////////////////////////////////////////////////////////////// |
| 50 | // When a Lexer object is constructed with a string, this method walks through |
nothing calls this directly
no outgoing calls
no test coverage detected