Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grammar expects regex to not end after a #comment with /x #173

Open
dannybrian opened this issue Apr 10, 2019 · 1 comment
Open

grammar expects regex to not end after a #comment with /x #173

dannybrian opened this issue Apr 10, 2019 · 1 comment

Comments

@dannybrian
Copy link

The current comment grammar eats up the slash and flags after a comment when using the x flag:

const re = `/
      # A regular expression for date.
      (?<year>\d{4})-    # year part of a date
      (?<month>\d{2})-   # month part of a date
      (?<day>\d{2})      # day part of a date /x`; //  \/\w* shouldn't get eaten

This yields "SyntaxError: Unexpected end of input". See pull request for fix and changed test to match. Thanks!

@DmitrySoshnikov
Copy link
Owner

@dannybrian, thanks, this might be a good addition. Though we need to consider whether it reflects semantics of a line-comment in existing systems. Usually a line-comment goes until the end of of a string, whatever symbols it contains.

const re `/
  
  ...

  # should this /x`; still be a comment?
  # another comment /x;`

/x`; // and an actual close of regexp

In the first comment,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants