diff options
-rw-r--r-- | pygments/lexers/agile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pygments/lexers/agile.py b/pygments/lexers/agile.py index ad17e5d9..31a00747 100644 --- a/pygments/lexers/agile.py +++ b/pygments/lexers/agile.py @@ -1115,9 +1115,9 @@ class MiniDLexer(RegexLexer): (r'/(\\\n)?[*](.|\n)*?[*](\\\n)?/', Comment), (r'/\+', Comment, 'nestedcomment'), # Keywords - (r'(as|assert|break|case|catch|continue|coroutine|default' + (r'(as|assert|break|case|catch|class|continue|coroutine|default' r'|do|else|finally|for|foreach|function|global|namespace' - r'|if|import|in|is|local|module|object|return|super|switch' + r'|if|import|in|is|local|module|return|super|switch' r'|this|throw|try|vararg|while|with|yield)\b', Keyword), (r'(false|true|null)\b', Keyword.Constant), # FloatLiteral |