summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/test/fixtures/a-implementation/node/span-start.ts
diff options
context:
space:
mode:
Diffstat (limited to 'llparse-frontend/test/fixtures/a-implementation/node/span-start.ts')
-rw-r--r--llparse-frontend/test/fixtures/a-implementation/node/span-start.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/llparse-frontend/test/fixtures/a-implementation/node/span-start.ts b/llparse-frontend/test/fixtures/a-implementation/node/span-start.ts
new file mode 100644
index 0000000..32e373c
--- /dev/null
+++ b/llparse-frontend/test/fixtures/a-implementation/node/span-start.ts
@@ -0,0 +1,8 @@
+import { node } from '../../../../src/frontend';
+import { Node } from './base';
+
+export class SpanStart extends Node<node.SpanStart> {
+ protected doBuild(out: string[]): void {
+ out.push(this.format(''));
+ }
+}