Skip to content
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

Add chapter for Debugging Techniques #11

Merged
merged 3 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
- [Linking Consumers with Providers](consumer-provider-link.md)
- [Provider Delegation](provider-delegation.md)
- [Component Macros](component-macros.md)
- [Check Traits](check-traits.md)
- [Debugging Techniques](debugging-techniques.md)

# Design Patterns

Expand Down
1 change: 0 additions & 1 deletion content/check-traits.md

This file was deleted.

10 changes: 5 additions & 5 deletions content/component-macros.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ where
Ok(serde_json::to_string(context)?)
}
}
#

pub struct ParseFromJsonString;

impl<Context> StringParser<Context> for ParseFromJsonString
Expand Down Expand Up @@ -272,8 +272,8 @@ of context-generic programming in Rust. Without it, programming with CGP would
become too verbose and full of boilerplate code.

On the other hand, the use of `cgp` macros makes CGP code look much more like
programming in a _domain-specific language_ (DSL) than in regular Rust code.
In fact, one can argue that CGP acts as a _language extension_ to the base
programming in a _domain-specific language_ (DSL) than in regular Rust.
In fact, one could argue that CGP acts as a _language extension_ to the base
language Rust, and almost turn into its own programming language.

In a way, implementing CGP in Rust is slightly similar to implementing
Expand All @@ -284,8 +284,8 @@ a core language feature in future programming languages.
Perhaps one day, there might be an equivalent of C++ to replace CGP-on-Rust.
Or perhaps more ideally, the core constructs of CGP would one day directly
supported as a core language feature in Rust.
But until that happens, the `cgp` crate serves as a preview of how
context-generic programming can be done in Rust, and how it can help
But until that happens, the `cgp` crate serves as an experimental ground on
how context-generic programming can be done in Rust, and how it can help
build better Rust applications.

In the chapters that follow, we will make heavy use of `cgp` and its
Expand Down
Loading