Browse Source

Move boolean and str to keywords

masad-frost 7 năm trước cách đây
mục cha
commit
6f38c8fe44
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      src/clojure/clojure.ts

+ 3 - 1
src/clojure/clojure.ts

@@ -155,9 +155,11 @@ export const language = <ILanguage>{
         'go',
         'go-loop',
         'thread',
+        'boolean',
+        'str',
     ],
 
-    constants: ['true', 'false', 'nil', 'boolean', 'str'],
+    constants: ['true', 'false', 'nil'],
 
     operators: [
         '=',