LL1Checker 3.0
“Tool for verifying LL(1) grammars and validating input strings.”
All Classes Functions Variables
Lex::ParseInput< Lexer > Struct Template Reference

Lexer functor for defining tokenization rules using Boost Spirit Lex. More...

#include <lexer.hpp>

Inheritance diagram for Lex::ParseInput< Lexer >:

Detailed Description

template<typename Lexer>
struct Lex::ParseInput< Lexer >

Lexer functor for defining tokenization rules using Boost Spirit Lex.

This struct is a functor that defines the tokenization rules for the lexer. It inherits from boost::spirit::lex::lexer<Lexer> and is used to configure the lexer with regular expressions and corresponding token IDs. The rules are added to the lexer during construction.

Template Parameters
LexerThe type of lexer to be used (e.g., boost::spirit::lex::lexertl::lexer<>).

The constructor performs the following steps:

  1. Iterates over the token types defined in symbol_table::token_types_r_.
  2. Adds regular expressions and their corresponding token IDs to the lexer.
  3. Skips whitespace characters (spaces, tabs, and newlines) by assigning them a specific token ID.
See also
symbol_table::token_types_r_
symbol_table::st_

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