|
webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Classes | |
| class | CodeNode |
| class | Cursor |
| class | ElseNode |
| class | Env |
| class | ExpNode |
| class | ForNode |
| class | IfNode |
| class | LiteralDollarNode |
| class | Output |
| class | RangeNode |
| class | RawCodeNode |
| class | Token |
| class | VarNode |
Functions | |
| def | Eof () |
| def | StartsWith (lines, pos, string) |
| def | FindFirstInLine (line, token_table) |
| def | FindFirst (lines, token_table, cursor) |
| def | SubString (lines, start, end) |
| def | MakeToken (lines, start, end, token_type) |
| def | ParseToken (lines, pos, regex, token_type) |
| def | Skip (lines, pos, regex) |
| def | SkipUntil (lines, pos, regex, token_type) |
| def | ParseExpTokenInParens (lines, pos) |
| def | RStripNewLineFromToken (token) |
| def | TokenizeLines (lines, pos) |
| def | Tokenize (s) |
| def | PopFront (a_list) |
| def | PushFront (a_list, elem) |
| def | PopToken (a_list, token_type=None) |
| def | PeekToken (a_list) |
| def | ParseExpNode (token) |
| def | ParseElseNode (tokens) |
| def | ParseAtomicCodeNode (tokens) |
| def | ParseCodeNode (tokens) |
| def | Convert (file_path) |
| def | RunAtomicCode (env, node, output) |
| def | RunCode (env, code_node, output) |
| def | IsComment (cur_line) |
| def | IsInPreprocessorDirevative (prev_lines, cur_line) |
| def | WrapComment (line, output) |
| def | WrapCode (line, line_concat, output) |
| def | WrapPreprocessorDirevative (line, output) |
| def | WrapPlainCode (line, output) |
| def | IsHeaderGuardOrInclude (line) |
| def | WrapLongLine (line, output) |
| def | BeautifyCode (string) |
| def | main (argv) |
Variables | |
| list | TOKEN_TABLE |
| ID_REGEX = re.compile(r'[_A-Za-z]\w*') | |
| EQ_REGEX = re.compile(r'=') | |
| REST_OF_LINE_REGEX = re.compile(r'.*?(?=$|\$\$)') | |
| OPTIONAL_WHITE_SPACES_REGEX = re.compile(r'\s*') | |
| WHITE_SPACE_REGEX = re.compile(r'\s') | |
| DOT_DOT_REGEX = re.compile(r'\.\.') | |
| def pump.BeautifyCode | ( | string | ) |
| def pump.Convert | ( | file_path | ) |
| def pump.Eof | ( | ) |
Returns the special cursor to denote the end-of-file.
| def pump.FindFirst | ( | lines, | |
| token_table, | |||
| cursor | |||
| ) |
Finds the first occurrence of any string in strings in lines.
| def pump.FindFirstInLine | ( | line, | |
| token_table | |||
| ) |
| def pump.IsComment | ( | cur_line | ) |
| def pump.IsHeaderGuardOrInclude | ( | line | ) |
| def pump.IsInPreprocessorDirevative | ( | prev_lines, | |
| cur_line | |||
| ) |
| def pump.main | ( | argv | ) |
| def pump.MakeToken | ( | lines, | |
| start, | |||
| end, | |||
| token_type | |||
| ) |
Creates a new instance of Token.
| def pump.ParseAtomicCodeNode | ( | tokens | ) |
| def pump.ParseCodeNode | ( | tokens | ) |
| def pump.ParseElseNode | ( | tokens | ) |
| def pump.ParseExpNode | ( | token | ) |
| def pump.ParseExpTokenInParens | ( | lines, | |
| pos | |||
| ) |
| def pump.ParseToken | ( | lines, | |
| pos, | |||
| regex, | |||
| token_type | |||
| ) |
| def pump.PeekToken | ( | a_list | ) |
| def pump.PopFront | ( | a_list | ) |
| def pump.PopToken | ( | a_list, | |
token_type = None |
|||
| ) |
| def pump.PushFront | ( | a_list, | |
| elem | |||
| ) |
| def pump.RStripNewLineFromToken | ( | token | ) |
| def pump.RunAtomicCode | ( | env, | |
| node, | |||
| output | |||
| ) |
| def pump.RunCode | ( | env, | |
| code_node, | |||
| output | |||
| ) |
| def pump.Skip | ( | lines, | |
| pos, | |||
| regex | |||
| ) |
| def pump.SkipUntil | ( | lines, | |
| pos, | |||
| regex, | |||
| token_type | |||
| ) |
| def pump.StartsWith | ( | lines, | |
| pos, | |||
| string | |||
| ) |
Returns True iff the given position in lines starts with 'string'.
| def pump.SubString | ( | lines, | |
| start, | |||
| end | |||
| ) |
Returns a substring in lines.
| def pump.Tokenize | ( | s | ) |
| def pump.TokenizeLines | ( | lines, | |
| pos | |||
| ) |
| def pump.WrapCode | ( | line, | |
| line_concat, | |||
| output | |||
| ) |
| def pump.WrapComment | ( | line, | |
| output | |||
| ) |
| def pump.WrapLongLine | ( | line, | |
| output | |||
| ) |
| def pump.WrapPlainCode | ( | line, | |
| output | |||
| ) |
| def pump.WrapPreprocessorDirevative | ( | line, | |
| output | |||
| ) |
| pump.DOT_DOT_REGEX = re.compile(r'\.\.') |
| pump.EQ_REGEX = re.compile(r'=') |
| pump.REST_OF_LINE_REGEX = re.compile(r'.*?(?=$|\$\$)') |
| list pump.TOKEN_TABLE |
1.8.13