mirror of
https://github.com/less/less.js.git
synced 2026-01-25 07:08:17 -05:00
Merge branch 'master' of https://github.com/brenmar/less.js
This commit is contained in:
@@ -530,10 +530,10 @@ less.Parser = function Parser(env) {
|
||||
e = new(LessError)(e, env);
|
||||
}
|
||||
|
||||
callback(e);
|
||||
return callback(e);
|
||||
}
|
||||
else {
|
||||
callback(null, root);
|
||||
return callback(null, root);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -541,7 +541,7 @@ less.Parser = function Parser(env) {
|
||||
new tree.importVisitor(this.imports, finish)
|
||||
.run(root);
|
||||
} else {
|
||||
finish();
|
||||
return finish();
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user