first commit
This commit is contained in:
18
app_vue/node_modules/css-tree/lib/syntax/node/String.js
generated
vendored
Normal file
18
app_vue/node_modules/css-tree/lib/syntax/node/String.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user