summaryrefslogtreecommitdiffstats
path: root/llparse-frontend/src/code/value.ts
blob: 4f32ae83252f567d0befeadc50e5b559d7e3bf21 (plain)
1
2
3
4
5
6
7
import { External } from './external';

export class Value extends External {
  constructor(name: string) {
    super('value', name);
  }
}