summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/node/consume.ts
blob: 6ab49ac9926061bca592d1bd03760ad8954a00fa (plain)
1
2
3
4
5
6
7
8
import { IUniqueName } from '../utils';
import { Node } from './base';

export class Consume extends Node {
  constructor(id: IUniqueName, readonly field: string) {
    super(id);
  }
}