All files / src/models ClauseRef.ts

84% Statements 21/25
53.85% Branches 7/13
71.43% Functions 5/7
90.48% Lines 19/21
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;
}