IntNode.js 221 B

1234567891011121314151617
  1. import InputNode from '../core/InputNode.js';
  2. class IntNode extends InputNode {
  3. constructor( value = 0 ) {
  4. super( 'int' );
  5. this.value = value;
  6. }
  7. }
  8. IntNode.prototype.isIntNode = true;
  9. export default IntNode;