diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs b/vanilla/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs new file mode 100644 index 0000000..7c14bc6 --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/node/Parentheses.cjs @@ -0,0 +1,38 @@ +'use strict'; + +const types = require('../../tokenizer/types.cjs'); + +const name = 'Parentheses'; +const structure = { + children: [[]] +}; + +function parse(readSequence, recognizer) { + const start = this.tokenStart; + let children = null; + + this.eat(types.LeftParenthesis); + + children = readSequence.call(this, recognizer); + + if (!this.eof) { + this.eat(types.RightParenthesis); + } + + return { + type: 'Parentheses', + loc: this.getLocation(start, this.tokenStart), + children + }; +} + +function generate(node) { + this.token(types.LeftParenthesis, '('); + this.children(node); + this.token(types.RightParenthesis, ')'); +} + +exports.generate = generate; +exports.name = name; +exports.parse = parse; +exports.structure = structure; |
