Home | History | Annotate | Download | only in tutorial

Lines Matching full:lexer

2 Kaleidoscope: Tutorial Introduction and the Lexer
39 language, and the definition of its Lexer - This shows where we are
42 to implement everything in C++ instead of using lexer and parser
46 With the lexer in place, we can talk about parsing techniques and
86 language including a hand-written lexer, parser, AST, as well as code
146 The Lexer
152 "`lexer <http://en.wikipedia.org/wiki/Lexical_analysis>`_" (aka
154 the lexer includes a token code and potentially some metadata (e.g. the
159 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
174 Each token returned by our lexer will either be one of the Token enum
182 The actual implementation of the lexer is a single function named
270 With this, we have the complete lexer for the basic Kaleidoscope
271 language (the `full code listing <LangImpl2.html#code>`_ for the Lexer
275 driver so that you can use the lexer and parser together.