Skip to content

Commit

Permalink
add trait keyword to the list of syntax highlighted keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
glaforge committed Jun 2, 2014
1 parent 8f15f0a commit 372fd2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion war/js/tokenizejavascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var tokenizeJavaScript = (function() {
return {
"if": keywordA, "while": keywordA, "with": keywordA, "import": keywordA, "static": keywordA, "assert": keywordA, "throws": keywordA,
"public": keywordA, "private": keywordA, "protected": keywordA, "final": keywordA,
"class": keywordA, "extends": keywordA, "implements": keywordA, "void": keywordA, "super": keywordA, "this": keywordA,
"trait": keywordA, "class": keywordA, "extends": keywordA, "implements": keywordA, "void": keywordA, "super": keywordA, "this": keywordA,
"int": keywordA, "boolean": keywordA, "float": keywordA, "double": keywordA, "long": keywordA, "byte": keywordA, "short": keywordA, "byte": keywordA,
"else": keywordB, "try": keywordB, "finally": keywordB,
"return": keywordC, "break": keywordC, "continue": keywordC, "new": keywordC, "throw": keywordC,
Expand Down

0 comments on commit 372fd2e

Please sign in to comment.