Files
2023-11-25 18:12:47 -05:00

8 lines
135 B
JavaScript

module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};