-
-
Notifications
You must be signed in to change notification settings - Fork 788
feat(semantic): add symbol_id for declare function binding
#10078
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
Merged
graphite-app
merged 1 commit into
main
from
03-27-feat_semantic_add_symbol_id_for_declare_function_binding
Mar 29, 2025
Merged
feat(semantic): add symbol_id for declare function binding
#10078
graphite-app
merged 1 commit into
main
from
03-27-feat_semantic_add_symbol_id_for_declare_function_binding
Mar 29, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Mar 27, 2025
Member
Author
CodSpeed Instrumentation Performance ReportMerging #10078 will not alter performanceComparing Summary
|
1c741db to
e81ae1e
Compare
faf8870 to
93aeabc
Compare
Dunqing
commented
Mar 27, 2025
Dunqing
commented
Mar 27, 2025
93aeabc to
ccc8c9d
Compare
c29f055 to
132631b
Compare
ccc8c9d to
ffc5dbc
Compare
132631b to
7116b2c
Compare
ffc5dbc to
a514509
Compare
This was referenced Mar 28, 2025
graphite-app bot
pushed a commit
that referenced
this pull request
Mar 28, 2025
…ion declaration in the block scope (#10074) close: #10050 close: #10051 close: #10055 close: #10056 This PR causes a lot of test262 tests to fail, all are expected. The reason is that the test262 test runner has a little incorrect, see #10057. And also produces a lot of duplicate errors, which will be removed in #10078.
graphite-app bot
pushed a commit
that referenced
this pull request
Mar 28, 2025
…ion declaration in the block scope (#10074) close: #10050 close: #10051 close: #10055 close: #10056 This PR causes a lot of test262 tests to fail, all are expected. The reason is that the test262 test runner has a little incorrect, see #10057. And also produces a lot of duplicate errors, which will be removed in #10078.
graphite-app bot
pushed a commit
that referenced
this pull request
Mar 28, 2025
…ion declaration in the block scope (#10074) close: #10050 close: #10051 close: #10055 close: #10056 This PR causes a lot of test262 tests to fail, all are expected. The reason is that the test262 test runner has a little incorrect, see #10057. And also produces a lot of duplicate errors, which will be removed in #10078.
7116b2c to
5d829c2
Compare
a514509 to
6e5fca2
Compare
6e5fca2 to
268a827
Compare
Contributor
Merge activity
|
268a827 to
84a3490
Compare
This was referenced Apr 1, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-linter
Area - Linter
A-semantic
Area - Semantic
A-transformer
Area - Transformer / Transpiler
C-enhancement
Category - New feature or request
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

part of #7278 and #7951
We had assumed
Semanticadds a symbol id forsymbol_idfield that AST has, butdeclare functionanddeclare classare exceptions, which would cause panicking somewhere. Add symbol id fordeclare functionto fix the factor for panic.