()
| 1025 | } |
| 1026 | |
| 1027 | function pop () { |
| 1028 | stack.pop() |
| 1029 | |
| 1030 | const current = stack[stack.length - 1] |
| 1031 | if (current == null) { |
| 1032 | parseState = 'end' |
| 1033 | } else if (Array.isArray(current)) { |
| 1034 | parseState = 'afterArrayValue' |
| 1035 | } else { |
| 1036 | parseState = 'afterPropertyValue' |
| 1037 | } |
| 1038 | } |
| 1039 | |
| 1040 | // This code is unreachable. |
| 1041 | // function invalidParseState () { |
no outgoing calls
no test coverage detected