3 pygments.lexers.int_fiction |
3 pygments.lexers.int_fiction |
4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
5 |
5 |
6 Lexers for interactive fiction languages. |
6 Lexers for interactive fiction languages. |
7 |
7 |
8 :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. |
8 :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS. |
9 :license: BSD, see LICENSE for details. |
9 :license: BSD, see LICENSE for details. |
10 """ |
10 """ |
11 |
11 |
12 import re |
12 import re |
13 |
13 |
283 ], |
283 ], |
284 'locals': [ |
284 'locals': [ |
285 include('_whitespace'), |
285 include('_whitespace'), |
286 (r';', Punctuation, '#pop'), |
286 (r';', Punctuation, '#pop'), |
287 (r'\*', Punctuation), |
287 (r'\*', Punctuation), |
|
288 (r'"', String.Double, 'plain-string'), |
288 (_name, Name.Variable) |
289 (_name, Name.Variable) |
289 ], |
290 ], |
290 # Array |
291 # Array |
291 'many-values': [ |
292 'many-values': [ |
292 include('_whitespace'), |
293 include('_whitespace'), |