Small bug fix: index is passed to Comment node but never assigned

This commit is contained in:
Matthew Dean
2016-05-10 19:58:34 -07:00
parent 9500bfb734
commit 7a5e073e90

View File

@@ -4,6 +4,7 @@ var Node = require("./node"),
var Comment = function (value, isLineComment, index, currentFileInfo) {
this.value = value;
this.isLineComment = isLineComment;
this.index = index;
this.currentFileInfo = currentFileInfo;
this.allowRoot = true;
};