(state, textAfter)
| 698 | } |
| 699 | |
| 700 | function isContinuedStatement(state, textAfter) { |
| 701 | return state.lastType == "operator" || state.lastType == "," || |
| 702 | isOperatorChar.test(textAfter.charAt(0)) || |
| 703 | /[,.]/.test(textAfter.charAt(0)); |
| 704 | } |
| 705 | |
| 706 | // Interface |
| 707 |