Files @ b4d77d1c710c
Branch filter:

Location: kallithea/kallithea/public/codemirror/mode/javascript/test.js

Mads Kiilerich
codemirror: move everything to separate codemirror folder - splitting it up in css and js serves no purpose

- but it should perhaps not show up directly in /codemirror ...
(function() {
  var mode = CodeMirror.getMode({indentUnit: 2}, "javascript");
  function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }

  MT("locals",
     "[keyword function] [variable foo]([def a], [def b]) { [keyword var] [def c] = [number 10]; [keyword return] [variable-2 a] + [variable-2 c] + [variable d]; }");

  MT("comma-and-binop",
     "[keyword function](){ [keyword var] [def x] = [number 1] + [number 2], [def y]; }");
})();