PageRenderTime 80ms CodeModel.GetById 29ms RepoModel.GetById 0ms app.codeStats 0ms

/ajax/libs/codemirror/4.8.0/mode/haskell/haskell.js

https://gitlab.com/Blueprint-Marketing/cdnjs
JavaScript | 267 lines | 251 code | 13 blank | 3 comment | 30 complexity | 2a4d3a16ed5b1c9880d22cb1e3f7334a MD5 | raw file
  1. // CodeMirror, copyright (c) by Marijn Haverbeke and others
  2. // Distributed under an MIT license: http://codemirror.net/LICENSE
  3. (function(mod) {
  4. if (typeof exports == "object" && typeof module == "object") // CommonJS
  5. mod(require("../../lib/codemirror"));
  6. else if (typeof define == "function" && define.amd) // AMD
  7. define(["../../lib/codemirror"], mod);
  8. else // Plain browser env
  9. mod(CodeMirror);
  10. })(function(CodeMirror) {
  11. "use strict";
  12. CodeMirror.defineMode("haskell", function(_config, modeConfig) {
  13. function switchState(source, setState, f) {
  14. setState(f);
  15. return f(source, setState);
  16. }
  17. // These should all be Unicode extended, as per the Haskell 2010 report
  18. var smallRE = /[a-z_]/;
  19. var largeRE = /[A-Z]/;
  20. var digitRE = /\d/;
  21. var hexitRE = /[0-9A-Fa-f]/;
  22. var octitRE = /[0-7]/;
  23. var idRE = /[a-z_A-Z0-9'\xa1-\uffff]/;
  24. var symbolRE = /[-!#$%&*+.\/<=>?@\\^|~:]/;
  25. var specialRE = /[(),;[\]`{}]/;
  26. var whiteCharRE = /[ \t\v\f]/; // newlines are handled in tokenizer
  27. function normal(source, setState) {
  28. if (source.eatWhile(whiteCharRE)) {
  29. return null;
  30. }
  31. var ch = source.next();
  32. if (specialRE.test(ch)) {
  33. if (ch == '{' && source.eat('-')) {
  34. var t = "comment";
  35. if (source.eat('#')) {
  36. t = "meta";
  37. }
  38. return switchState(source, setState, ncomment(t, 1));
  39. }
  40. return null;
  41. }
  42. if (ch == '\'') {
  43. if (source.eat('\\')) {
  44. source.next(); // should handle other escapes here
  45. }
  46. else {
  47. source.next();
  48. }
  49. if (source.eat('\'')) {
  50. return "string";
  51. }
  52. return "error";
  53. }
  54. if (ch == '"') {
  55. return switchState(source, setState, stringLiteral);
  56. }
  57. if (largeRE.test(ch)) {
  58. source.eatWhile(idRE);
  59. if (source.eat('.')) {
  60. return "qualifier";
  61. }
  62. return "variable-2";
  63. }
  64. if (smallRE.test(ch)) {
  65. source.eatWhile(idRE);
  66. return "variable";
  67. }
  68. if (digitRE.test(ch)) {
  69. if (ch == '0') {
  70. if (source.eat(/[xX]/)) {
  71. source.eatWhile(hexitRE); // should require at least 1
  72. return "integer";
  73. }
  74. if (source.eat(/[oO]/)) {
  75. source.eatWhile(octitRE); // should require at least 1
  76. return "number";
  77. }
  78. }
  79. source.eatWhile(digitRE);
  80. var t = "number";
  81. if (source.match(/^\.\d+/)) {
  82. t = "number";
  83. }
  84. if (source.eat(/[eE]/)) {
  85. t = "number";
  86. source.eat(/[-+]/);
  87. source.eatWhile(digitRE); // should require at least 1
  88. }
  89. return t;
  90. }
  91. if (ch == "." && source.eat("."))
  92. return "keyword";
  93. if (symbolRE.test(ch)) {
  94. if (ch == '-' && source.eat(/-/)) {
  95. source.eatWhile(/-/);
  96. if (!source.eat(symbolRE)) {
  97. source.skipToEnd();
  98. return "comment";
  99. }
  100. }
  101. var t = "variable";
  102. if (ch == ':') {
  103. t = "variable-2";
  104. }
  105. source.eatWhile(symbolRE);
  106. return t;
  107. }
  108. return "error";
  109. }
  110. function ncomment(type, nest) {
  111. if (nest == 0) {
  112. return normal;
  113. }
  114. return function(source, setState) {
  115. var currNest = nest;
  116. while (!source.eol()) {
  117. var ch = source.next();
  118. if (ch == '{' && source.eat('-')) {
  119. ++currNest;
  120. }
  121. else if (ch == '-' && source.eat('}')) {
  122. --currNest;
  123. if (currNest == 0) {
  124. setState(normal);
  125. return type;
  126. }
  127. }
  128. }
  129. setState(ncomment(type, currNest));
  130. return type;
  131. };
  132. }
  133. function stringLiteral(source, setState) {
  134. while (!source.eol()) {
  135. var ch = source.next();
  136. if (ch == '"') {
  137. setState(normal);
  138. return "string";
  139. }
  140. if (ch == '\\') {
  141. if (source.eol() || source.eat(whiteCharRE)) {
  142. setState(stringGap);
  143. return "string";
  144. }
  145. if (source.eat('&')) {
  146. }
  147. else {
  148. source.next(); // should handle other escapes here
  149. }
  150. }
  151. }
  152. setState(normal);
  153. return "error";
  154. }
  155. function stringGap(source, setState) {
  156. if (source.eat('\\')) {
  157. return switchState(source, setState, stringLiteral);
  158. }
  159. source.next();
  160. setState(normal);
  161. return "error";
  162. }
  163. var wellKnownWords = (function() {
  164. var wkw = {};
  165. function setType(t) {
  166. return function () {
  167. for (var i = 0; i < arguments.length; i++)
  168. wkw[arguments[i]] = t;
  169. };
  170. }
  171. setType("keyword")(
  172. "case", "class", "data", "default", "deriving", "do", "else", "foreign",
  173. "if", "import", "in", "infix", "infixl", "infixr", "instance", "let",
  174. "module", "newtype", "of", "then", "type", "where", "_");
  175. setType("keyword")(
  176. "\.\.", ":", "::", "=", "\\", "\"", "<-", "->", "@", "~", "=>");
  177. setType("builtin")(
  178. "!!", "$!", "$", "&&", "+", "++", "-", ".", "/", "/=", "<", "<=", "=<<",
  179. "==", ">", ">=", ">>", ">>=", "^", "^^", "||", "*", "**");
  180. setType("builtin")(
  181. "Bool", "Bounded", "Char", "Double", "EQ", "Either", "Enum", "Eq",
  182. "False", "FilePath", "Float", "Floating", "Fractional", "Functor", "GT",
  183. "IO", "IOError", "Int", "Integer", "Integral", "Just", "LT", "Left",
  184. "Maybe", "Monad", "Nothing", "Num", "Ord", "Ordering", "Rational", "Read",
  185. "ReadS", "Real", "RealFloat", "RealFrac", "Right", "Show", "ShowS",
  186. "String", "True");
  187. setType("builtin")(
  188. "abs", "acos", "acosh", "all", "and", "any", "appendFile", "asTypeOf",
  189. "asin", "asinh", "atan", "atan2", "atanh", "break", "catch", "ceiling",
  190. "compare", "concat", "concatMap", "const", "cos", "cosh", "curry",
  191. "cycle", "decodeFloat", "div", "divMod", "drop", "dropWhile", "either",
  192. "elem", "encodeFloat", "enumFrom", "enumFromThen", "enumFromThenTo",
  193. "enumFromTo", "error", "even", "exp", "exponent", "fail", "filter",
  194. "flip", "floatDigits", "floatRadix", "floatRange", "floor", "fmap",
  195. "foldl", "foldl1", "foldr", "foldr1", "fromEnum", "fromInteger",
  196. "fromIntegral", "fromRational", "fst", "gcd", "getChar", "getContents",
  197. "getLine", "head", "id", "init", "interact", "ioError", "isDenormalized",
  198. "isIEEE", "isInfinite", "isNaN", "isNegativeZero", "iterate", "last",
  199. "lcm", "length", "lex", "lines", "log", "logBase", "lookup", "map",
  200. "mapM", "mapM_", "max", "maxBound", "maximum", "maybe", "min", "minBound",
  201. "minimum", "mod", "negate", "not", "notElem", "null", "odd", "or",
  202. "otherwise", "pi", "pred", "print", "product", "properFraction",
  203. "putChar", "putStr", "putStrLn", "quot", "quotRem", "read", "readFile",
  204. "readIO", "readList", "readLn", "readParen", "reads", "readsPrec",
  205. "realToFrac", "recip", "rem", "repeat", "replicate", "return", "reverse",
  206. "round", "scaleFloat", "scanl", "scanl1", "scanr", "scanr1", "seq",
  207. "sequence", "sequence_", "show", "showChar", "showList", "showParen",
  208. "showString", "shows", "showsPrec", "significand", "signum", "sin",
  209. "sinh", "snd", "span", "splitAt", "sqrt", "subtract", "succ", "sum",
  210. "tail", "take", "takeWhile", "tan", "tanh", "toEnum", "toInteger",
  211. "toRational", "truncate", "uncurry", "undefined", "unlines", "until",
  212. "unwords", "unzip", "unzip3", "userError", "words", "writeFile", "zip",
  213. "zip3", "zipWith", "zipWith3");
  214. var override = modeConfig.overrideKeywords;
  215. if (override) for (var word in override) if (override.hasOwnProperty(word))
  216. wkw[word] = override[word];
  217. return wkw;
  218. })();
  219. return {
  220. startState: function () { return { f: normal }; },
  221. copyState: function (s) { return { f: s.f }; },
  222. token: function(stream, state) {
  223. var t = state.f(stream, function(s) { state.f = s; });
  224. var w = stream.current();
  225. return wellKnownWords.hasOwnProperty(w) ? wellKnownWords[w] : t;
  226. },
  227. blockCommentStart: "{-",
  228. blockCommentEnd: "-}",
  229. lineComment: "--"
  230. };
  231. });
  232. CodeMirror.defineMIME("text/x-haskell", "haskell");
  233. });