(state)
| 275 | } |
| 276 | |
| 277 | function pushPyScope(state) { |
| 278 | while (top(state).type != "py") state.scopes.pop() |
| 279 | state.scopes.push({offset: top(state).offset + conf.indentUnit, |
| 280 | type: "py", |
| 281 | align: null}) |
| 282 | } |
| 283 | |
| 284 | function pushBracketScope(stream, state, type) { |
| 285 | var align = stream.match(/^[\s\[\{\(]*(?:#|$)/, false) ? null : stream.column() + 1 |
no test coverage detected