()
| 416 | var SqlServerFoldMode = require("./folding/sqlserver").FoldMode; |
| 417 | |
| 418 | var Mode = function() { |
| 419 | this.HighlightRules = SqlServerHighlightRules; |
| 420 | this.foldingRules = new SqlServerFoldMode(); |
| 421 | this.$behaviour = this.$defaultBehaviour; |
| 422 | }; |
| 423 | oop.inherits(Mode, TextMode); |
| 424 | |
| 425 | (function() { |
nothing calls this directly
no outgoing calls
no test coverage detected