(field: string, map: Record<number, Node>,
next?: string | Node)
| 1178 | } |
| 1179 | |
| 1180 | private load(field: string, map: Record<number, Node>, |
| 1181 | next?: string | Node): Node { |
| 1182 | const p = this.llparse; |
| 1183 | |
| 1184 | const res = p.invoke(p.code.load(field), map); |
| 1185 | if (next !== undefined) { |
| 1186 | res.otherwise(this.node(next)); |
| 1187 | } |
| 1188 | return res; |
| 1189 | } |
| 1190 | |
| 1191 | private store(field: string, next?: string | Node): Node { |
| 1192 | const p = this.llparse; |
no test coverage detected