RESOLVED FIXED 134007
Web Inspector: JS PrettyPrinting unary - and + issues
https://bugs.webkit.org/show_bug.cgi?id=134007
Summary Web Inspector: JS PrettyPrinting unary - and + issues
Joseph Pecoraro
Reported 2014-06-17 17:02:56 PDT
TEST: f(-1); x = -1 + 1; f(+1); x = +1 + 1; OUTPUT: f( - 1); x = - 1 + 1; f( + 1); x = + 1 + 1; EXPECTED: f(-1); x = -1 + 1; f(+1); x = +1 + 1;
Attachments
[PATCH] Proposed Fix (9.55 KB, patch)
2016-02-03 16:16 PST, Joseph Pecoraro
timothy: review+
buildbot: commit-queue-
[PATCH] For Landing (9.51 KB, patch)
2016-02-03 16:23 PST, Joseph Pecoraro
buildbot: commit-queue-
Archive of layout-test-results from ews117 for mac-yosemite (794.20 KB, application/zip)
2016-02-03 17:12 PST, Build Bot
no flags
Archive of layout-test-results from ews114 for mac-yosemite (796.27 KB, application/zip)
2016-02-03 17:17 PST, Build Bot
no flags
Joseph Pecoraro
Comment 1 2014-06-17 17:04:15 PDT
In fact, this produces even worse results: f(-1); x=-1+1; f(+1); x=+1+1; Namely that "=-" and "=+" are treated as operators. That is CodeMirror's tokenization, maybe that should be improved.
Radar WebKit Bug Importer
Comment 2 2014-06-17 17:04:49 PDT
Radar WebKit Bug Importer
Comment 3 2014-06-17 17:05:23 PDT
Joseph Pecoraro
Comment 4 2016-02-03 16:04:22 PST
*** Bug 153830 has been marked as a duplicate of this bug. ***
Joseph Pecoraro
Comment 5 2016-02-03 16:16:04 PST
Created attachment 270606 [details] [PATCH] Proposed Fix
Joseph Pecoraro
Comment 6 2016-02-03 16:18:15 PST
This also fixed an issue with '%' (modulo) operator and ternary in array / property index '[' ']' scopes.
Joseph Pecoraro
Comment 7 2016-02-03 16:23:48 PST
Created attachment 270608 [details] [PATCH] For Landing
WebKit Commit Bot
Comment 8 2016-02-03 16:56:27 PST
Comment on attachment 270608 [details] [PATCH] For Landing Clearing flags on attachment: 270608 Committed r196098: <http://trac.webkit.org/changeset/196098>
Build Bot
Comment 9 2016-02-03 17:12:06 PST
Comment on attachment 270606 [details] [PATCH] Proposed Fix Attachment 270606 [details] did not pass mac-debug-ews (mac): Output: http://webkit-queues.webkit.org/results/779118 New failing tests: imported/w3c/web-platform-tests/streams-api/readable-streams/garbage-collection-2.html
Build Bot
Comment 10 2016-02-03 17:12:08 PST
Created attachment 270613 [details] Archive of layout-test-results from ews117 for mac-yosemite The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews117 Port: mac-yosemite Platform: Mac OS X 10.10.5
Build Bot
Comment 11 2016-02-03 17:17:28 PST
Comment on attachment 270608 [details] [PATCH] For Landing Attachment 270608 [details] did not pass mac-debug-ews (mac): Output: http://webkit-queues.webkit.org/results/779144 New failing tests: imported/w3c/web-platform-tests/streams-api/readable-streams/garbage-collection-2.html
Build Bot
Comment 12 2016-02-03 17:17:31 PST
Created attachment 270615 [details] Archive of layout-test-results from ews114 for mac-yosemite The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews114 Port: mac-yosemite Platform: Mac OS X 10.10.5
Note You need to log in before you can comment on or make changes to this bug.