(token)
| 77 | } |
| 78 | |
| 79 | push(token): void { |
| 80 | if (token.type === Token.Punctuator || token.type === Token.Keyword) { |
| 81 | if (token.value === '{') { |
| 82 | this.curly = this.values.length; |
| 83 | } else if (token.value === '(') { |
| 84 | this.paren = this.values.length; |
| 85 | } |
| 86 | this.values.push(token.value); |
| 87 | } else { |
| 88 | this.values.push(null); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | } |
| 93 |
no outgoing calls
no test coverage detected