Bug 123835

Summary: Support iteration of the Arguments object
Product: WebKit Reporter: Oliver Hunt <oliver>
Component: New BugsAssignee: Oliver Hunt <oliver>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, eflews.bot, gyuyoung.kim, rakuco
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch mark.lam: review+

Oliver Hunt
Reported 2013-11-05 16:17:07 PST
Support iteration of the Arguments object
Attachments
Patch (47.65 KB, patch)
2013-11-05 16:26 PST, Oliver Hunt
no flags
Patch (48.46 KB, patch)
2013-11-05 16:40 PST, Oliver Hunt
mark.lam: review+
Oliver Hunt
Comment 1 2013-11-05 16:26:46 PST
EFL EWS Bot
Comment 2 2013-11-05 16:37:48 PST
Oliver Hunt
Comment 3 2013-11-05 16:40:47 PST
Mark Lam
Comment 4 2013-11-06 14:20:51 PST
Comment on attachment 216096 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216096&action=review r=me with comments addressed. > Source/JavaScriptCore/runtime/CommonIdentifiers.h:31 > macro(Array) \ > + macro(ArgumentsIterator) \ Sort ArgumentsIterator before Array. > LayoutTests/js/script-tests/arguments-iterator.js:57 > +function testStrict() { > + var i = 0; > + for (arg of arguments) { > + realArg = arguments[i++]; > + shouldBeTrue("arg === realArg"); > + } > + iteratedArgumentsLength = i; > + actualArgumentsLength = arguments.length; > + shouldBe("actualArgumentsLength", "iteratedArgumentsLength"); > +} > + > +testStrict(); > +testStrict("a"); > +testStrict("a", "b"); > +testStrict({}) What makes this test case "strict"? It looks the identical to the non-strict "test()" test case above.
Oliver Hunt
Comment 5 2013-11-06 14:36:06 PST
Note You need to log in before you can comment on or make changes to this bug.