Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit c3d8c20

Browse files
added abstract as a java and C# keyword. This was a regression.
1 parent 346c639 commit c3d8c20

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/prettify.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ window['_pr_isIE6'] = function () {
104104
"mutable namespace nullptr reinterpret_cast static_assert static_cast " +
105105
"template typeid typename typeof using virtual wchar_t where ";
106106
var JAVA_KEYWORDS = COMMON_KEYWORDS +
107-
"boolean byte extends final finally implements import instanceof null " +
108-
"native package strictfp super synchronized throws transient ";
107+
"abstract boolean byte extends final finally implements import " +
108+
"instanceof null native package strictfp super synchronized throws " +
109+
"transient ";
109110
var CSHARP_KEYWORDS = JAVA_KEYWORDS +
110111
"as base by checked decimal delegate descending event " +
111112
"fixed foreach from group implicit in interface internal into is lock " +

0 commit comments

Comments
 (0)