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

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