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
399 B
18 lines
399 B
import { Number as NumberToken } from '../../tokenizer/index.js'; |
|
|
|
export const name = 'Number'; |
|
export const structure = { |
|
value: String |
|
}; |
|
|
|
export function parse() { |
|
return { |
|
type: 'Number', |
|
loc: this.getLocation(this.tokenStart, this.tokenEnd), |
|
value: this.consume(NumberToken) |
|
}; |
|
} |
|
|
|
export function generate(node) { |
|
this.token(NumberToken, node.value); |
|
}
|
|
|