PageRenderTime 67ms CodeModel.GetById 30ms RepoModel.GetById 0ms app.codeStats 0ms

/app/assets/javascripts/vendor/code-mirror/mode/clojure.js

https://github.com/taste-o-code/taste-o-code-web
JavaScript | 207 lines | 167 code | 25 blank | 15 comment | 24 complexity | 8f9ffaffdbc0de3f8c138747bf786612 MD5 | raw file
  1. /**
  2. * Author: Hans Engel
  3. * Branched from CodeMirror's Scheme mode (by Koh Zi Han, based on implementation by Koh Zi Chun)
  4. */
  5. CodeMirror.defineMode("clojure", function (config, mode) {
  6. var BUILTIN = "builtin", COMMENT = "comment", STRING = "string", TAG = "tag",
  7. ATOM = "atom", NUMBER = "number", BRACKET = "bracket", KEYWORD="keyword";
  8. var INDENT_WORD_SKIP = 2, KEYWORDS_SKIP = 1;
  9. function makeKeywords(str) {
  10. var obj = {}, words = str.split(" ");
  11. for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  12. return obj;
  13. }
  14. var atoms = makeKeywords("true false nil");
  15. var keywords = makeKeywords(
  16. // Control structures
  17. "defn defn- def def- defonce defmulti defmethod defmacro defstruct deftype defprotocol defrecord deftest slice defalias defhinted defmacro- defn-memo defnk defnk defonce- defunbound defunbound- defvar defvar- let letfn do case cond condp for loop recur when when-not when-let when-first if if-let if-not . .. -> ->> doto and or dosync doseq dotimes dorun doall load import unimport ns in-ns refer try catch finally throw with-open with-local-vars binding gen-class gen-and-load-class gen-and-save-class handler-case handle" +
  18. // Built-ins
  19. "* *1 *2 *3 *agent* *allow-unresolved-vars* *assert *clojure-version* *command-line-args* *compile-files* *compile-path* *e *err* *file* *flush-on-newline* *in* *macro-meta* *math-context* *ns* *out* *print-dup* *print-length* *print-level* *print-meta* *print-readably* *read-eval* *source-path* *use-context-classloader* *warn-on-reflection* + - / < <= = == > >= accessor aclone agent agent-errors aget alength alias all-ns alter alter-meta! alter-var-root amap ancestors and apply areduce array-map aset aset-boolean aset-byte aset-char aset-double aset-float aset-int aset-long aset-short assert assoc assoc! assoc-in associative? atom await await-for await1 bases bean bigdec bigint binding bit-and bit-and-not bit-clear bit-flip bit-not bit-or bit-set bit-shift-left bit-shift-right bit-test bit-xor boolean boolean-array booleans bound-fn bound-fn* butlast byte byte-array bytes case cast char char-array char-escape-string char-name-string char? chars chunk chunk-append chunk-buffer chunk-cons chunk-first chunk-next chunk-rest chunked-seq? class class? clear-agent-errors clojure-version coll? comment commute comp comparator compare compare-and-set! compile complement concat cond condp conj conj! cons constantly construct-proxy contains? count counted? create-ns create-struct cycle dec decimal? declare definline defmacro defmethod defmulti defn defn- defonce defstruct delay delay? deliver deref derive descendants destructure disj disj! dissoc dissoc! distinct distinct? doall doc dorun doseq dosync dotimes doto double double-array doubles drop drop-last drop-while empty empty? ensure enumeration-seq eval even? every? extend extend-protocol extend-type extends? extenders false? ffirst file-seq filter find find-doc find-ns find-var first float float-array float? floats flush fn fn? fnext for force format future future-call future-cancel future-cancelled? future-done? future? gen-class gen-interface gensym get get-in get-method get-proxy-class get-thread-bindings get-validator hash hash-map hash-set identical? identity if-let if-not ifn? import in-ns inc init-proxy instance? int int-array integer? interleave intern interpose into into-array ints io! isa? iterate iterator-seq juxt key keys keyword keyword? last lazy-cat lazy-seq let letfn line-seq list list* list? load load-file load-reader load-string loaded-libs locking long long-array longs loop macroexpand macroexpand-1 make-array make-hierarchy map map? mapcat max max-key memfn memoize merge merge-with meta method-sig methods min min-key mod name namespace neg? newline next nfirst nil? nnext not not-any? not-empty not-every? not= ns ns-aliases ns-imports ns-interns ns-map ns-name ns-publics ns-refers ns-resolve ns-unalias ns-unmap nth nthnext num number? odd? or parents partial partition pcalls peek persistent! pmap pop pop! pop-thread-bindings pos? pr pr-str prefer-method prefers primitives-classnames print print-ctor print-doc print-dup print-method print-namespace-doc print-simple print-special-doc print-str printf println println-str prn prn-str promise proxy proxy-call-with-super proxy-mappings proxy-name proxy-super push-thread-bindings pvalues quot rand rand-int range ratio? rational? rationalize re-find re-groups re-matcher re-matches re-pattern re-seq read read-line read-string reify reduce ref ref-history-count ref-max-history ref-min-history ref-set refer refer-clojure release-pending-sends rem remove remove-method remove-ns repeat repeatedly replace replicate require reset! reset-meta! resolve rest resultset-seq reverse reversible? rseq rsubseq satisfies? second select-keys send send-off seq seq? seque sequence sequential? set set-validator! set? short short-array shorts shutdown-agents slurp some sort sort-by sorted-map sorted-map-by sorted-set sorted-set-by sorted? special-form-anchor special-symbol? split-at split-with str stream? string? struct struct-map subs subseq subvec supers swap! symbol symbol? sync syntax-symbol-anchor take take-last take-nth take-while test the-ns time to-array to-array-2d trampoline transient tree-seq true? type unchecked-add unchecked-dec unchecked-divide unchecked-inc unchecked-multiply unchecked-negate unchecked-remainder unchecked-subtract underive unquote unquote-splicing update-in update-proxy use val vals var-get var-set var? vary-meta vec vector vector? when when-first when-let when-not while with-bindings with-bindings* with-in-str with-loading-context with-local-vars with-meta with-open with-out-str with-precision xml-seq");
  20. var indentKeys = makeKeywords(
  21. // Built-ins
  22. "ns fn def defn defmethod bound-fn if if-not case condp when while when-not when-first do future comment doto locking proxy with-open with-precision reify deftype defrecord defprotocol extend extend-protocol extend-type try catch" +
  23. // Binding forms
  24. "let letfn binding loop for doseq dotimes when-let if-let" +
  25. // Data structures
  26. "defstruct struct-map assoc" +
  27. // clojure.test
  28. "testing deftest" +
  29. // contrib
  30. "handler-case handle dotrace deftrace");
  31. var tests = {
  32. digit: /\d/,
  33. digit_or_colon: /[\d:]/,
  34. hex: /[0-9a-fA-F]/,
  35. sign: /[+-]/,
  36. exponent: /[eE]/,
  37. keyword_char: /[^\s\(\[\;\)\]]/,
  38. basic: /[\w\$_\-]/,
  39. lang_keyword: /[\w*+!\-_?:\/]/
  40. };
  41. function stateStack(indent, type, prev) { // represents a state stack object
  42. this.indent = indent;
  43. this.type = type;
  44. this.prev = prev;
  45. }
  46. function pushStack(state, indent, type) {
  47. state.indentStack = new stateStack(indent, type, state.indentStack);
  48. }
  49. function popStack(state) {
  50. state.indentStack = state.indentStack.prev;
  51. }
  52. function isNumber(ch, stream){
  53. // hex
  54. if ( ch === '0' && 'x' == stream.peek().toLowerCase() ) {
  55. stream.eat('x');
  56. stream.eatWhile(tests.hex);
  57. return true;
  58. }
  59. // leading sign
  60. if ( ch == '+' || ch == '-' ) {
  61. stream.eat(tests.sign);
  62. ch = stream.next();
  63. }
  64. if ( tests.digit.test(ch) ) {
  65. stream.eat(ch);
  66. stream.eatWhile(tests.digit);
  67. if ( '.' == stream.peek() ) {
  68. stream.eat('.');
  69. stream.eatWhile(tests.digit);
  70. }
  71. if ( 'e' == stream.peek().toLowerCase() ) {
  72. stream.eat(tests.exponent);
  73. stream.eat(tests.sign);
  74. stream.eatWhile(tests.digit);
  75. }
  76. return true;
  77. }
  78. return false;
  79. }
  80. return {
  81. startState: function () {
  82. return {
  83. indentStack: null,
  84. indentation: 0,
  85. mode: false,
  86. };
  87. },
  88. token: function (stream, state) {
  89. if (state.indentStack == null && stream.sol()) {
  90. // update indentation, but only if indentStack is empty
  91. state.indentation = stream.indentation();
  92. }
  93. // skip spaces
  94. if (stream.eatSpace()) {
  95. return null;
  96. }
  97. var returnType = null;
  98. switch(state.mode){
  99. case "string": // multi-line string parsing mode
  100. var next, escaped = false;
  101. while ((next = stream.next()) != null) {
  102. if (next == "\"" && !escaped) {
  103. state.mode = false;
  104. break;
  105. }
  106. escaped = !escaped && next == "\\";
  107. }
  108. returnType = STRING; // continue on in string mode
  109. break;
  110. default: // default parsing mode
  111. var ch = stream.next();
  112. if (ch == "\"") {
  113. state.mode = "string";
  114. returnType = STRING;
  115. } else if (ch == "'" && !( tests.digit_or_colon.test(stream.peek()) )) {
  116. returnType = ATOM;
  117. } else if (ch == ";") { // comment
  118. stream.skipToEnd(); // rest of the line is a comment
  119. returnType = COMMENT;
  120. } else if (isNumber(ch,stream)){
  121. returnType = NUMBER;
  122. } else if (ch == "(" || ch == "[") {
  123. var keyWord = ''; var indentTemp = stream.column();
  124. /**
  125. Either
  126. (indent-word ..
  127. (non-indent-word ..
  128. (;something else, bracket, etc.
  129. */
  130. while ((letter = stream.eat(tests.keyword_char)) != null) {
  131. keyWord += letter;
  132. }
  133. if (keyWord.length > 0 && indentKeys.propertyIsEnumerable(keyWord)) { // indent-word
  134. pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);
  135. } else { // non-indent word
  136. // we continue eating the spaces
  137. stream.eatSpace();
  138. if (stream.eol() || stream.peek() == ";") {
  139. // nothing significant after
  140. // we restart indentation 1 space after
  141. pushStack(state, indentTemp + 1, ch);
  142. } else {
  143. pushStack(state, indentTemp + stream.current().length, ch); // else we match
  144. }
  145. }
  146. stream.backUp(stream.current().length - 1); // undo all the eating
  147. returnType = BRACKET;
  148. } else if (ch == ")" || ch == "]") {
  149. returnType = BRACKET;
  150. if (state.indentStack != null && state.indentStack.type == (ch == ")" ? "(" : "[")) {
  151. popStack(state);
  152. }
  153. } else if ( ch == ":" ) {
  154. stream.eatWhile(tests.lang_keyword);
  155. return TAG;
  156. } else {
  157. stream.eatWhile(tests.basic);
  158. if (keywords && keywords.propertyIsEnumerable(stream.current())) {
  159. returnType = BUILTIN;
  160. } else if ( atoms && atoms.propertyIsEnumerable(stream.current()) ) {
  161. returnType = ATOM;
  162. } else returnType = null;
  163. }
  164. }
  165. return returnType;
  166. },
  167. indent: function (state, textAfter) {
  168. if (state.indentStack == null) return state.indentation;
  169. return state.indentStack.indent;
  170. }
  171. };
  172. });
  173. CodeMirror.defineMIME("text/x-clojure", "clojure");