Bug 143427
Summary: | StringConstructor with Symbol fails in DFG | ||
---|---|---|---|
Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> |
Component: | JavaScriptCore | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | fpizlo, ggaren, joepeck, ysuzuki |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | Unspecified | ||
OS: | Unspecified |
Joseph Pecoraro
* SUMMARY
StringConstructor with Symbol fails in DFG
* TEST
jsc> for (var i = 0; i < 10; ++i) { String(Symbol()); }
"Symbol()"
jsc> for (var i = 0; i < 100000; ++i) { String(Symbol()); }
Exception: TypeError: Type error
* EXPECTED
"Symbol()"
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Yusuke Suzuki
Ah! Opened issue :D
*** This bug has been marked as a duplicate of bug 143424 ***
Joseph Pecoraro
Nice!