| 167 | | (r'\be(ncoding|xport)(?=[(])', Keyword, 'root'), |
| 168 | | (r'\bin(fo|itialization)(?=[(])', Keyword, 'root'), |
| 169 | | (r'\b(dynamic|synchronized|threaded)[.]', Keyword, 'root'), |
| 170 | | (r'\b(alias|d(ynamic|iscontiguous)|m(eta_predicate|ode|ultifile)|synchronized)(?=[(])', Keyword, 'root'), |
| 171 | | (r'\bop(?=[(])', Keyword, 'root'), |
| 172 | | (r'\b(calls|use(s|_module))(?=[(])', Keyword, 'root'), |
| | 167 | (r'e(ncoding|xport)(?=[(])', Keyword, 'root'), |
| | 168 | (r'in(fo|itialization)(?=[(])', Keyword, 'root'), |
| | 169 | (r'(dynamic|synchronized|threaded)[.]', Keyword, 'root'), |
| | 170 | (r'(alias|d(ynamic|iscontiguous)|m(eta_predicate|ode|ultifile)|synchronized)(?=[(])', Keyword, 'root'), |
| | 171 | (r'op(?=[(])', Keyword, 'root'), |
| | 172 | (r'(calls|use(s|_module))(?=[(])', Keyword, 'root'), |
| | 173 | (r'[a-z][a-zA-Z0-9_]*(?=[(])', Text, 'root'), |
| | 174 | (r'[a-z][a-zA-Z0-9_]*[.]', Text, 'root'), |