Files
skills-here-run-place/node_modules/css-tree/cjs/syntax/node/Value.cjs
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

27 lines
469 B
JavaScript

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