mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
Update inline comments
This commit is contained in:
@@ -35,7 +35,7 @@ abstractFileManager.prototype.alwaysMakePathsAbsolute = function() {
|
||||
abstractFileManager.prototype.isPathAbsolute = function(filename) {
|
||||
return (/^(?:[a-z-]+:|\/|\\|#)/i).test(filename);
|
||||
};
|
||||
// TODO: pull out - this is part of Node & Browserify
|
||||
// TODO: pull out / replace?
|
||||
abstractFileManager.prototype.join = function(basePath, laterPath) {
|
||||
if (!basePath) {
|
||||
return laterPath;
|
||||
|
||||
@@ -54,6 +54,9 @@ PluginManager.prototype.get = function(filename) {
|
||||
return this.pluginCache[filename];
|
||||
};
|
||||
|
||||
/**
|
||||
* Deprecate eventually
|
||||
*/
|
||||
function upgradeVisitors(visitor, oldType, newType) {
|
||||
|
||||
if (visitor['visit' + oldType] && !visitor['visit' + newType]) {
|
||||
|
||||
Reference in New Issue
Block a user