• File: CDC.js
  • Full Path: /var/www/imalireports/node_modules/css-tree/lib/syntax/node/CDC.js
  • Date Modified: 11/01/2022 10:15 PM
  • File size: 393 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var CDC = require('../../tokenizer').TYPE.CDC;

module.exports = {
    name: 'CDC',
    structure: [],
    parse: function() {
        var start = this.scanner.tokenStart;

        this.eat(CDC); // -->

        return {
            type: 'CDC',
            loc: this.getLocation(start, this.scanner.tokenStart)
        };
    },
    generate: function() {
        this.chunk('-->');
    }
};