Methods
|
|
|
|
__init__
|
__init__ ( self )
|
|
t_caret
|
t_caret ( self, input )
\^
|
|
t_close_paren
|
t_close_paren ( self, input )
\)
|
|
t_colon
|
t_colon ( self, input )
:(?!:)
|
|
t_comma
|
t_comma ( self, input )
\,
|
|
t_dot
|
t_dot ( self, input )
\.(?!\.)
|
|
t_double_colon
|
t_double_colon ( self, input )
::
|
|
t_double_dot
|
t_double_dot ( self, input )
\.\.
|
|
t_greater_than
|
t_greater_than ( self, input )
>
|
|
t_integer
|
t_integer ( self, input )
-?[0-9]+
|
|
t_less_than
|
t_less_than ( self, input )
<
|
|
t_open_paren
|
t_open_paren ( self, input )
\(
|
|
t_symbol
|
t_symbol ( self, input )
[A-Za-z0-9_'-][A-Za-z0-9_'.-]*
|
|
t_unsigned_integer
|
t_unsigned_integer ( self, input )
[0-9]+
|
|
tokenize
|
tokenize ( self, input )
|