(src)
| 28 | } |
| 29 | |
| 30 | constructor(src) { |
| 31 | /** Current char index */ |
| 32 | this.idx = 0; |
| 33 | /** Start index of the current char scan */ |
| 34 | this.start = 0; |
| 35 | /** Input source */ |
| 36 | this.src = src; |
| 37 | this.len = src.length; |
| 38 | /** Current token */ |
| 39 | this.tkn = T$EOF; |
| 40 | /** Current token value */ |
| 41 | this.val = undefined; |
| 42 | /** Current char */ |
| 43 | this.ch = src.charCodeAt(0); |
| 44 | } |
| 45 | |
| 46 | parseBindingBehavior() { |
| 47 | this.nextToken(); |
nothing calls this directly
no outgoing calls
no test coverage detected