Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Issue 11973018: Improve decoding of JS TypeError. (Closed)

Created:
7 years, 11 months ago by ahe
Modified:
7 years, 5 months ago
Reviewers:
kasperl, sra1, ngeoffray
CC:
reviews_dartlang.org, bakster
Visibility:
Public.

Description

Patch Set 1 : #

Total comments: 12

Patch Set 2 : Rebased #

Patch Set 3 : Nicified #

Patch Set 4 : Add more patterns for possible optimizations #

Patch Set 5 : Fix problems discovered during testing #

Total comments: 37

Patch Set 6 : Merged with r25254 #

Patch Set 7 : Tested on all modern browsers #

Patch Set 8 : Update status files #

Total comments: 8

Patch Set 9 : Address comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+508 lines, -47 lines) Patch
M dart/sdk/lib/_internal/lib/js_helper.dart View 1 2 3 4 5 6 7 8 2 chunks +446 lines, -43 lines 0 comments Download
M dart/sdk/lib/_internal/lib/string_helper.dart View 1 2 3 4 5 2 chunks +3 lines, -1 line 0 comments Download
M dart/tests/compiler/dart2js_native/dart2js_native.status View 1 2 3 4 5 6 7 1 chunk +0 lines, -1 line 0 comments Download
M dart/tests/compiler/dart2js_native/native_null_closure_frog_test.dart View 1 2 3 4 5 3 chunks +6 lines, -2 lines 0 comments Download
A dart/tests/compiler/dart2js_native/type_error_decode_test.dart View 1 2 3 4 5 6 7 8 1 chunk +52 lines, -0 lines 0 comments Download
M dart/tests/language/language_dart2js.status View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
ahe
I'd like you initial reaction to my changes to unwrapException in js_helper.dart. Before, V8 version ...
7 years, 11 months ago (2013-01-17 01:08:05 UTC) #1
kasperl
I like the better error messages a lot! https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart File dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart#newcode966 dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart:966: static ...
7 years, 11 months ago (2013-01-21 13:54:08 UTC) #2
ahe
PTAL
7 years, 10 months ago (2013-01-29 12:45:36 UTC) #3
kasperl
LGTM -- much, much easier to grok now. Is it possibly to test this separately ...
7 years, 10 months ago (2013-01-29 12:57:20 UTC) #4
ahe
On 2013/01/29 12:57:20, kasperl wrote: > LGTM -- much, much easier to grok now. Is ...
7 years, 10 months ago (2013-01-29 13:03:37 UTC) #5
ahe
On 2013/01/29 13:03:37, ahe wrote: > On 2013/01/29 12:57:20, kasperl wrote: > > LGTM -- ...
7 years, 10 months ago (2013-01-29 13:03:51 UTC) #6
ahe
PTAL. Turns out the world was slightly more complicated. See patch sets 4 and 5. ...
7 years, 10 months ago (2013-01-29 19:54:03 UTC) #7
sra1
lgtm https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart File dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart#newcode966 dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart:966: static final noSuchMethodPattern = On 2013/01/21 13:54:09, kasperl ...
7 years, 10 months ago (2013-01-29 20:54:16 UTC) #8
ngeoffray
This is very nice! I'm confused about the string buffer -> string interpolation changes though. ...
7 years, 10 months ago (2013-01-29 20:59:54 UTC) #9
ahe
https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart File dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/2001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart#newcode966 dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart:966: static final noSuchMethodPattern = On 2013/01/29 20:54:16, sra1 wrote: ...
7 years, 10 months ago (2013-01-29 22:06:46 UTC) #10
ngeoffray
https://codereview.chromium.org/11973018/diff/14001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart File dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/14001/dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart#newcode487 dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart:487: String selectorName = ''; On 2013/01/29 22:06:46, ahe wrote: ...
7 years, 10 months ago (2013-01-30 08:48:13 UTC) #11
ahe
Note to self: Make sure to test for https://code.google.com/p/dart/issues/detail?id=3240 as well.
7 years, 10 months ago (2013-02-04 11:22:02 UTC) #12
ahe
PTAL. Tested on: Mac Chrome 30.0.1570.0 canary. Mac Chrome 29.0.1547.22 beta Mac Firefox 22.0 Mac ...
7 years, 5 months ago (2013-07-20 16:21:12 UTC) #13
ngeoffray
LGTM! https://codereview.chromium.org/11973018/diff/30001/dart/sdk/lib/_internal/lib/js_helper.dart File dart/sdk/lib/_internal/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/30001/dart/sdk/lib/_internal/lib/js_helper.dart#newcode1005 dart/sdk/lib/_internal/lib/js_helper.dart:1005: // This function is carefully created to maximize ...
7 years, 5 months ago (2013-07-22 09:08:56 UTC) #14
ahe
Thank you, Nicolas. https://codereview.chromium.org/11973018/diff/30001/dart/sdk/lib/_internal/lib/js_helper.dart File dart/sdk/lib/_internal/lib/js_helper.dart (right): https://codereview.chromium.org/11973018/diff/30001/dart/sdk/lib/_internal/lib/js_helper.dart#newcode1005 dart/sdk/lib/_internal/lib/js_helper.dart:1005: // This function is carefully created ...
7 years, 5 months ago (2013-07-22 10:45:27 UTC) #15
ahe
7 years, 5 months ago (2013-07-22 10:47:39 UTC) #16
Message was sent while issue was closed.
Committed patchset #9 manually as r25262 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698