| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 | 
							- "use strict";
 
- var ElemMatchObjectMatchExpression = module.exports = function ElemMatchObjectMatchExpression(){
 
- 	base.call(this);
 
- }, klass = ElemMatchObjectMatchExpression, base = require("./ArrayMatchingMatchExpression"), proto = klass.prototype = Object.create(base.prototype, {constructor:{value:klass}}); //jshint ignore:line
 
- proto._sub = undefined;
 
- /**
 
-  *
 
-  * Writes a debug string for this object
 
-  * @method debugString
 
-  * @param level
 
-  *
 
-  */
 
- proto.debugString = function debugString(level){
 
- 	return this._debugAddSpace( level ) +
 
- 		this.path() + " $elemMatch (obj) " +
 
- 		(this.getTag() ? this.getTag().debugString() : "") +
 
- 		this._exp._debugString( level + 1 );
 
- };
 
- /**
 
-  *
 
-  * Return 1 since we have a single "sub"
 
-  * @method numChildren
 
-  *
 
-  */
 
- proto.numChildren = function numChildren(){
 
- 	return 1;
 
- };
 
- /**
 
-  *
 
-  * Return the _sub property
 
-  * @method getChild
 
-  * @param i
 
-  *
 
-  */
 
- proto.getChild = function getChild(i){
 
- 	return this._sub.get();
 
- };
 
- /**
 
-  *
 
-  * Initialize the necessary items
 
-  * @method init
 
-  * @param path
 
-  * @param type
 
-  *
 
-  */
 
- proto.init = function init(path, sub){
 
- 	this._sub = sub;
 
- 	return this.initPath(path);
 
- };
 
- /**
 
-  *
 
-  * Check if one of the items in the input array matches _sub
 
-  * @method matchesArray
 
-  * @param anArray
 
-  * @param details
 
-  *
 
-  */
 
- proto.matchesArray = function matchesArray(anArray, details){
 
- 	for (var i in anArray) { //jshint ignore:line
 
- 		var inner = anArray[i];
 
- 		if (!(inner instanceof Object))
 
- 			continue;
 
- 		if (this._sub.matchesJSON(inner, null)) {
 
- 			if (details && details.needRecord()) {
 
- 				details.setElemMatchKey(i);
 
- 			}
 
- 			return true;
 
- 		}
 
- 	}
 
- 	return false;
 
- };
 
- /**
 
-  *
 
-  * clone this instance to a new one
 
-  * @method shallowClone
 
-  *
 
-  */
 
- proto.shallowClone = function shallowClone(){
 
- 	var element = new ElemMatchObjectMatchExpression();
 
- 	element.init(this.path(), this._sub.shallowClone());
 
- 	if ( this.getTag() ){
 
- 		element.setTag(this.getTag().clone());
 
- 	}
 
- 	return element;
 
- };
 
 
  |