Qbject system
Functions | Variables
String lexer state

Special lexer state for string parsing with \t\r\n.. control chars. More...

Collaboration diagram for String lexer state:

Functions

def Q.t_string (t)
 begin <string> state
 
def Q.t_string_string (t)
 end <string> state
 
def Q.t_string_tab (t)
 \tabulation
 
def Q.t_string_cr (t)
 carriage \return
 
def Q.t_string_lf (t)
 line feed \n
 
def Q.t_string_char (t)
 any other char in <string> mode
 

Variables

tuple Q.states = (('string','exclusive'),)
 extra lexer states
 
string Q.t_string_ignore = ''
 ignore in <string> state
 

Detailed Description

Special lexer state for string parsing with \t\r\n.. control chars.