(state, textAfter)
| 835 | } |
| 836 | |
| 837 | function isContinuedStatement(state, textAfter) { |
| 838 | return state.lastType == "operator" || state.lastType == "," || |
| 839 | isOperatorChar.test(textAfter.charAt(0)) || |
| 840 | /[,.]/.test(textAfter.charAt(0)); |
| 841 | } |
| 842 | |
| 843 | function expressionAllowed(stream, state, backUp) { |
| 844 | return state.tokenize == tokenBase && |