| 12345678910111213141516171819202122232425262728 |
- "use strict"
- var ComparisonMatchExpression = require('ComparisonMatchExpression');
- // Autogenerated by cport.py on 2013-09-17 14:37
- var GTEMatchExpression = module.exports = function (){
- this._matchType = 'GTE';
- }, klass = GTEMatchExpression, base = ComparisonMatchExpression, proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
- /**
- *
- * This documentation was automatically generated. Please update when you touch this function.
- * @method shallowClone
- * @param
- *
- */
- proto.shallowClone = function shallowClone( /* */ ){
- // File: expression_leaf.h lines: 141-144
- // virtual LeafMatchExpression* shallowClone() const {
- // ComparisonMatchExpression* e = new GTEMatchExpression();
- // e->init( path(), _rhs );
- // return e;
- // }
- var e = new GTEMatchExpression();
- e.init( this.path(), this._rhs );
- return e;
- };
|