-
-
Notifications
You must be signed in to change notification settings - Fork 72
feat: More comprehensive tracking of possible side effects #2695
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
Open
cieplypolar
wants to merge
25
commits into
main
Choose a base branch
from
fix/possible-side-effects-flow
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 19 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
fed3aa2
fix: improve runtime ternary support by refining side-effect detection
pullfrog[bot] 89e4f5d
fix: improve runtime ternary support by refining side-effect detection
pullfrog[bot] 59ebd23
style: apply oxfmt formatting
pullfrog[bot] faee545
fix: add sideEffects prop to dualImpl for correct side-effect tracking
pullfrog[bot] 5bc6920
make sideEffects required in DualImplOptions
pullfrog[bot] 6538f87
chore: merge ternaryRuntime tests into ternaryOperator.test.ts
pullfrog[bot] 0d6d656
chore: address review feedback — use snip param for side-effects, fix…
pullfrog[bot] 3b6467e
fix: user-defined functions should assume side-effects are possible
pullfrog[bot] c797858
Merge branch 'main' into pullfrog/2587-improve-ternary-side-effect-de…
cieplypolar 2dca023
chore: clarify docs for sideEffects and possibleSideEffects
pullfrog[bot] 96cd096
work
cieplypolar 8660054
work + tests + docs
cieplypolar e9c7882
test fix
cieplypolar 5c29027
docs update
cieplypolar a878f01
Merge branch 'main' into fix/possible-side-effects-flow
cieplypolar bbb2dfc
final polish
cieplypolar 6d5ee16
relict of pullfrog
cieplypolar 731cb19
review changes
cieplypolar 1bc02b3
more pull frog relicts
cieplypolar c6ee8ec
accessor dualFn test
cieplypolar ad575e8
review changes
cieplypolar 81a30b1
oxlint
cieplypolar b58883a
Merge branch 'main' into fix/possible-side-effects-flow
cieplypolar f62da06
Merge branch 'main' into fix/possible-side-effects-flow
cieplypolar df3997a
review changes
cieplypolar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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 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 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 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 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 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 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 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 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -77,7 +77,7 @@ export const _ref = (() => { | |
| if (isPtr(value.dataType)) { | ||
| // This can happen if we take a reference of an *implicit* pointer, one | ||
| // made by assigning a reference to a `const`. | ||
| return snip(value.value, explicitFrom(value.dataType), value.origin); | ||
| return snip(value.value, explicitFrom(value.dataType), value.origin, false); | ||
| } | ||
|
|
||
| /** | ||
|
|
@@ -90,7 +90,12 @@ export const _ref = (() => { | |
| * ``` | ||
| */ | ||
| const ptrType = createPtrFromOrigin(value.origin, value.dataType as StorableData); | ||
| return snip(new RefOperator(value, ptrType), ptrType ?? UnknownData, /* origin */ 'runtime'); | ||
| return snip( | ||
| new RefOperator(value, ptrType), | ||
| ptrType ?? UnknownData, | ||
| /* origin */ 'runtime', | ||
| value.possibleSideEffects, | ||
| ); | ||
| }, | ||
| }; | ||
|
|
||
|
|
@@ -175,14 +180,14 @@ export class RefOperator implements SelfResolvable { | |
| if (!this.#ptrType) { | ||
| throw new Error(stitch`Cannot take a reference of ${this.snippet}`); | ||
| } | ||
| return snip(this, this.#ptrType, this.snippet.origin); | ||
| return snip(this, this.#ptrType, this.snippet.origin, this.snippet.possibleSideEffects); | ||
| } | ||
|
|
||
| [$resolve](): ResolvedSnippet { | ||
| if (!this.#ptrType) { | ||
| throw new Error(stitch`Cannot take a reference of ${this.snippet}`); | ||
| } | ||
| return snip(stitch`(&${this.snippet})`, this.#ptrType, this.snippet.origin); | ||
| return snip(stitch`(&${this.snippet})`, this.#ptrType, this.snippet.origin, false); | ||
|
cieplypolar marked this conversation as resolved.
Outdated
|
||
| } | ||
| } | ||
|
|
||
|
|
@@ -194,8 +199,13 @@ export function derefSnippet(snippet: Snippet): Snippet { | |
| const innerType = snippet.dataType.inner; | ||
|
|
||
| if (snippet.value instanceof RefOperator) { | ||
| return snip(stitch`${snippet.value.snippet}`, innerType, snippet.origin); | ||
| return snip( | ||
| stitch`${snippet.value.snippet}`, | ||
| innerType, | ||
| snippet.origin, | ||
| snippet.value.snippet.possibleSideEffects, | ||
| ); | ||
| } | ||
|
|
||
| return snip(stitch`(*${snippet})`, innerType, snippet.origin); | ||
| return snip(stitch`(*${snippet})`, innerType, snippet.origin, false); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this always an identifier? why not repeat the snippet possibleSideEffects?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe it is not let ptr = *(&(array[impureInt()])) |
||
| } | ||
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 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 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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.