summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/code/base.ts
blob: cde4b6dab27cf2bbe3b7a9448aade1887f21f4ec (plain)
1
2
3
4
5
6
7
8
export type Signature = 'match' | 'value' | 'span';

export abstract class Code {
  constructor(public readonly signature: Signature,
              public readonly cacheKey: string,
              public readonly name: string) {
  }
}