(stackIndex, stateStack, nodeStack, userStateStack, node)
| 30570 | } |
| 30571 | BinaryExpressionState.nextState = nextState; |
| 30572 | function pushStack(stackIndex, stateStack, nodeStack, userStateStack, node) { |
| 30573 | stackIndex++; |
| 30574 | stateStack[stackIndex] = enter; |
| 30575 | nodeStack[stackIndex] = node; |
| 30576 | userStateStack[stackIndex] = undefined; |
| 30577 | return stackIndex; |
| 30578 | } |
| 30579 | function checkCircularity(stackIndex, nodeStack, node) { |
| 30580 | if (ts.Debug.shouldAssert(2 /* AssertionLevel.Aggressive */)) { |
| 30581 | while (stackIndex >= 0) { |