Sha256: 513b7efe4d9ab49ff1cca7035d9763a7162d47f4aef51c56851184981b6161f1

Contents?: true

Size: 1.19 KB

Versions: 41

Compression:

Stored size: 1.19 KB

Contents

var TYPE = require('../../tokenizer').TYPE;
var rawMode = require('./Raw').mode;

var WHITESPACE = TYPE.WhiteSpace;
var COMMENT = TYPE.Comment;
var SEMICOLON = TYPE.Semicolon;

function consumeRaw(startToken) {
    return this.Raw(startToken, rawMode.semicolonIncluded, true);
}

module.exports = {
    name: 'DeclarationList',
    structure: {
        children: [[
            'Declaration'
        ]]
    },
    parse: function() {
        var children = this.createList();

        scan:
        while (!this.scanner.eof) {
            switch (this.scanner.tokenType) {
                case WHITESPACE:
                case COMMENT:
                case SEMICOLON:
                    this.scanner.next();
                    break;

                default:
                    children.push(this.parseWithFallback(this.Declaration, consumeRaw));
            }
        }

        return {
            type: 'DeclarationList',
            loc: this.getLocationFromList(children),
            children: children
        };
    },
    generate: function(node) {
        this.children(node, function(prev) {
            if (prev.type === 'Declaration') {
                this.chunk(';');
            }
        });
    }
};

Version data entries

41 entries across 31 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
optimacms-0.1.61 spec/dummy/node_modules/csso/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.18.0 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.18.2 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.16.1 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.15.2 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.18.4 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.18.1 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.14.0 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.7 node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.6 node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.5 node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.4 node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.3 node_modules/css-tree/lib/syntax/node/DeclarationList.js
isomorfeus-preact-10.5.2 node_modules/css-tree/lib/syntax/node/DeclarationList.js
tang-0.2.1 spec/tang_app/node_modules/csso/node_modules/css-tree/lib/syntax/node/DeclarationList.js
tang-0.2.1 spec/tang_app/node_modules/css-tree/lib/syntax/node/DeclarationList.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/csso/node_modules/css-tree/lib/syntax/node/DeclarationList.js