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