()
| 707 | var CStyleFoldMode = require("./folding/cstyle").FoldMode; |
| 708 | |
| 709 | var Mode = function() { |
| 710 | this.HighlightRules = JavaScriptHighlightRules; |
| 711 | |
| 712 | this.$outdent = new MatchingBraceOutdent(); |
| 713 | this.$behaviour = new CstyleBehaviour(); |
| 714 | this.foldingRules = new CStyleFoldMode(); |
| 715 | }; |
| 716 | oop.inherits(Mode, TextMode); |
| 717 | |
| 718 | (function() { |
nothing calls this directly
no outgoing calls
no test coverage detected