()
| 1489 | var CStyleFoldMode = require("./folding/cstyle").FoldMode; |
| 1490 | |
| 1491 | var Mode = function() { |
| 1492 | this.HighlightRules = JavaScriptHighlightRules; |
| 1493 | |
| 1494 | this.$outdent = new MatchingBraceOutdent(); |
| 1495 | this.$behaviour = new CstyleBehaviour(); |
| 1496 | this.foldingRules = new CStyleFoldMode(); |
| 1497 | }; |
| 1498 | oop.inherits(Mode, TextMode); |
| 1499 | |
| 1500 | (function() { |
nothing calls this directly
no outgoing calls
no test coverage detected