| Summary: | Calling super() in a base class results in a crash | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Ryosuke Niwa <rniwa> | ||||||
| Component: | JavaScriptCore | Assignee: | Ryosuke Niwa <rniwa> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | barraclough, benjamin, commit-queue, fpizlo, ggaren | ||||||
| Priority: | P2 | ||||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=215413 | ||||||||
| Bug Depends on: | |||||||||
| Bug Blocks: | 140491 | ||||||||
| Attachments: |
|
||||||||
Created attachment 248391 [details]
Fixes the crash
Attachment 248391 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/parser/Parser.h:378: Please declare enum bitfields as unsigned integral types. [runtime/enum_bitfields] [5]
Total errors found: 1 in 6 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Created attachment 248392 [details]
Fixed a typo
Attachment 248392 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/parser/Parser.h:378: Please declare enum bitfields as unsigned integral types. [runtime/enum_bitfields] [5]
Total errors found: 1 in 6 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 248392 [details] Fixed a typo Clearing flags on attachment: 248392 Committed r181404: <http://trac.webkit.org/changeset/181404> All reviewed patches have been landed. Closing bug. |
class { constructor() { super() } } results in a crash.