import { node } from '../../../../src/frontend'; import { Node } from './base'; export class Sequence extends Node { protected doBuild(out: string[]): void { out.push(this.format(`select="${this.ref.select.toString('hex')}"`)); } }