| Summary: | Built-in functions should know that they use strict mode | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Geoffrey Garen <ggaren> | ||||||||
| Component: | New Bugs | Assignee: | Geoffrey Garen <ggaren> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | commit-queue, oliver, rniwa | ||||||||
| Priority: | P2 | ||||||||||
| Version: | 528+ (Nightly build) | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Attachments: |
|
||||||||||
|
Description
Geoffrey Garen
2015-03-17 13:14:53 PDT
Created attachment 248863 [details]
Patch
Created attachment 248866 [details]
Patch
Attachment 248866 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/parser/Parser.cpp:210: Wrong number of spaces before statement. (expected: 8) [whitespace/indent] [4]
Total errors found: 1 in 16 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 248866 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=248866&action=review > Source/JavaScriptCore/parser/ParserModes.h:34 > +enum JSParserStrictMode { JSParseNotStrictMode, JSParseStrictMode }; Can we use enum class instead? It makes future find/replace much easier and prevents accidental casts to integral types. > Can we use enum class instead?
OK.
Created attachment 248869 [details]
Patch
Attachment 248869 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/parser/Parser.cpp:210: Wrong number of spaces before statement. (expected: 8) [whitespace/indent] [4]
Total errors found: 1 in 16 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 248866 [details]
Patch
r=me with Ryosuke's suggested fixes (and style issue resolved if valid, though it doesn't look like a valid complaint to me from the diff).
Comment on attachment 248869 [details]
Patch
r=me
Committed r181664: <http://trac.webkit.org/changeset/181664> |