mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
98 lines
3.5 KiB
JavaScript
98 lines
3.5 KiB
JavaScript
var Node = require('./node'),
|
|
Value = require('./value'),
|
|
Keyword = require('./keyword'),
|
|
Anonymous = require('./anonymous');
|
|
|
|
var Declaration = function (name, value, important, merge, index, currentFileInfo, inline, variable) {
|
|
this.name = name;
|
|
this.value = (value instanceof Node) ? value : new Value([value ? new Anonymous(value) : null]);
|
|
this.important = important ? ' ' + important.trim() : '';
|
|
this.merge = merge;
|
|
this._index = index;
|
|
this._fileInfo = currentFileInfo;
|
|
this.inline = inline || false;
|
|
this.variable = (variable !== undefined) ? variable
|
|
: (name.charAt && (name.charAt(0) === '@'));
|
|
this.allowRoot = true;
|
|
this.setParent(this.value, this);
|
|
};
|
|
|
|
function evalName(context, name) {
|
|
var value = '', i, n = name.length,
|
|
output = {add: function (s) {value += s;}};
|
|
for (i = 0; i < n; i++) {
|
|
name[i].eval(context).genCSS(context, output);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
Declaration.prototype = new Node();
|
|
Declaration.prototype.type = 'Declaration';
|
|
Declaration.prototype.genCSS = function (context, output) {
|
|
output.add(this.name + (context.compress ? ':' : ': '), this.fileInfo(), this.getIndex());
|
|
try {
|
|
this.value.genCSS(context, output);
|
|
}
|
|
catch (e) {
|
|
e.index = this._index;
|
|
e.filename = this._fileInfo.filename;
|
|
throw e;
|
|
}
|
|
output.add(this.important + ((this.inline || (context.lastRule && context.compress)) ? '' : ';'), this._fileInfo, this._index);
|
|
};
|
|
Declaration.prototype.eval = function (context) {
|
|
var strictMathBypass = false, name = this.name, evaldValue, variable = this.variable;
|
|
if (typeof name !== 'string') {
|
|
// expand 'primitive' name directly to get
|
|
// things faster (~10% for benchmark.less):
|
|
name = (name.length === 1) && (name[0] instanceof Keyword) ?
|
|
name[0].value : evalName(context, name);
|
|
variable = false; // never treat expanded interpolation as new variable name
|
|
}
|
|
if (name === 'font' && !context.strictMath) {
|
|
strictMathBypass = true;
|
|
context.strictMath = true;
|
|
}
|
|
try {
|
|
context.importantScope.push({});
|
|
evaldValue = this.value.eval(context);
|
|
|
|
if (!this.variable && evaldValue.type === 'DetachedRuleset') {
|
|
throw { message: 'Rulesets cannot be evaluated on a property.',
|
|
index: this.getIndex(), filename: this.fileInfo().filename };
|
|
}
|
|
var important = this.important,
|
|
importantResult = context.importantScope.pop();
|
|
if (!important && importantResult.important) {
|
|
important = importantResult.important;
|
|
}
|
|
|
|
return new Declaration(name,
|
|
evaldValue,
|
|
important,
|
|
this.merge,
|
|
this.getIndex(), this.fileInfo(), this.inline,
|
|
variable);
|
|
}
|
|
catch (e) {
|
|
if (typeof e.index !== 'number') {
|
|
e.index = this.getIndex();
|
|
e.filename = this.fileInfo().filename;
|
|
}
|
|
throw e;
|
|
}
|
|
finally {
|
|
if (strictMathBypass) {
|
|
context.strictMath = false;
|
|
}
|
|
}
|
|
};
|
|
Declaration.prototype.makeImportant = function () {
|
|
return new Declaration(this.name,
|
|
this.value,
|
|
'!important',
|
|
this.merge,
|
|
this.getIndex(), this.fileInfo(), this.inline);
|
|
};
|
|
|
|
module.exports = Declaration; |