Bug fix for IncludeNode

This commit is contained in:
Patrick Steele-Idem 2014-04-30 22:16:58 -06:00
parent 133ddaa2d7
commit 3c88cf2032

View File

@ -20,7 +20,10 @@ var fs = require('fs');
var extend = require('raptor-util').extend;
function IncludeNode(props) {
IncludeNode.$super.call(this);
if (IncludeNode.$super) {
IncludeNode.$super.call(this);
}
if (props) {
this.setProperties(props);
}