Browse Source

refs #1004 Fixed static/non-static bug.

http://source.rd.rcg.local/trac/eagle6/changeset/1347/Eagle6_SVN
Jared Hall 13 years ago
parent
commit
a0ea647a04
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/pipeline/documentSources/ProjectDocumentSource.js

+ 1 - 1
lib/pipeline/documentSources/ProjectDocumentSource.js

@@ -114,7 +114,7 @@ var ProjectDocumentSource = module.exports = (function(){
 			isInclusionOk:true
 		});
 		var project = new ProjectDocumentSource();
-		this._raw = jsonElement;
+		project._raw = jsonElement;
 		var parsed = Expression.parseObject(jsonElement, objectContext);
 		var exprObj = parsed; 
 		if(! exprObj instanceof ObjectExpression) {