Parcourir la source

Removed 'is' and 'use' from keywords list.

I cannot find a single source that specifies these as keywords.
Luca Deltodesco il y a 12 ans
Parent
commit
5236b56af1
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      genjs.ml

+ 2 - 2
genjs.ml

@@ -77,9 +77,9 @@ let kwds =
 		"abstract"; "as"; "boolean"; "break"; "byte"; "case"; "catch"; "char"; "class"; "continue"; "const";
 		"debugger"; "default"; "delete"; "do"; "double"; "else"; "enum"; "export"; "extends"; "false"; "final";
 		"finally"; "float"; "for"; "function"; "goto"; "if"; "implements"; "import"; "in"; "instanceof"; "int";
-		"interface"; "is"; "long"; "namespace"; "native"; "new"; "null"; "package"; "private"; "protected";
+		"interface"; "long"; "namespace"; "native"; "new"; "null"; "package"; "private"; "protected";
 		"public"; "return"; "short"; "static"; "super"; "switch"; "synchronized"; "this"; "throw"; "throws";
-		"transient"; "true"; "try"; "typeof"; "use"; "var"; "void"; "volatile"; "while"; "with"
+		"transient"; "true"; "try"; "typeof"; "var"; "void"; "volatile"; "while"; "with"
 	];
 	h