(state, column)
| 95 | } |
| 96 | |
| 97 | function continueLine(state, column) { |
| 98 | state.stack = { |
| 99 | parent: state.stack, |
| 100 | style: "continuation", |
| 101 | indented: column, |
| 102 | tokenize: state.line |
| 103 | }; |
| 104 | state.line = state.tokenize; |
| 105 | } |
| 106 | function finishContinue(state) { |
| 107 | if (state.line == state.tokenize) { |
| 108 | state.line = state.stack.tokenize; |
no outgoing calls
no test coverage detected