{"version":3,"file":"mode-csound_score-cf2fd996.js","sources":["../../node_modules/ace-builds/src-noconflict/mode-csound_score.js"],"sourcesContent":["ace.define(\"ace/mode/csound_preprocessor_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text_highlight_rules\"], function(require, exports, module){\"use strict\";\nvar oop = require(\"../lib/oop\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar CsoundPreprocessorHighlightRules = function (embeddedRulePrefix) {\n    this.embeddedRulePrefix = embeddedRulePrefix === undefined ? \"\" : embeddedRulePrefix;\n    this.semicolonComments = {\n        token: \"comment.line.semicolon.csound\",\n        regex: \";.*$\"\n    };\n    this.comments = [\n        {\n            token: \"punctuation.definition.comment.begin.csound\",\n            regex: \"/\\\\*\",\n            push: [\n                {\n                    token: \"punctuation.definition.comment.end.csound\",\n                    regex: \"\\\\*/\",\n                    next: \"pop\"\n                }, {\n                    defaultToken: \"comment.block.csound\"\n                }\n            ]\n        }, {\n            token: \"comment.line.double-slash.csound\",\n            regex: \"//.*$\"\n        },\n        this.semicolonComments\n    ];\n    this.macroUses = [\n        {\n            token: [\"entity.name.function.preprocessor.csound\", \"punctuation.definition.macro-parameter-value-list.begin.csound\"],\n            regex: /(\\$[A-Z_a-z]\\w*\\.?)(\\()/,\n            next: \"macro parameter value list\"\n        }, {\n            token: \"entity.name.function.preprocessor.csound\",\n            regex: /\\$[A-Z_a-z]\\w*(?:\\.|\\b)/\n        }\n    ];\n    this.numbers = [\n        {\n            token: \"constant.numeric.float.csound\",\n            regex: /(?:\\d+[Ee][+-]?\\d+)|(?:\\d+\\.\\d*|\\d*\\.\\d+)(?:[Ee][+-]?\\d+)?/\n        }, {\n            token: [\"storage.type.number.csound\", \"constant.numeric.integer.hexadecimal.csound\"],\n            regex: /(0[Xx])([0-9A-Fa-f]+)/\n        }, {\n            token: \"constant.numeric.integer.decimal.csound\",\n            regex: /\\d+/\n        }\n    ];\n    this.bracedStringContents = [\n        {\n            token: \"constant.character.escape.csound\",\n            regex: /\\\\(?:[\\\\abnrt\"]|[0-7]{1,3})/\n        },\n        {\n            token: \"constant.character.placeholder.csound\",\n            regex: /%[#0\\- +]*\\d*(?:\\.\\d+)?[diuoxXfFeEgGaAcs]/\n        }, {\n            token: \"constant.character.escape.csound\",\n            regex: /%%/\n        }\n    ];\n    this.quotedStringContents = [\n        this.macroUses,\n        this.bracedStringContents\n    ];\n    var start = [\n        this.comments,\n        {\n            token: \"keyword.preprocessor.csound\",\n            regex: /#(?:e(?:nd(?:if)?|lse)\\b|##)|@@?[ \\t]*\\d+/\n        }, {\n            token: \"keyword.preprocessor.csound\",\n            regex: /#include/,\n            push: [\n                this.comments,\n                {\n                    token: \"string.csound\",\n                    regex: /([^ \\t])(?:.*?\\1)/,\n                    next: \"pop\"\n                }\n            ]\n        }, {\n            token: \"keyword.preprocessor.csound\",\n            regex: /#includestr/,\n            push: [\n                this.comments,\n                {\n                    token: \"string.csound\",\n                    regex: /([^ \\t])(?:.*?\\1)/,\n                    next: \"pop\"\n                }\n            ]\n        }, {\n            token: \"keyword.preprocessor.csound\",\n            regex: /#[ \\t]*define/,\n            next: \"define directive\"\n        }, {\n            token: \"keyword.preprocessor.csound\",\n            regex: /#(?:ifn?def|undef)\\b/,\n            next: \"macro directive\"\n        },\n        this.macroUses\n    ];\n    this.$rules = {\n        \"start\": start,\n        \"define directive\": [\n            this.comments,\n            {\n                token: \"entity.name.function.preprocessor.csound\",\n                regex: /[A-Z_a-z]\\w*/\n            }, {\n                token: \"punctuation.definition.macro-parameter-name-list.begin.csound\",\n                regex: /\\(/,\n                next: \"macro parameter name list\"\n            }, {\n                token: \"punctuation.definition.macro.begin.csound\",\n                regex: /#/,\n                next: \"macro body\"\n            }\n        ],\n        \"macro parameter name list\": [\n            {\n                token: \"variable.parameter.preprocessor.csound\",\n                regex: /[A-Z_a-z]\\w*/\n            }, {\n                token: \"punctuation.definition.macro-parameter-name-list.end.csound\",\n                regex: /\\)/,\n                next: \"define directive\"\n            }\n        ],\n        \"macro body\": [\n            {\n                token: \"constant.character.escape.csound\",\n                regex: /\\\\#/\n            }, {\n                token: \"punctuation.definition.macro.end.csound\",\n                regex: /#/,\n                next: \"start\"\n            },\n            start\n        ],\n        \"macro directive\": [\n            this.comments,\n            {\n                token: \"entity.name.function.preprocessor.csound\",\n                regex: /[A-Z_a-z]\\w*/,\n                next: \"start\"\n            }\n        ],\n        \"macro parameter value list\": [\n            {\n                token: \"punctuation.definition.macro-parameter-value-list.end.csound\",\n                regex: /\\)/,\n                next: \"start\"\n            }, {\n                token: \"punctuation.definition.string.begin.csound\",\n                regex: /\"/,\n                next: \"macro parameter value quoted string\"\n            }, this.pushRule({\n                token: \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n                regex: /\\(/,\n                next: \"macro parameter value parenthetical\"\n            }), {\n                token: \"punctuation.macro-parameter-value-separator.csound\",\n                regex: \"[#']\"\n            }\n        ],\n        \"macro parameter value quoted string\": [\n            {\n                token: \"constant.character.escape.csound\",\n                regex: /\\\\[#'()]/\n            }, {\n                token: \"invalid.illegal.csound\",\n                regex: /[#'()]/\n            }, {\n                token: \"punctuation.definition.string.end.csound\",\n                regex: /\"/,\n                next: \"macro parameter value list\"\n            },\n            this.quotedStringContents,\n            {\n                defaultToken: \"string.quoted.csound\"\n            }\n        ],\n        \"macro parameter value parenthetical\": [\n            {\n                token: \"constant.character.escape.csound\",\n                regex: /\\\\\\)/\n            }, this.popRule({\n                token: \"punctuation.macro-parameter-value-parenthetical.end.csound\",\n                regex: /\\)/\n            }), this.pushRule({\n                token: \"punctuation.macro-parameter-value-parenthetical.begin.csound\",\n                regex: /\\(/,\n                next: \"macro parameter value parenthetical\"\n            }),\n            start\n        ]\n    };\n};\noop.inherits(CsoundPreprocessorHighlightRules, TextHighlightRules);\n(function () {\n    this.pushRule = function (params) {\n        if (Array.isArray(params.next)) {\n            for (var i = 0; i < params.next.length; i++) {\n                params.next[i] = this.embeddedRulePrefix + params.next[i];\n            }\n        }\n        return {\n            regex: params.regex, onMatch: function (value, currentState, stack, line) {\n                if (stack.length === 0)\n                    stack.push(currentState);\n                if (Array.isArray(params.next)) {\n                    for (var i = 0; i < params.next.length; i++) {\n                        stack.push(params.next[i]);\n                    }\n                }\n                else {\n                    stack.push(params.next);\n                }\n                this.next = stack[stack.length - 1];\n                return params.token;\n            },\n            get next() { return Array.isArray(params.next) ? params.next[params.next.length - 1] : params.next; },\n            set next(next) {\n                if (!Array.isArray(params.next)) {\n                    params.next = next;\n                }\n            },\n            get token() { return params.token; }\n        };\n    };\n    this.popRule = function (params) {\n        if (params.next) {\n            params.next = this.embeddedRulePrefix + params.next;\n        }\n        return {\n            regex: params.regex, onMatch: function (value, currentState, stack, line) {\n                stack.pop();\n                if (params.next) {\n                    stack.push(params.next);\n                    this.next = stack[stack.length - 1];\n                }\n                else {\n                    this.next = stack.length > 1 ? stack[stack.length - 1] : stack.pop();\n                }\n                return params.token;\n            }\n        };\n    };\n}).call(CsoundPreprocessorHighlightRules.prototype);\nexports.CsoundPreprocessorHighlightRules = CsoundPreprocessorHighlightRules;\n\n});\n\nace.define(\"ace/mode/csound_score_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/csound_preprocessor_highlight_rules\"], function(require, exports, module){\"use strict\";\nvar oop = require(\"../lib/oop\");\nvar CsoundPreprocessorHighlightRules = require(\"./csound_preprocessor_highlight_rules\").CsoundPreprocessorHighlightRules;\nvar CsoundScoreHighlightRules = function (embeddedRulePrefix) {\n    CsoundPreprocessorHighlightRules.call(this, embeddedRulePrefix);\n    this.quotedStringContents.push({\n        token: \"invalid.illegal.csound-score\",\n        regex: /[^\"]*$/\n    });\n    var start = this.$rules.start;\n    start.push({\n        token: \"keyword.control.csound-score\",\n        regex: /[aBbCdefiqstvxy]/\n    }, {\n        token: \"invalid.illegal.csound-score\",\n        regex: /w/\n    }, {\n        token: \"constant.numeric.language.csound-score\",\n        regex: /z/\n    }, {\n        token: [\"keyword.control.csound-score\", \"constant.numeric.integer.decimal.csound-score\"],\n        regex: /([nNpP][pP])(\\d+)/\n    }, {\n        token: \"keyword.other.csound-score\",\n        regex: /[mn]/,\n        push: [\n            {\n                token: \"empty\",\n                regex: /$/,\n                next: \"pop\"\n            },\n            this.comments,\n            {\n                token: \"entity.name.label.csound-score\",\n                regex: /[A-Z_a-z]\\w*/\n            }\n        ]\n    }, {\n        token: \"keyword.preprocessor.csound-score\",\n        regex: /r\\b/,\n        next: \"repeat section\"\n    }, this.numbers, {\n        token: \"keyword.operator.csound-score\",\n        regex: \"[!+\\\\-*/^%&|<>#~.]\"\n    }, this.pushRule({\n        token: \"punctuation.definition.string.begin.csound-score\",\n        regex: /\"/,\n        next: \"quoted string\"\n    }), this.pushRule({\n        token: \"punctuation.braced-loop.begin.csound-score\",\n        regex: /{/,\n        next: \"loop after left brace\"\n    }));\n    this.addRules({\n        \"repeat section\": [\n            {\n                token: \"empty\",\n                regex: /$/,\n                next: \"start\"\n            },\n            this.comments,\n            {\n                token: \"constant.numeric.integer.decimal.csound-score\",\n                regex: /\\d+/,\n                next: \"repeat section before label\"\n            }\n        ],\n        \"repeat section before label\": [\n            {\n                token: \"empty\",\n                regex: /$/,\n                next: \"start\"\n            },\n            this.comments,\n            {\n                token: \"entity.name.label.csound-score\",\n                regex: /[A-Z_a-z]\\w*/,\n                next: \"start\"\n            }\n        ],\n        \"quoted string\": [\n            this.popRule({\n                token: \"punctuation.definition.string.end.csound-score\",\n                regex: /\"/\n            }),\n            this.quotedStringContents,\n            {\n                defaultToken: \"string.quoted.csound-score\"\n            }\n        ],\n        \"loop after left brace\": [\n            this.popRule({\n                token: \"constant.numeric.integer.decimal.csound-score\",\n                regex: /\\d+/,\n                next: \"loop after repeat count\"\n            }),\n            this.comments,\n            {\n                token: \"invalid.illegal.csound\",\n                regex: /\\S.*/\n            }\n        ],\n        \"loop after repeat count\": [\n            this.popRule({\n                token: \"entity.name.function.preprocessor.csound-score\",\n                regex: /[A-Z_a-z]\\w*\\b/,\n                next: \"loop after macro name\"\n            }),\n            this.comments,\n            {\n                token: \"invalid.illegal.csound\",\n                regex: /\\S.*/\n            }\n        ],\n        \"loop after macro name\": [\n            start,\n            this.popRule({\n                token: \"punctuation.braced-loop.end.csound-score\",\n                regex: /}/\n            })\n        ]\n    });\n    this.normalizeRules();\n};\noop.inherits(CsoundScoreHighlightRules, CsoundPreprocessorHighlightRules);\nexports.CsoundScoreHighlightRules = CsoundScoreHighlightRules;\n\n});\n\nace.define(\"ace/mode/csound_score\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/csound_score_highlight_rules\"], function(require, exports, module){\"use strict\";\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar CsoundScoreHighlightRules = require(\"./csound_score_highlight_rules\").CsoundScoreHighlightRules;\nvar Mode = function () {\n    this.HighlightRules = CsoundScoreHighlightRules;\n};\noop.inherits(Mode, TextMode);\n(function () {\n    this.lineCommentStart = \";\";\n    this.blockComment = { start: \"/*\", end: \"*/\" };\n    this.$id = \"ace/mode/csound_score\";\n}).call(Mode.prototype);\nexports.Mode = Mode;\n\n});                (function() {\n                    ace.require([\"ace/mode/csound_score\"], function(m) {\n                        if (typeof module == \"object\" && typeof exports == \"object\" && module) {\n                            module.exports = m;\n                        }\n                    });\n                })();\n            "],"names":["require","exports","module","oop","TextHighlightRules","CsoundPreprocessorHighlightRules","embeddedRulePrefix","start","params","i","value","currentState","stack","line","next","CsoundScoreHighlightRules","TextMode","Mode","m"],"mappings":"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","x_google_ignoreList":[0]}