1 |
- {"version":3,"file":"mode-r-ee518de8.js","sources":["../../node_modules/ace-builds/src-noconflict/mode-r.js"],"sourcesContent":["ace.define(\"ace/mode/tex_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\"], function(require, exports, module){/*\n * tex_highlight_rules.js\n *\n * Copyright (C) 2009-11 by RStudio, Inc.\n *\n * The Initial Developer of the Original Code is\n * Ajax.org B.V.\n * Portions created by the Initial Developer are Copyright (C) 2010\n * the Initial Developer. All Rights Reserved.\n *\n * Distributed under the BSD license:\n *\n * Copyright (c) 2010, Ajax.org B.V.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * * Neither the name of Ajax.org B.V. nor the\n * names of its contributors may be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n *\n */\n\"use strict\";\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar TexHighlightRules = function (textClass) {\n if (!textClass)\n textClass = \"text\";\n this.$rules = {\n \"start\": [\n {\n token: \"comment\",\n regex: \"%.*$\"\n }, {\n token: textClass,\n regex: \"\\\\\\\\[$&%#\\\\{\\\\}]\"\n }, {\n token: \"keyword\",\n regex: \"\\\\\\\\(?:documentclass|usepackage|newcounter|setcounter|addtocounter|value|arabic|stepcounter|newenvironment|renewenvironment|ref|vref|eqref|pageref|label|cite[a-zA-Z]*|tag|begin|end|bibitem)\\\\b\",\n next: \"nospell\"\n }, {\n token: \"keyword\",\n regex: \"\\\\\\\\(?:[a-zA-Z0-9]+|[^a-zA-Z0-9])\"\n }, {\n token: \"paren.keyword.operator\",\n regex: \"[[({]\"\n }, {\n token: \"paren.keyword.operator\",\n regex: \"[\\\\])}]\"\n }, {\n token: textClass,\n regex: \"\\\\s+\"\n }\n ],\n \"nospell\": [\n {\n token: \"comment\",\n regex: \"%.*$\",\n next: \"start\"\n }, {\n token: \"nospell.\" + textClass,\n regex: \"\\\\\\\\[$&%#\\\\{\\\\}]\"\n }, {\n token: \"keyword\",\n regex: \"\\\\\\\\(?:documentclass|usepackage|newcounter|setcounter|addtocounter|value|arabic|stepcounter|newenvironment|renewenvironment|ref|vref|eqref|pageref|label|cite[a-zA-Z]*|tag|begin|end|bibitem)\\\\b\"\n }, {\n token: \"keyword\",\n regex: \"\\\\\\\\(?:[a-zA-Z0-9]+|[^a-zA-Z0-9])\",\n next: \"start\"\n }, {\n token: \"paren.keyword.operator\",\n regex: \"[[({]\"\n }, {\n token: \"paren.keyword.operator\",\n regex: \"[\\\\])]\"\n }, {\n token: \"paren.keyword.operator\",\n regex: \"}\",\n next: \"start\"\n }, {\n token: \"nospell.\" + textClass,\n regex: \"\\\\s+\"\n }, {\n token: \"nospell.\" + textClass,\n regex: \"\\\\w+\"\n }\n ]\n };\n};\noop.inherits(TexHighlightRules, TextHighlightRules);\nexports.TexHighlightRules = TexHighlightRules;\n\n});\n\nace.define(\"ace/mode/r_highlight_rules\",[\"require\",\"exports\",\"module\",\"ace/lib/oop\",\"ace/lib/lang\",\"ace/mode/text_highlight_rules\",\"ace/mode/tex_highlight_rules\"], function(require, exports, module){/*\n * r_highlight_rules.js\n *\n * Copyright (C) 2009-11 by RStudio, Inc.\n *\n * The Initial Developer of the Original Code is\n * Ajax.org B.V.\n * Portions created by the Initial Developer are Copyright (C) 2010\n * the Initial Developer. All Rights Reserved.\n *\n * Distributed under the BSD license:\n *\n * Copyright (c) 2010, Ajax.org B.V.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * * Neither the name of Ajax.org B.V. nor the\n * names of its contributors may be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n *\n */\nvar oop = require(\"../lib/oop\");\nvar lang = require(\"../lib/lang\");\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar TexHighlightRules = require(\"./tex_highlight_rules\").TexHighlightRules;\nvar RHighlightRules = function () {\n var keywords = lang.arrayToMap((\"function|if|in|break|next|repeat|else|for|return|switch|while|try|tryCatch|stop|warning|require|library|attach|detach|source|setMethod|setGeneric|setGroupGeneric|setClass\")\n .split(\"|\"));\n var buildinConstants = lang.arrayToMap((\"NULL|NA|TRUE|FALSE|T|F|Inf|NaN|NA_integer_|NA_real_|NA_character_|\" +\n \"NA_complex_\").split(\"|\"));\n this.$rules = {\n \"start\": [\n {\n token: \"comment.sectionhead\",\n regex: \"#+(?!').*(?:----|====|####)\\\\s*$\"\n },\n {\n token: \"comment\",\n regex: \"#+'\",\n next: \"rd-start\"\n },\n {\n token: \"comment\",\n regex: \"#.*$\"\n },\n {\n token: \"string\",\n regex: '[\"]',\n next: \"qqstring\"\n },\n {\n token: \"string\",\n regex: \"[']\",\n next: \"qstring\"\n },\n {\n token: \"constant.numeric\",\n regex: \"0[xX][0-9a-fA-F]+[Li]?\\\\b\"\n },\n {\n token: \"constant.numeric\",\n regex: \"\\\\d+L\\\\b\"\n },\n {\n token: \"constant.numeric\",\n regex: \"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\"\n },\n {\n token: \"constant.numeric\",\n regex: \"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\"\n },\n {\n token: \"constant.language.boolean\",\n regex: \"(?:TRUE|FALSE|T|F)\\\\b\"\n },\n {\n token: \"identifier\",\n regex: \"`.*?`\"\n },\n {\n onMatch: function (value) {\n if (keywords[value])\n return \"keyword\";\n else if (buildinConstants[value])\n return \"constant.language\";\n else if (value == '...' || value.match(/^\\.\\.\\d+$/))\n return \"variable.language\";\n else\n return \"identifier\";\n },\n regex: \"[a-zA-Z.][a-zA-Z0-9._]*\\\\b\"\n },\n {\n token: \"keyword.operator\",\n regex: \"%%|>=|<=|==|!=|\\\\->|<\\\\-|\\\\|\\\\||&&|=|\\\\+|\\\\-|\\\\*|/|\\\\^|>|<|!|&|\\\\||~|\\\\$|:\"\n },\n {\n token: \"keyword.operator\",\n regex: \"%.*?%\"\n },\n {\n token: \"paren.keyword.operator\",\n regex: \"[[({]\"\n },\n {\n token: \"paren.keyword.operator\",\n regex: \"[\\\\])}]\"\n },\n {\n token: \"text\",\n regex: \"\\\\s+\"\n }\n ],\n \"qqstring\": [\n {\n token: \"string\",\n regex: '(?:(?:\\\\\\\\.)|(?:[^\"\\\\\\\\]))*?\"',\n next: \"start\"\n },\n {\n token: \"string\",\n regex: '.+'\n }\n ],\n \"qstring\": [\n {\n token: \"string\",\n regex: \"(?:(?:\\\\\\\\.)|(?:[^'\\\\\\\\]))*?'\",\n next: \"start\"\n },\n {\n token: \"string\",\n regex: '.+'\n }\n ]\n };\n var rdRules = new TexHighlightRules(\"comment\").getRules();\n for (var i = 0; i < rdRules[\"start\"].length; i++) {\n rdRules[\"start\"][i].token += \".virtual-comment\";\n }\n this.addRules(rdRules, \"rd-\");\n this.$rules[\"rd-start\"].unshift({\n token: \"text\",\n regex: \"^\",\n next: \"start\"\n });\n this.$rules[\"rd-start\"].unshift({\n token: \"keyword\",\n regex: \"@(?!@)[^ ]*\"\n });\n this.$rules[\"rd-start\"].unshift({\n token: \"comment\",\n regex: \"@@\"\n });\n this.$rules[\"rd-start\"].push({\n token: \"comment\",\n regex: \"[^%\\\\\\\\[({\\\\])}]+\"\n });\n};\noop.inherits(RHighlightRules, TextHighlightRules);\nexports.RHighlightRules = RHighlightRules;\n\n});\n\nace.define(\"ace/mode/matching_brace_outdent\",[\"require\",\"exports\",\"module\",\"ace/range\"], function(require, exports, module){\"use strict\";\nvar Range = require(\"../range\").Range;\nvar MatchingBraceOutdent = function () { };\n(function () {\n this.checkOutdent = function (line, input) {\n if (!/^\\s+$/.test(line))\n return false;\n return /^\\s*\\}/.test(input);\n };\n this.autoOutdent = function (doc, row) {\n var line = doc.getLine(row);\n var match = line.match(/^(\\s*\\})/);\n if (!match)\n return 0;\n var column = match[1].length;\n var openBracePos = doc.findMatchingBracket({ row: row, column: column });\n if (!openBracePos || openBracePos.row == row)\n return 0;\n var indent = this.$getIndent(doc.getLine(openBracePos.row));\n doc.replace(new Range(row, 0, row, column - 1), indent);\n };\n this.$getIndent = function (line) {\n return line.match(/^\\s*/)[0];\n };\n}).call(MatchingBraceOutdent.prototype);\nexports.MatchingBraceOutdent = MatchingBraceOutdent;\n\n});\n\nace.define(\"ace/mode/r\",[\"require\",\"exports\",\"module\",\"ace/unicode\",\"ace/range\",\"ace/lib/oop\",\"ace/mode/text\",\"ace/mode/text_highlight_rules\",\"ace/mode/r_highlight_rules\",\"ace/mode/matching_brace_outdent\"], function(require, exports, module){/*\n * r.js\n *\n * Copyright (C) 2009-11 by RStudio, Inc.\n *\n * The Initial Developer of the Original Code is\n * Ajax.org B.V.\n * Portions created by the Initial Developer are Copyright (C) 2010\n * the Initial Developer. All Rights Reserved.\n *\n * Distributed under the BSD license:\n *\n * Copyright (c) 2010, Ajax.org B.V.\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * * Redistributions of source code must retain the above copyright\n * notice, this list of conditions and the following disclaimer.\n * * Redistributions in binary form must reproduce the above copyright\n * notice, this list of conditions and the following disclaimer in the\n * documentation and/or other materials provided with the distribution.\n * * Neither the name of Ajax.org B.V. nor the\n * names of its contributors may be used to endorse or promote products\n * derived from this software without specific prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY\n * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n *\n */\n\"use strict\";\nvar unicode = require(\"../unicode\");\nvar Range = require(\"../range\").Range;\nvar oop = require(\"../lib/oop\");\nvar TextMode = require(\"./text\").Mode;\nvar TextHighlightRules = require(\"./text_highlight_rules\").TextHighlightRules;\nvar RHighlightRules = require(\"./r_highlight_rules\").RHighlightRules;\nvar MatchingBraceOutdent = require(\"./matching_brace_outdent\").MatchingBraceOutdent;\nvar Mode = function () {\n this.HighlightRules = RHighlightRules;\n this.$outdent = new MatchingBraceOutdent();\n this.$behaviour = this.$defaultBehaviour;\n};\noop.inherits(Mode, TextMode);\n(function () {\n this.lineCommentStart = \"#\";\n this.tokenRe = new RegExp(\"^[\" + unicode.wordChars + \"._]+\", \"g\");\n this.nonTokenRe = new RegExp(\"^(?:[^\" + unicode.wordChars + \"._]|\\s])+\", \"g\");\n this.$id = \"ace/mode/r\";\n this.snippetFileId = \"ace/snippets/r\";\n}).call(Mode.prototype);\nexports.Mode = Mode;\n\n}); (function() {\n ace.require([\"ace/mode/r\"], 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","TexHighlightRules","textClass","lang","RHighlightRules","keywords","buildinConstants","value","rdRules","i","Range","MatchingBraceOutdent","line","input","doc","row","match","column","openBracePos","indent","unicode","TextMode","Mode","m"],"mappings":"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","x_google_ignoreList":[0]}
|