| 1234567891011121314151617181920212223 |
- "use strict";
- /**
- * @class GTEMatchExpression
- * @namespace mungedb-aggregate.pipeline.matcher
- * @module mungedb-aggregate
- * @constructor
- */
- var GTEMatchExpression = module.exports = function GTEMatchExpression(){
- base.call(this, "GTE");
- }, klass = GTEMatchExpression, base = require("./ComparisonMatchExpression"), proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}}); //jshint ignore:line
- /**
- * @method shallowClone
- */
- proto.shallowClone = function shallowClone(){
- var e = new GTEMatchExpression();
- e.init(this.path(), this._rhs);
- if(this.getTag()) {
- e.setTag(this.getTag().clone());
- }
- return e;
- };
|