diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs b/vanilla/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs new file mode 100644 index 0000000..1986947 --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/node/FeatureFunction.cjs @@ -0,0 +1,67 @@ +'use strict'; + +const types = require('../../tokenizer/types.cjs'); + +const name = 'FeatureFunction'; +const structure = { + kind: String, + feature: String, + value: ['Declaration', 'Selector'] +}; + +function getFeatureParser(kind, name) { + const featuresOfKind = this.features[kind] || {}; + const parser = featuresOfKind[name]; + + if (typeof parser !== 'function') { + this.error(`Unknown feature ${name}()`); + } + + return parser; +} + +function parse(kind = 'unknown') { + const start = this.tokenStart; + const functionName = this.consumeFunctionName(); + const valueParser = getFeatureParser.call(this, kind, functionName.toLowerCase()); + + this.skipSC(); + + const value = this.parseWithFallback( + () => { + const startValueToken = this.tokenIndex; + const value = valueParser.call(this); + + if (this.eof === false && + this.isBalanceEdge(startValueToken) === false) { + this.error(); + } + + return value; + }, + () => this.Raw(null, false) + ); + + if (!this.eof) { + this.eat(types.RightParenthesis); + } + + return { + type: 'FeatureFunction', + loc: this.getLocation(start, this.tokenStart), + kind, + feature: functionName, + value + }; +} + +function generate(node) { + this.token(types.Function, node.feature + '('); + this.node(node.value); + this.token(types.RightParenthesis, ')'); +} + +exports.generate = generate; +exports.name = name; +exports.parse = parse; +exports.structure = structure; |
