-
Hey, when I was looking at oxc code and writing lint, I realized why there wasn't a design like eslint visitor pattern. For no-this-before-super, it was tedious to implement that I needed to store the call stack. |
Beta Was this translation helpful? Give feedback.
Answered by
Boshen
Nov 7, 2023
Replies: 2 comments 1 reply
-
no-this-before-super requires a control flow graph, which we don't have yet. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
suxin2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
no-this-before-super requires a control flow graph, which we don't have yet.