source: imaps-frontend/node_modules/css-tree/lib/syntax/node/Identifier.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 441 bytes
Line 
1var TYPE = require('../../tokenizer').TYPE;
2
3var IDENT = TYPE.Ident;
4
5module.exports = {
6 name: 'Identifier',
7 structure: {
8 name: String
9 },
10 parse: function() {
11 return {
12 type: 'Identifier',
13 loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd),
14 name: this.consume(IDENT)
15 };
16 },
17 generate: function(node) {
18 this.chunk(node.name);
19 }
20};
Note: See TracBrowser for help on using the repository browser.