Refactoring renderer "tree" array to "nodes"

This commit is contained in:
Jeremy Ruston
2012-03-03 18:39:13 +00:00
parent 2ecb1f670c
commit 4a73317193
8 changed files with 11 additions and 11 deletions

View File

@@ -420,7 +420,7 @@ var rules = [
w.nextMatch = oldNextMatch;
w.children = oldChildren;
w.dependencies = oldDependencies;
w.output.push.apply(w.output,parseTree.tree);
w.output.push.apply(w.output,parseTree.nodes);
w.nextMatch = this.lookaheadRegExp.lastIndex;
}
}