-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vec accesses and HashMap accesses and the governing `RenderableAccess` trait now live in a dedicated module, moved out from field access. Field specific access configs have been changed to just access configs. Exports now also render vec accesses via the `RenderableAccess` functions instead of using vec access render directly. * rid-macro: cleaning vec access in hash map - stuck around from previous implementation - no longer needed as hash map uses `rid::export` for keys * rid-macro: moving access code to separate module and use for export - accesses lived as part of field access, but they are used for MethodReturn (function exports) as well - function exports used `vec` access render directly, that's been changed to use the access trait render methods like is done for fields
- Loading branch information
Showing
26 changed files
with
174 additions
and
248 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
File renamed without changes.
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,9 @@ | ||
mod access; | ||
mod hash_map; | ||
mod render_collection_accesses; | ||
mod vec; | ||
|
||
pub use access::*; | ||
pub use hash_map::*; | ||
pub use render_collection_accesses::*; | ||
pub use vec::*; |
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.