(field: string, next?: string | Node)
| 1189 | } |
| 1190 | |
| 1191 | private store(field: string, next?: string | Node): Node { |
| 1192 | const p = this.llparse; |
| 1193 | |
| 1194 | const res = p.invoke(p.code.store(field)); |
| 1195 | if (next !== undefined) { |
| 1196 | res.otherwise(this.node(next)); |
| 1197 | } |
| 1198 | return res; |
| 1199 | } |
| 1200 | |
| 1201 | private update(field: string, value: number, next?: string | Node): Node { |
| 1202 | const p = this.llparse; |
no test coverage detected