blob: ef1499b43bce0d749a90c6481ca84ec0239ea95d (
plain)
1
2
3
4
5
6
7
8
|
import { node } from '../../../../src/frontend';
import { Node } from './base';
export class Empty extends Node<node.Empty> {
protected doBuild(out: string[]): void {
out.push(this.format(''));
}
}
|