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

Issue 429883002: Remove support for the DeferredLibrary annotation and remove tests of it (Closed)

Created:
6 years, 4 months ago by sigurdm
Modified:
6 years, 3 months ago
Reviewers:
floitsch, hausner
CC:
reviews_dartlang.org, hausner, jwren
Visibility:
Public.

Description

Remove support for the DeferredLibrary annotation and remove tests of it BUG=18562 R=floitsch@google.com, hausner@google.com Committed: https://code.google.com/p/dart/source/detail?r=39797

Patch Set 1 : #

Total comments: 6

Patch Set 2 : Rebase and co19 status updates #

Patch Set 3 : Deprecated until sdk 1.8 remove cruft from unused DeferredLibrary #

Unified diffs Side-by-side diffs Delta from patch set Stats (+86 lines, -425 lines) Patch
M sdk/lib/_internal/compiler/implementation/deferred_load.dart View 1 5 chunks +19 lines, -42 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/warnings.dart View 1 1 chunk +6 lines, -0 lines 0 comments Download
M sdk/lib/_internal/lib/async_patch.dart View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M sdk/lib/_internal/lib/js_helper.dart View 1 2 2 chunks +5 lines, -6 lines 0 comments Download
M sdk/lib/async/deferred_load.dart View 1 2 1 chunk +3 lines, -17 lines 0 comments Download
M tests/co19/co19-dart2dart.status View 1 1 chunk +1 line, -0 lines 0 comments Download
M tests/co19/co19-dart2js.status View 1 1 chunk +2 lines, -0 lines 0 comments Download
M tests/compiler/dart2js/deferred_emit_type_checks_test.dart View 1 1 chunk +2 lines, -6 lines 0 comments Download
M tests/compiler/dart2js/deferred_load_graph_segmentation2_test.dart View 2 chunks +2 lines, -7 lines 0 comments Download
M tests/compiler/dart2js/deferred_load_graph_segmentation_test.dart View 1 3 chunks +13 lines, -20 lines 0 comments Download
M tests/compiler/dart2js/deferred_not_in_main_test.dart View 1 chunk +2 lines, -3 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_class_test.dart View 3 chunks +3 lines, -5 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_constant2_test.dart View 1 chunk +2 lines, -4 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_constant3_test.dart View 1 chunk +2 lines, -4 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_constant4_test.dart View 1 chunk +2 lines, -6 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_constant_test.dart View 1 1 chunk +0 lines, -47 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_function_test.dart View 3 chunks +3 lines, -7 lines 0 comments Download
M tests/compiler/dart2js_extra/deferred/deferred_unused_classes_test.dart View 1 chunk +1 line, -3 lines 0 comments Download
D tests/language/deferred_constraints_constants_old_syntax_lib.dart View 1 chunk +0 lines, -17 lines 0 comments Download
D tests/language/deferred_constraints_constants_old_syntax_test.dart View 1 chunk +0 lines, -63 lines 0 comments Download
D tests/language/deferred_constraints_old_syntax_lib.dart View 1 chunk +0 lines, -17 lines 0 comments Download
D tests/language/deferred_constraints_type_annotation_old_syntax_test.dart View 1 chunk +0 lines, -53 lines 0 comments Download
M tests/language/deferred_no_such_method_test.dart View 1 chunk +2 lines, -5 lines 0 comments Download
M tests/language/language.status View 1 2 chunks +0 lines, -30 lines 0 comments Download
M tests/language/language_analyzer.status View 1 1 chunk +0 lines, -3 lines 0 comments Download
M tests/language/language_analyzer2.status View 1 1 chunk +0 lines, -4 lines 0 comments Download
M tests/language/language_dart2js.status View 1 2 chunks +0 lines, -4 lines 0 comments Download
D tests/lib/async/deferred/deferred_fail_to_load_test.dart View 1 chunk +0 lines, -24 lines 0 comments Download
M tests/lib/async/deferred/deferred_in_isolate_test.dart View 1 chunk +7 lines, -20 lines 0 comments Download
M tests/lib/lib.status View 1 2 1 chunk +7 lines, -6 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
sigurdm
https://codereview.chromium.org/429883002/diff/20001/tests/lib/async/deferred/deferred_fail_to_load_test.dart File tests/lib/async/deferred/deferred_fail_to_load_test.dart (left): https://codereview.chromium.org/429883002/diff/20001/tests/lib/async/deferred/deferred_fail_to_load_test.dart#oldcode10 tests/lib/async/deferred/deferred_fail_to_load_test.dart:10: const b = const DeferredLibrary("NonExistingFile", uri: "wrong/wrong.js"); Unfortunately for ...
6 years, 4 months ago (2014-07-30 11:03:21 UTC) #1
hausner
https://codereview.chromium.org/429883002/diff/20001/tests/lib/async/deferred/deferred_fail_to_load_test.dart File tests/lib/async/deferred/deferred_fail_to_load_test.dart (left): https://codereview.chromium.org/429883002/diff/20001/tests/lib/async/deferred/deferred_fail_to_load_test.dart#oldcode10 tests/lib/async/deferred/deferred_fail_to_load_test.dart:10: const b = const DeferredLibrary("NonExistingFile", uri: "wrong/wrong.js"); On 2014/07/30 ...
6 years, 4 months ago (2014-07-30 16:18:36 UTC) #2
sigurdm
Yes, only this is hard to test (for the dart2js case) because dart2js needs the ...
6 years, 4 months ago (2014-07-31 11:35:22 UTC) #3
floitsch
Second patch set was diffing to a bad base. I only reviewed patch set 1. ...
6 years, 3 months ago (2014-08-28 20:05:20 UTC) #4
sigurdm
https://codereview.chromium.org/429883002/diff/20001/sdk/lib/_internal/compiler/implementation/deferred_load.dart File sdk/lib/_internal/compiler/implementation/deferred_load.dart (right): https://codereview.chromium.org/429883002/diff/20001/sdk/lib/_internal/compiler/implementation/deferred_load.dart#newcode701 sdk/lib/_internal/compiler/implementation/deferred_load.dart:701: compiler.reportFatalError(import, MessageKind.DEFERRED_OLD_SYNTAX); On 2014/08/28 20:05:20, floitsch wrote: > long ...
6 years, 3 months ago (2014-09-02 11:23:18 UTC) #5
hausner
tests/status lgtm. Can't speak to the compiler changes, though.
6 years, 3 months ago (2014-09-02 21:28:54 UTC) #6
sigurdm
6 years, 3 months ago (2014-09-03 08:34:55 UTC) #7
Message was sent while issue was closed.
Committed patchset #3 (id:160001) manually as 39797 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698