dir.js 135 B

1234567
  1. module.exports = {
  2. parse: function() {
  3. return this.createSingleNodeList(
  4. this.Identifier()
  5. );
  6. }
  7. };