summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/code/field.ts
blob: c60b8efd01e21ce273a90949ebc393de2aadc2b8 (plain)
1
2
3
4
5
6
7
8
import { Code, Signature } from './base';

export abstract class Field extends Code {
  constructor(signature: Signature, cacheKey: string, name: string,
              public readonly field: string) {
    super(signature, cacheKey, name);
  }
}