-
Notifications
You must be signed in to change notification settings - Fork 213
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
Derived class caching #7429
Open
christophermlawson
wants to merge
10
commits into
master
Choose a base branch
from
derived-class-caching
base: master
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
Derived class caching #7429
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
3b6bd67
Derived class caching
christophermlawson 1ca352c
change log and api extract
christophermlawson 5c2b545
Merge branch 'master' into derived-class-caching
christophermlawson b453744
Merge branch 'master' into derived-class-caching
christophermlawson 167bf2e
Merge branch 'master' into derived-class-caching
christophermlawson acbd85e
Merge branch 'master' into derived-class-caching
christophermlawson 7b320d3
Merge branch 'derived-class-caching' of https://github.com/iTwin/itwi…
christophermlawson cca0819
PR updates
christophermlawson 90ea87e
Merge branch 'master' into derived-class-caching
christophermlawson c9dab88
rush extract
christophermlawson 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
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
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
10 changes: 10 additions & 0 deletions
10
common/changes/@itwin/ecschema-editing/derived-class-caching_2024-11-26-13-11.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@itwin/ecschema-editing", | ||
"comment": "Replaced ECClass.baseClass setter with setBaseClass method due to underlying changes in the ecschema-metadata package.", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@itwin/ecschema-editing" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@itwin/ecschema-metadata/derived-class-caching_2024-11-26-13-11.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@itwin/ecschema-metadata", | ||
"comment": "ECClass.baseClass setter has been replaced with setBaseClass method to enable derived class caching support.", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@itwin/ecschema-metadata" | ||
} |
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
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.
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.
why is a double cast necessary? especially given you already have the definitely assigned operator, which together makes this about the least type safe typescript way to accomplish what you seem to want to do 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.
I know it looks odd, but it has to do with our Mutable classes, which do not derive from each other but from the class they 'mutating'. A RelationshipClass cannot be cast to a MutableClass directly, because they have no direct relationship. We have a MutableRelationshipClass but we can't use it because it does not derive from MutableClass, and we are trying to access members of MutableClass in this instance). We discussed this and there might be some TS trickery we can do to make the mutable classes more usable, but for now, this is what we have. The mutable classes are strictly internal and are not used outside the package.