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

Issue 1486473002: Convert dart_utils.js to input_sdk/lib/_internal/utils.dart (#310) (Closed)

Created:
5 years ago by ochafik
Modified:
5 years ago
Reviewers:
vsm, Jennifer Messerly
CC:
dev-compiler+reviews_dartlang.org
Base URL:
git@github.com:dart-lang/dev_compiler.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Convert dart_utils.js to input_sdk/lib/_internal/utils.dart (#310) BUG= R=jmesserly@google.com, vsm@google.com Committed: https://github.com/dart-lang/dev_compiler/commit/d91add0d8490bbb59f72fe676fe70cfeedcd1e91

Patch Set 1 #

Patch Set 2 : Special-case dart:_utils imports #

Patch Set 3 : Define helpers as functions, simplify their pattern in js_codegen #

Patch Set 4 : #

Total comments: 17

Patch Set 5 : Safer args / simplification for JS intrinsics & other comments addressed #

Total comments: 2

Patch Set 6 : Left const errors as a todo #

Patch Set 7 : Rebased #

Unified diffs Side-by-side diffs Delta from patch set Stats (+295 lines, -237 lines) Patch
M lib/runtime/dart/_classes.js View 1 chunk +3 lines, -2 lines 0 comments Download
M lib/runtime/dart/_operations.js View 1 2 3 4 2 chunks +2 lines, -1 line 0 comments Download
M lib/runtime/dart/_rtti.js View 1 chunk +2 lines, -1 line 0 comments Download
M lib/runtime/dart/_runtime.js View 3 chunks +3 lines, -2 lines 0 comments Download
M lib/runtime/dart/_types.js View 2 chunks +5 lines, -4 lines 0 comments Download
A + lib/runtime/dart/_utils.js View 1 2 3 4 3 chunks +40 lines, -67 lines 0 comments Download
M lib/runtime/dart_library.js View 4 chunks +8 lines, -3 lines 0 comments Download
D lib/runtime/dart_utils.js View 1 chunk +0 lines, -133 lines 0 comments Download
M lib/src/codegen/js_codegen.dart View 1 2 3 4 8 chunks +79 lines, -12 lines 0 comments Download
M lib/src/compiler.dart View 1 chunk +1 line, -1 line 0 comments Download
M lib/src/runner/runtime_utils.dart View 1 chunk +1 line, -1 line 0 comments Download
M pubspec.yaml View 1 chunk +1 line, -1 line 0 comments Download
M test/browser/runtime_tests.js View 1 chunk +1 line, -0 lines 0 comments Download
M test/codegen/expect/collection/src/unmodifiable_wrappers.js View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/collection/wrappers.js View 1 2 3 4 1 chunk +2 lines, -2 lines 0 comments Download
M test/codegen/expect/dir/html_input_b.js View 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/html_input.html View 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/js/js.js View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/sunflower/sunflower.html View 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/unittest.js View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M test/codegen/expect/unittest/unittest.js View 1 2 3 4 1 chunk +1 line, -1 line 0 comments Download
M tool/input_sdk/lib/_internal/libraries.dart View 1 chunk +6 lines, -0 lines 0 comments Download
M tool/input_sdk/private/js_primitives.dart View 1 2 3 4 1 chunk +5 lines, -0 lines 0 comments Download
A tool/input_sdk/private/utils.dart View 1 2 3 4 5 1 chunk +123 lines, -0 lines 0 comments Download
M tool/sdk_expected_errors.txt View 1 2 3 4 5 1 chunk +6 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (2 generated)
ochafik
Notes: - dart_utils is now just another module (its imports are special-cased to not import ...
5 years ago (2015-11-29 14:38:10 UTC) #2
Jennifer Messerly
On 2015/11/29 14:38:10, ochafik wrote: > Notes: > - dart_utils is now just another module ...
5 years ago (2015-11-30 16:49:47 UTC) #3
vsm
lgtm https://codereview.chromium.org/1486473002/diff/60001/lib/runtime/dart/_internal.js File lib/runtime/dart/_internal.js (right): https://codereview.chromium.org/1486473002/diff/60001/lib/runtime/dart/_internal.js#newcode623 lib/runtime/dart/_internal.js:623: return new (ExpandIterator$(S, T))(this[_iterable][dartx.iterator], dart.as(this[_f], __CastType0$(S, T))); Do ...
5 years ago (2015-11-30 16:50:06 UTC) #4
Jennifer Messerly
On 2015/11/30 16:50:06, vsm wrote: > lgtm > > https://codereview.chromium.org/1486473002/diff/60001/lib/runtime/dart/_internal.js > File lib/runtime/dart/_internal.js (right): > ...
5 years ago (2015-11-30 17:26:20 UTC) #5
Jennifer Messerly
A few comments but LGTM overall. https://codereview.chromium.org/1486473002/diff/60001/lib/runtime/dart/_internal.js File lib/runtime/dart/_internal.js (right): https://codereview.chromium.org/1486473002/diff/60001/lib/runtime/dart/_internal.js#newcode623 lib/runtime/dart/_internal.js:623: return new (ExpandIterator$(S, ...
5 years ago (2015-11-30 18:54:11 UTC) #6
Jennifer Messerly
oops forgot to check one file. Few more comments :) https://codereview.chromium.org/1486473002/diff/60001/tool/input_sdk/private/utils.dart File tool/input_sdk/private/utils.dart (right): https://codereview.chromium.org/1486473002/diff/60001/tool/input_sdk/private/utils.dart#newcode19 ...
5 years ago (2015-11-30 19:00:03 UTC) #7
ochafik
On 2015/11/30 16:49:47, John Messerly wrote: > On 2015/11/29 14:38:10, ochafik wrote: > > Notes: ...
5 years ago (2015-12-01 14:40:01 UTC) #8
ochafik
Thanks guys! https://codereview.chromium.org/1486473002/diff/60001/lib/src/codegen/js_codegen.dart File lib/src/codegen/js_codegen.dart (right): https://codereview.chromium.org/1486473002/diff/60001/lib/src/codegen/js_codegen.dart#newcode1302 lib/src/codegen/js_codegen.dart:1302: if (currentLibrary.isInSdk && On 2015/11/30 18:54:11, John ...
5 years ago (2015-12-01 14:41:03 UTC) #9
Jennifer Messerly
LGTM++ ! one further suggestion. Could definitely be addressed in a follow up though. https://codereview.chromium.org/1486473002/diff/80001/tool/sdk_expected_errors.txt ...
5 years ago (2015-12-01 15:56:37 UTC) #10
ochafik
Thanks John! https://codereview.chromium.org/1486473002/diff/80001/tool/sdk_expected_errors.txt File tool/sdk_expected_errors.txt (right): https://codereview.chromium.org/1486473002/diff/80001/tool/sdk_expected_errors.txt#newcode4 tool/sdk_expected_errors.txt:4: severe: [AnalyzerMessage] 'const' variables must be constant ...
5 years ago (2015-12-01 18:48:25 UTC) #11
ochafik
5 years ago (2015-12-01 19:02:47 UTC) #13
Message was sent while issue was closed.
Committed patchset #7 (id:120001) manually as
d91add0d8490bbb59f72fe676fe70cfeedcd1e91 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698