summaryrefslogtreecommitdiffstats
path: root/llparse-builder/src/code/field-value.ts
blob: 2ceea69913f58bd68dfc22489742710e0692afa7 (plain)
1
2
3
4
5
6
7
8
9
import { Signature } from './base';
import { Field } from './field';

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