GTEMatchExpression.js 712 B

123456789101112131415161718192021222324
  1. "use strict";
  2. var ComparisonMatchExpression = require('./ComparisonMatchExpression');
  3. // Autogenerated by cport.py on 2013-09-17 14:37
  4. var GTEMatchExpression = module.exports = function GTEMatchExpression(){
  5. base.call(this);
  6. this._matchType = 'GTE';
  7. }, klass = GTEMatchExpression, base = ComparisonMatchExpression, proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
  8. /**
  9. *
  10. * Return a new instance of this class, with fields set the same as ourself
  11. * @method shallowClone
  12. * @param
  13. *
  14. */
  15. proto.shallowClone = function shallowClone( /* */ ){
  16. // File: expression_leaf.h lines: 141-144
  17. var e = new GTEMatchExpression();
  18. e.init( this.path(), this._rhs );
  19. return e;
  20. };