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

path! doesn't select string! from block!. #938

Closed
WiseGenius opened this issue Sep 21, 2014 · 3 comments
Closed

path! doesn't select string! from block!. #938

WiseGenius opened this issue Sep 21, 2014 · 3 comments
Assignees
Labels
status.built A change in codebase has been done to address the ticket. status.tested The change in code has been manually tested and verified to fix the issue. type.review Ticket describes a possible improvement.
Milestone

Comments

@WiseGenius
Copy link
Contributor

path! doesn't select string! from block!.

red>> b: [x y "x" "y"]
== [x y "x" "y"]
red>> b/('x)
== y
red>> b/("x")
*** Error: invalid value in path!
@dockimbel dockimbel added Red status.reviewed Ticket has been reviewed and accepted for further processing. status.resolved Issue has been resolved without a change in the source code (should be elaborated in comments). type.review Ticket describes a possible improvement. and removed status.resolved Issue has been resolved without a change in the source code (should be elaborated in comments). labels Sep 21, 2014
@dockimbel
Copy link
Member

Support for SELECTing strings is not yet implemented.

dockimbel added a commit that referenced this issue Mar 11, 2015
FIX: issue #938 and #939 (path! doesn't select char! from block)
@WiseGenius
Copy link
Contributor Author

As expected, Red 0.5.1 now gives:

red>> b: [x y "x" "y"]
== [x y "x" "y"]
red>> b/('x)
== y
red>> b/x
== y
red>> b/("x")
== "y"

The compiler seems to be working too.
Should this issue now be closed?

@dockimbel
Copy link
Member

Yes, forgot to close it, thanks for the reminder.

@dockimbel dockimbel added status.built A change in codebase has been done to address the ticket. status.tested The change in code has been manually tested and verified to fix the issue. and removed status.reviewed Ticket has been reviewed and accepted for further processing. labels Mar 15, 2015
@dockimbel dockimbel added this to the 0.5.1 milestone Mar 15, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status.built A change in codebase has been done to address the ticket. status.tested The change in code has been manually tested and verified to fix the issue. type.review Ticket describes a possible improvement.
Projects
None yet
Development

No branches or pull requests

3 participants