1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 4x 4x | import Clause from "./Clause"; export default class ClauseRef extends Clause { constructor( { ref, getFn, conformFn } ) { super({ type: "CLAUSE_REF", exprs: [], opts: {}, conformFn, generateFn: null, }); this.type = "CLAUSE_REF"; this.get = getFn; this.conform = conformFn; this.ref = ref; }; get: Function; ref: any; } |