GTEMatchExpression.js 907 B

12345678910111213141516171819202122232425262728
  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 (){
  5. this._matchType = 'GTE';
  6. }, klass = GTEMatchExpression, base = ComparisonMatchExpression, proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
  7. /**
  8. *
  9. * This documentation was automatically generated. Please update when you touch this function.
  10. * @method shallowClone
  11. * @param
  12. *
  13. */
  14. proto.shallowClone = function shallowClone( /* */ ){
  15. // File: expression_leaf.h lines: 141-144
  16. // virtual LeafMatchExpression* shallowClone() const {
  17. // ComparisonMatchExpression* e = new GTEMatchExpression();
  18. // e->init( path(), _rhs );
  19. // return e;
  20. // }
  21. var e = new GTEMatchExpression();
  22. e.init( this.path(), this._rhs );
  23. return e;
  24. };