refactor(transformer): pass in symbols and scopes#3978
Merged
graphite-app[bot] merged 1 commit intomainfrom Jun 30, 2024
Merged
refactor(transformer): pass in symbols and scopes#3978graphite-app[bot] merged 1 commit intomainfrom
graphite-app[bot] merged 1 commit intomainfrom
Conversation
Contributor
Your org has enabled the Graphite merge queue for merging into mainAdd the label “merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
Contributor
Merge activity
|
This PR adds a new method `build_with_symbols_and_scopes` to make semantic building optional, there may be prior steps that has the semantic data already built.
e020fcd to
5845057
Compare
CodSpeed Performance ReportMerging #3978 will not alter performanceComparing Summary
|
Merged
Boshen
added a commit
that referenced
this pull request
Jun 30, 2024
## [0.16.2] - 2024-06-30 ### Features - dc6d45e ast,codegen: Add `TSParenthesizedType` and print type parentheses correctly (#3979) (Boshen) - 63f36da parser: Parse modifiers with `parse_modifiers` (take 2) (#3977) (DonIsaac) ### Bug Fixes - dac617d codegen: Print some missing typescript attributes (#3980) (Boshen) - bd1141d isolated-declarations: If declarations is referenced in `declare global` then keep it (#3982) (Dunqing) ### Performance - b234ddd semantic: Only check for jsdoc if jsdoc building is enabled (Boshen) - 1eac3d2 semantic: Use `Atom<'a>` for `Reference`s (#3972) (Don Isaac) - 0c81fbe syntax: Use `NonZeroU32` for `SymbolId` and `ReferenceId` (#3970) (Boshen) ### Refactor - 5845057 transformer: Pass in symbols and scopes (#3978) (Boshen) Co-authored-by: Boshen <[email protected]>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds a new method
build_with_symbols_and_scopesto make semantic building optional, there may be prior steps that has the semantic data already built.