60 (r'/\*(.|\n)*?\*/', Comment.Multiline), |
60 (r'/\*(.|\n)*?\*/', Comment.Multiline), |
61 (r'\b(%s)\b' % '|'.join(keywords), Keyword), |
61 (r'\b(%s)\b' % '|'.join(keywords), Keyword), |
62 (r'\b(%s)\b' % '|'.join(types), Keyword.Type), |
62 (r'\b(%s)\b' % '|'.join(types), Keyword.Type), |
63 (r'\b(%s)\b' % '|'.join(values), Keyword.Constant), |
63 (r'\b(%s)\b' % '|'.join(values), Keyword.Constant), |
64 (r'\b(%s)\b' % '|'.join(modifiers), Keyword.Declaration), |
64 (r'\b(%s)\b' % '|'.join(modifiers), Keyword.Declaration), |
65 (r'"(\\\\|\\"|[^"])*"', String), |
65 (r'"(\\\\|\\[^\\]|[^"\\])*"', String), |
66 (r"'\\.'|'[^\\]'|'\\u[0-9a-fA-F]{4}'", String.Char), |
66 (r"'\\.'|'[^\\]'|'\\u[0-9a-fA-F]{4}'", String.Char), |
67 (r'.', Text) |
67 (r'.', Text) |
68 ], |
68 ], |
69 } |
69 } |