diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-08-01 13:54:11 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-08-01 13:54:11 -0700 |
commit | 0abfce5899df3ba89582d5c0c374b0c8114f2dec (patch) | |
tree | 443d1a6b14a4a075c0bcab87e4ef362504dc35a1 /pygments/lexers/pypylog.py | |
parent | 9a1f0628aefdc5ffbd67312df1d581089db2128d (diff) | |
download | pygments-0abfce5899df3ba89582d5c0c374b0c8114f2dec.tar.gz |
Added a few more operations which only show up in noopt loops.
Diffstat (limited to 'pygments/lexers/pypylog.py')
-rw-r--r-- | pygments/lexers/pypylog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/pypylog.py b/pygments/lexers/pypylog.py index 0cc32c18..63031fa3 100644 --- a/pygments/lexers/pypylog.py +++ b/pygments/lexers/pypylog.py @@ -55,8 +55,8 @@ class PyPyLogLexer(RegexLexer): r"float_add|float_sub|float_mul|float_truediv|" r"float_eq|float_ne|float_ge|float_gt|float_le|float_lt|" r"ptr_eq|" - r"force_token|" - r"call_may_force|call_assembler|call|" + r"force_token|quasiimmut_field|same_as|" + r"call_may_force|call_assembler|call_pure|call|" r"new_with_vtable|new_array|newstr|newunicode|new|" r"arraylen_gc|" r"getarrayitem_gc_pure|getarrayitem_gc|setarrayitem_gc|" |