mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
Small bug fix: index is passed to Comment node but never assigned
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user