All files / src/models ClauseRef.js

0% Statements 0/7
100% Branches 0/0
0% Functions 0/1
0% Lines 0/7
1 2 3 4 5 6 7 8 9 10 11 12 13                         
const Clause = require( './Clause' );
 
function ClauseRef( { ref, getFn, conformFn } ) {
  this.type = 'CLAUSE_REF';
  this.get = getFn;
  this.conform = conformFn;
  this.ref = ref;
}
 
ClauseRef.prototype = Object.create( Clause.prototype );
 
module.exports = ClauseRef;