You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
955 B
JavaScript
33 lines
955 B
JavaScript
var compactable = require('./compactable');
|
|
var InvalidPropertyError = require('./invalid-property-error');
|
|
|
|
function populateComponents(properties, validator, warnings) {
|
|
for (var i = properties.length - 1; i >= 0; i--) {
|
|
var property = properties[i];
|
|
var descriptor = compactable[property.name];
|
|
|
|
if (descriptor && descriptor.shorthand) {
|
|
property.shorthand = true;
|
|
property.dirty = true;
|
|
|
|
try {
|
|
property.components = descriptor.breakUp(property, compactable, validator);
|
|
} catch (e) {
|
|
if (e instanceof InvalidPropertyError) {
|
|
property.components = []; // this will set property.unused to true below
|
|
warnings.push(e.message);
|
|
} else {
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
if (property.components.length > 0)
|
|
property.multiplex = property.components[0].multiplex;
|
|
else
|
|
property.unused = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = populateComponents;
|