(state)
| 78979 | state.typeStack[state.stackIndex] = type; |
| 78980 | } |
| 78981 | function getLastResult(state) { |
| 78982 | return state.typeStack[state.stackIndex + 1]; |
| 78983 | } |
| 78984 | function setLastResult(state, type) { |
| 78985 | // To reduce overhead, reuse the next stack entry to store the |
| 78986 | // last result. This avoids the overhead of an additional property |
no outgoing calls
no test coverage detected