big-moving.ru/api/soft/Ace/lib/ace/mode/csound_orchestra.js

22 lines
510 B
JavaScript
Raw Normal View History

2022-06-24 15:29:23 +05:00
define(function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextMode = require("./text").Mode;
var CsoundOrchestraHighlightRules = require("./csound_orchestra_highlight_rules").CsoundOrchestraHighlightRules;
var Mode = function() {
this.HighlightRules = CsoundOrchestraHighlightRules;
};
oop.inherits(Mode, TextMode);
(function() {
this.lineCommentStart = ";";
this.blockComment = {start: "/*", end: "*/"};
}).call(Mode.prototype);
exports.Mode = Mode;
});