-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow VarPath-based assignment for shell cmds
Assignments for shell cmds can currently only be done with raw identifiers e.g. a, b = $!`...` The past few commits have been improving the flexibility here by allow arbitrary collection nesting via key-lookups in assignments. This commit extends that to shell cmd output assignments, so you can now do e.g. a[1][0], b["key"] = $!`...` and it will correctly assign items in the respective collections. This is mostly for consistency around assignment rules.
- Loading branch information
Showing
5 changed files
with
34 additions
and
42 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
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 was deleted.
Oops, something went wrong.