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.
Fixes #51
Breaking: The rules for transforming chains were simplified.
Before, there was the two-arg block syntax (this was the only syntax originally):
the inline syntax:
@chain x y z
and the one-arg block syntax:
All of these are now a single syntax, derived from the rule that any
begin ... end
block in the inline syntax is flattened into its lines.This means that you can also use multiple
begin ... end
blocks, and they can be in any position, which can be nice for interactive development of a chain in the REPL.This is only breaking if you were using a
begin ... end
block in the inline syntax at argument 3 or higher, but you also had to be using an underscore without chaining in that begin block, which is deemed quite unlikely given the intended use of the package.All "normal" usage of the
@chain
macro should work as it did before.As another consequence of the refactor, chains now do not error anymore for a single argument form
@chain x
but simply returnx
.