Files
seal/static/js/plugins/codemirror/mode/ruby/test.js
何全 a059c74cb4 v0.1 基础版本
v0.1 基础版本
2019-03-02 12:02:55 +08:00

15 lines
470 B
Python

// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
(function() {
var mode = CodeMirror.getMode({indentUnit: 2}, "ruby");
function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
MT("divide_equal_operator",
"[variable bar] [operator /=] [variable foo]");
MT("divide_equal_operator_no_spacing",
"[variable foo][operator /=][number 42]");
})();