(state, textAfter)
| 850 | } |
| 851 | |
| 852 | function isContinuedStatement(state, textAfter) { |
| 853 | return state.lastType == "operator" || state.lastType == "," || |
| 854 | isOperatorChar.test(textAfter.charAt(0)) || |
| 855 | /[,.]/.test(textAfter.charAt(0)); |
| 856 | } |
| 857 | |
| 858 | function expressionAllowed(stream, state, backUp) { |
| 859 | return state.tokenize == tokenBase && |