(stream, state, type)
| 282 | } |
| 283 | |
| 284 | function pushBracketScope(stream, state, type) { |
| 285 | var align = stream.match(/^([\s\[\{\(]|#.*)*$/, false) ? null : stream.column() + 1 |
| 286 | state.scopes.push({offset: state.indent + hangingIndent, |
| 287 | type: type, |
| 288 | align: align}) |
| 289 | } |
| 290 | |
| 291 | function dedent(stream, state) { |
| 292 | var indented = stream.indentation(); |
no test coverage detected