Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 2x 2x 2x 2x 2x 2x 2x 2x 641x 641x 641x 641x 425x 425x 425x 425x 425x 425x 424x 424x 424x 424x 424x 641x | import parse from '../util/parse'; import createTree from '../tree/create'; import Transaction from '../transaction'; /** * @param {Transaction} transaction */ export default function parseNewTree(transaction) { const { state, input, config: options } = transaction; const { measure } = state; if (typeof input === 'string') { measure('parsing input for new tree'); const { childNodes } = parse(input, undefined, options); const vTree = createTree(childNodes); if (vTree) { transaction.newTree = vTree; } measure('parsing input for new tree'); } } |