History | Log In     View a printable version of the current page.  
Issue Details (XML)

Key: ASC-1858
Type: Bug Bug
Status: Closed Closed
Resolution: Not a Bug
Priority: B B
Assignee: wsharp
Reporter: vfleisch
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
ActionScript Compiler (ASC)

Wildcard attribute accessor returns namespace attributes

Created: 12/03/04 06:09 PM   Updated: 12/06/04 11:58 AM
Component/s: E4X
Security Level: Public (All JIRA Users )

Severity: Incorrectly Functioning
Reproducibility: Every Time
Found in Version: Flash 8.0 - A5 Complete - AVMPLUS_1_0_0_d143
Affected OS(s): All OS Platforms - All
Steps to Reproduce:
Reproduction:

Test case: Expressions/e11_1_1.as

1.
var ns = new Namespace("foo");
var y = <y xmlns:ns="foo" a="10" b="20" ns:c="30" ns:d="40"/>;
print(y.@*); // includes ns:c and ns:d

Actual Results: Prints 10203040.

Expected Results: Prints 1020. (Rhino does.)

Workaround:
        

        
Language Found: English
Bugbase Id: 108483
Needs Release Note: No
Triaged: Yes
Regression: No
QA Owner: vfleisch
Resolved by: wsharp
Fixed Version: Flash 8.0 - A5 Complete - AVMPLUS_1_0_0_d146
Participants: BugDB Migration, JIRA Migration Admin, vfleisch and wsharp


 All   Comments      Sort Order:
JIRA Migration Admin - [06/04/07 12:29 PM ]
Move from BugDB issue number 108483

JIRA Migration Admin - [06/04/07 12:29 PM ]
Milestone ID = 767
Milestone = Flash 8.0 - A5 Complete
Build ID = 10202
Build = AVMPLUS_1_0_0_d143
Fix Build ID = 10232
Fix Build = AVMPLUS_1_0_0_d146

BugDB Migration - [06/04/07 12:29 PM ]
[vfleisch 12/3/04] Entered Bug.
[vfleisch 12/3/04] Opened to Werner.
[wsharp 12/6/04] This is a bug in Rhino and not our implementation. A nonqualified wildcard property access will return both qualified and non-qualified terms. This works for both x.* and x.@* access. (regular and attribute access)
[vfleisch 12/6/04] Okay.