| 123456789101112131415161718192021222324 |
- "use strict";
- var ComparisonMatchExpression = require('./ComparisonMatchExpression');
- // Autogenerated by cport.py on 2013-09-17 14:37
- var LTMatchExpression = module.exports = function LTMatchExpression(){
- base.call(this);
- this._matchType = 'LT';
- }, klass = LTMatchExpression, base = ComparisonMatchExpression, proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}});
- /**
- *
- * Return a new instance of this class, with fields set the same as ourself
- * @method shallowClone
- * @param
- *
- */
- proto.shallowClone = function shallowClone( /* */ ){
- // File: expression_leaf.h lines: 119-122
- var e = new LTMatchExpression();
- e.init( this.path(), this._rhs );
- return e;
- };
|