| DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/css-tree/lib/syntax/node/ |
| Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/css-tree/lib/syntax/node/String.js |
var STRING = require('../../tokenizer').TYPE.String;
module.exports = {
name: 'String',
structure: {
value: String
},
parse: function() {
return {
type: 'String',
loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd),
value: this.consume(STRING)
};
},
generate: function(node) {
this.chunk(node.value);
}
};
|