summaryrefslogtreecommitdiffstats
path: root/llparse-builder/src/code/or.ts
blob: 33bd4022b8d6d06abbd2c47288766a8231a3a50d (plain)
1
2
3
4
5
6
7
import { FieldValue } from './field-value';

export class Or extends FieldValue {
  constructor(field: string, value: number) {
    super('match', 'or', field, value);
  }
}