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.
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
Support uses of BACK that cause correlated references: setup decorrelation handling #251
Support uses of BACK that cause correlated references: setup decorrelation handling #251
Changes from 139 commits
deeb914
5d6c513
170492e
8b8c098
cb83f1f
ef39e6e
3c79543
3db13d1
8dc17b3
044c217
0252cee
98c722b
aa86d31
b03a5ec
b569bfb
7607fea
215735b
0b8e1fb
a5190f8
a0d43f3
24c1e4a
8009e05
5d87b59
a3ee536
9945752
4c6aa79
e60dcc3
a23c395
2515683
d34c64c
cd59dc2
92778e3
6003ed0
fb86e3a
ca6b653
22dfb32
e550ae4
f7af1a9
3e0b62c
6a66c5f
19cfd47
acba2c6
3f0b703
fb25054
eb81179
0f5df29
9752b92
223c1b5
7b142eb
947d405
df7e1b0
3f167a4
09f2bfe
30536e8
261f869
d5b315e
3794707
c04f34d
39ce2ac
28065c0
d88192f
fed91e5
7d9492d
2ef58e3
b904f3a
7f69536
fb19842
d1ffdb5
91e2a74
8b9db1e
2c29a3d
e8b0cdb
a5d8c1f
836adca
9c72887
49f46d8
81d130e
60fea67
9980a2c
4c54d57
7a3fd30
b519cd0
4033936
c2bbb59
8fcc609
8a8e49f
4eeadd9
9427cce
397f40d
71ca0e2
719eec5
2289aaf
52c2af5
19b3628
600616e
b6c9b85
afd241b
ceff105
64311bc
26b21a2
8d6878f
06dd69f
6949cdd
7afe8ad
8184a7e
318eb1b
45fea5b
7bb353f
0cf4c11
3a1516e
746eed5
4818c59
17116d4
9ab9bed
a8f6535
cf8cc50
7556b5e
37ebdb4
8ff5157
9191ec4
9bc3564
67a342e
bb24b30
8f83903
b096443
e9f2606
9772f61
ec93596
0a00cea
d1e1520
fd37df1
a75bba5
8d75668
2cfe999
5a55ac5
ad61d27
07d771d
ba095ec
7ef0476
c83b67e
fdbf909
ec77c0d
a5531e3
4becac1
c4af826
f44ba0e
11ac86d
2105bc8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need a default "case _:" here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No because these are exhaustive with regards to the enum. If any new case is generated, mypy will throw an exception because these branches are no longer exhaustive. So here, we can rely on mypy tooling to ensure quality.