-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: track reference origin nullability (#129)
Allows emitting optional-chained references when the origin is conditional, so as to avoid the TypeScript compiler complaining about possibly null dereference.
- Loading branch information
1 parent
169a091
commit dd830eb
Showing
10 changed files
with
119 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
coverage: | ||
precision: 1 | ||
round: nearest | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 2% # Allow coverage to drop slightly | ||
removed_code_behavior: adjust_base | ||
patch: | ||
default: | ||
target: auto | ||
threshold: 5% # Allow coverage to drop slightly | ||
removed_code_behavior: adjust_base | ||
|
||
comment: | ||
layout: header, components, diff, files, footer | ||
behavior: new | ||
|
||
component_management: | ||
individual_components: | ||
- component_id: parser | ||
name: Parser | ||
paths: | ||
- src/parser/** | ||
- component_id: ir | ||
name: Intermediate Representation | ||
paths: | ||
- src/ir/** | ||
- component_id: synthesizer | ||
name: Synthesizers | ||
paths: | ||
- src/synthesizer/** | ||
- component_id: other | ||
name: Other | ||
paths: | ||
- src/errors/** | ||
- src/integrations/** | ||
- src/primitives/** | ||
- src/specification/** | ||
- src/*.rs |
This file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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 file contains 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