Files
GNX-mailEnterprise/frontend/node_modules/css-tree/lib/syntax/node/Value.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

20 lines
444 B
JavaScript

module.exports = {
name: 'Value',
structure: {
children: [[]]
},
parse: function() {
var start = this.scanner.tokenStart;
var children = this.readSequence(this.scope.Value);
return {
type: 'Value',
loc: this.getLocation(start, this.scanner.tokenStart),
children: children
};
},
generate: function(node) {
this.children(node);
}
};