We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The "fn_name() {" regex /\b(?!(?:if|for|switch|while|with|catch)\b)(?:(?:static)\s+)?(\S+)\s*(.?)\s{/ should match code like "fn_name() { stuff"
The regex matches this code if (a) { foo(); } else if (b) { bar(); } Falsely indicating that foo wraps bar.
Should be easy to reproduce with a new unit test.
Producing un-minifed stack-traces
I'm not familiar with this notation. Suggest removing this regex from the list.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
The "fn_name() {" regex
/\b(?!(?:if|for|switch|while|with|catch)\b)(?:(?:static)\s+)?(\S+)\s*(.?)\s{/
should match code like
"fn_name() { stuff"
Current Behavior
The regex matches this code
if (a) { foo(); } else if (b) { bar(); }
Falsely indicating that foo wraps bar.
Steps to Reproduce (for bugs)
Should be easy to reproduce with a new unit test.
Context
Producing un-minifed stack-traces
Your Environment
Possible Solution
I'm not familiar with this notation. Suggest removing this regex from the list.
The text was updated successfully, but these errors were encountered: