mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
Bug fix for IncludeNode
This commit is contained in:
parent
133ddaa2d7
commit
3c88cf2032
@ -20,7 +20,10 @@ var fs = require('fs');
|
|||||||
|
|
||||||
var extend = require('raptor-util').extend;
|
var extend = require('raptor-util').extend;
|
||||||
function IncludeNode(props) {
|
function IncludeNode(props) {
|
||||||
IncludeNode.$super.call(this);
|
if (IncludeNode.$super) {
|
||||||
|
IncludeNode.$super.call(this);
|
||||||
|
}
|
||||||
|
|
||||||
if (props) {
|
if (props) {
|
||||||
this.setProperties(props);
|
this.setProperties(props);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user