REBOL3 tracker
  0.9.12 beta
Ticket #0001817 User: anonymous

Project:



rss
TypeBug Statuscomplete Date10-Jan-2011 15:07
Versionalpha 110 CategoryNative Submitted byLadislav
PlatformAll Severityminor Prioritynormal

Summary Set-path evaluation problem
Description The code below (a "complicated" set-path) does not work as expected
Example code
>> a: make map! []
== make map! [
]

>> a/b: make object! [c: make map! []]
== make object! [
    c: make map! [
    ]
]

>> a
== make map! [
    b make object! [
        c: make map! [
        ]
    ]
]

>> a/b/c/d: 1
** Script error: cannot access b in path a/b/c/d:

>> a
== make map! [
    b 1
]

Assigned ton/a Fixed inalpha 111 Last Update26-Feb-2011 01:18


Comments
(0003003)
Ladislav
11-Jan-2011 12:18

in the core-tests suite

Date User Field Action Change
26-Feb-2011 01:18 BrianH Category Modified Unspecified => Native
26-Feb-2011 01:18 BrianH Status Modified built => complete
31-Jan-2011 00:59 carl Fixedin Modified => alpha 111
31-Jan-2011 00:59 carl Status Modified reviewed => built
17-Jan-2011 04:23 carl Status Modified submitted => reviewed
11-Jan-2011 12:18 Ladislav Comment : 0003003 Added -
10-Jan-2011 21:15 BrianH Code Modified -
10-Jan-2011 21:13 BrianH Code Modified -
10-Jan-2011 21:13 BrianH Version Modified alpha 111 => alpha 110
10-Jan-2011 15:07 Ladislav Ticket Added -