You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
18 lines
421 B
var NUMBER = require('../../tokenizer').TYPE.Number; |
|
|
|
module.exports = { |
|
name: 'Number', |
|
structure: { |
|
value: String |
|
}, |
|
parse: function() { |
|
return { |
|
type: 'Number', |
|
loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd), |
|
value: this.consume(NUMBER) |
|
}; |
|
}, |
|
generate: function(node) { |
|
this.chunk(node.value); |
|
} |
|
};
|
|
|