remove unused optimization level

This commit is contained in:
Luke Page
2014-02-15 14:49:25 +00:00
parent a9e8cc6b57
commit c844b022f9
6 changed files with 1 additions and 19 deletions

View File

@@ -568,7 +568,6 @@ function loadStyleSheets(callback, reload, modifyVars) {
function initRunningMode(){
if (less.env === 'development') {
less.optimization = 0;
less.watchTimer = setInterval(function () {
if (less.watchMode) {
loadStyleSheets(function (e, root, _, sheet, env) {
@@ -580,8 +579,6 @@ function initRunningMode(){
});
}
}, less.poll);
} else {
less.optimization = 3;
}
}

View File

@@ -2,7 +2,6 @@
var parseCopyProperties = [
'paths', // option - unmodified - paths to search for imports on
'optimization', // option - optimization level (for the chunker)
'files', // list of files that have been imported, used for import-once
'contents', // map - filename to contents of all the files
'contentsIgnoredChars', // map - filename to lines at the begining of each file to ignore

View File

@@ -61,10 +61,6 @@ var lessc_helper = {
console.log(" --modify-var='VAR=VALUE' Modifies a variable already declared in the file.");
console.log("");
console.log("-------------------------- Deprecated ----------------");
console.log(" -O0, -O1, -O2 Set the parser's optimization level. The lower");
console.log(" the number, the less nodes it will create in the");
console.log(" tree. This could matter for debugging, or if you");
console.log(" want to access the individual nodes in the tree.");
console.log(" --line-numbers=TYPE Outputs filename and line numbers.");
console.log(" TYPE can be either 'comments', which will output");
console.log(" the debug info within comments, 'mediaquery'");

View File

@@ -335,12 +335,6 @@ less.Parser = function Parser(env) {
this.env = env = env || {};
// The optimization level dictates the thoroughness of the parser,
// the lower the number, the less nodes it will create in the tree.
// This could matter for debugging, or if you want to access
// the individual nodes in the tree.
this.optimization = ('optimization' in this.env) ? this.env.optimization : 1;
//
// The Parser
//

View File

@@ -150,7 +150,6 @@ function writeFile(filename, content) {
compress: false,
cleancss: false,
max_line_len: -1,
optimization: 1,
silent: false,
verbose: false,
lint: false,
@@ -269,9 +268,6 @@ function writeFile(filename, content) {
});
}
break;
case 'O0': options.optimization = 0; break;
case 'O1': options.optimization = 1; break;
case 'O2': options.optimization = 2; break;
case 'line-numbers':
if (checkArgFunc(arg, match[2])) {
options.dumpLineNumbers = match[2];