summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/test/fixtures/a-implementation/code/span.ts
blob: 46fc4108d6a85ce3ed4ed509c9895b5b48563ffa (plain)
1
2
3
4
5
6
7
8
import { code } from '../../../../src/frontend';
import { Code } from './base';

export class Span extends Code<code.Span> {
  public build(): string {
    return '';
  }
}