36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
/*
|
|
* rdoc.js
|
|
*
|
|
* Copyright (C) 2009-11 by RStudio, Inc.
|
|
*
|
|
* This program is licensed to you under the terms of version 3 of the
|
|
* GNU Affero General Public License. This program is distributed WITHOUT
|
|
* ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
|
|
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
|
|
* AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
|
|
*
|
|
*/
|
|
define(function(require, exports, module) {
|
|
"use strict";
|
|
|
|
var oop = require("../lib/oop");
|
|
var TextMode = require("./text").Mode;
|
|
var Tokenizer = require("../tokenizer").Tokenizer;
|
|
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
var RDocHighlightRules = require("./rdoc_highlight_rules").RDocHighlightRules;
|
|
var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
|
|
|
|
var Mode = function(suppressHighlighting) {
|
|
this.$tokenizer = new Tokenizer(new RDocHighlightRules().getRules());
|
|
this.$outdent = new MatchingBraceOutdent();
|
|
};
|
|
oop.inherits(Mode, TextMode);
|
|
|
|
(function() {
|
|
this.getNextLineIndent = function(state, line, tab) {
|
|
return this.$getIndent(line);
|
|
};
|
|
}).call(Mode.prototype);
|
|
|
|
exports.Mode = Mode;
|
|
});
|