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.
27 lines
543 B
27 lines
543 B
import { WhiteSpace } from '../../tokenizer/index.js'; |
|
|
|
const SPACE = Object.freeze({ |
|
type: 'WhiteSpace', |
|
loc: null, |
|
value: ' ' |
|
}); |
|
|
|
export const name = 'WhiteSpace'; |
|
export const structure = { |
|
value: String |
|
}; |
|
|
|
export function parse() { |
|
this.eat(WhiteSpace); |
|
return SPACE; |
|
|
|
// return { |
|
// type: 'WhiteSpace', |
|
// loc: this.getLocation(this.tokenStart, this.tokenEnd), |
|
// value: this.consume(WHITESPACE) |
|
// }; |
|
} |
|
|
|
export function generate(node) { |
|
this.token(WhiteSpace, node.value); |
|
}
|
|
|