NodeVar.js 223 B

123456789101112131415
  1. class NodeVar {
  2. constructor( name, type, snippet = '' ) {
  3. this.name = name;
  4. this.type = type;
  5. this.snippet = snippet;
  6. Object.defineProperty( this, 'isNodeVar', { value: true } );
  7. }
  8. }
  9. export default NodeVar;