Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Static Public Attributes | Static Protected Attributes | List of all members
babel.messages.jslexer.Token Class Reference
Inheritance diagram for babel.messages.jslexer.Token:
Inheritance graph
[legend]
Collaboration diagram for babel.messages.jslexer.Token:
Collaboration graph
[legend]

Static Public Attributes

str type
 
str value
 
int lineno
 

Static Protected Attributes

list _rules
 

Member Data Documentation

◆ _rules

list babel.messages.jslexer.Token._rules
staticprotected
Initial value:
= [
(None, re.compile(r'\s+', re.UNICODE)),
(None, re.compile(r'<!--.*')),
('linecomment', re.compile(r'//.*')),
('multilinecomment', re.compile(r'/\*.*?\*/', re.UNICODE | re.DOTALL)),
('dotted_name', dotted_name_re),
('name', name_re),
('number', re.compile(, re.VERBOSE)),
('jsx_tag', re.compile(r'(?:</?[^>\s]+|/>)', re.I)), # May be mangled in `get_rules`
('operator', re.compile(r'(%s)' % '|'.join(map(re.escape, operators)))),
('template_string', re.compile(, re.UNICODE)),
('string', re.compile(, re.VERBOSE | re.DOTALL)),
]

The documentation for this class was generated from the following file: