import { node } from '../../../../src/frontend'; import { Node } from './base'; export class SpanStart extends Node { protected doBuild(out: string[]): void { out.push(this.format('')); } }