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

Issue 2862223002: Rewrite mixin application handling in Fasta. (Closed)

Created:
3 years, 7 months ago by ahe
Modified:
3 years, 7 months ago
Reviewers:
Johnni Winther
CC:
reviews_dartlang.org, dart-fe-team+reviews_google.com
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 8

Patch Set 2 : Rebased with master and merged with c1c17946fe605f458bf9679a3a44d8a442e52ce9. #

Patch Set 3 : Update status file. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+789 lines, -478 lines) Patch
M docs/language/dartLangSpec.tex View 1 4 chunks +6 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/builder.dart View 1 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/class_builder.dart View 1 2 chunks +40 lines, -12 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/modifier_builder.dart View 2 chunks +11 lines, -1 line 0 comments Download
D pkg/front_end/lib/src/fasta/builder/named_mixin_application_builder.dart View 1 chunk +0 lines, -44 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/named_type_builder.dart View 2 chunks +2 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart View 1 chunk +2 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/dill/dill_class_builder.dart View 1 chunk +4 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/dill/dill_member_builder.dart View 1 1 chunk +7 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_builder.dart View 1 1 chunk +0 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart View 1 1 chunk +6 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart View 1 2 9 chunks +324 lines, -17 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart View 1 2 chunks +4 lines, -74 lines 0 comments Download
D pkg/front_end/lib/src/fasta/kernel/kernel_named_mixin_application_builder.dart View 1 1 chunk +0 lines, -53 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_target.dart View 1 2 6 chunks +30 lines, -39 lines 0 comments Download
M pkg/front_end/lib/src/fasta/modifier.dart View 1 1 chunk +4 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/outline_builder.dart View 1 1 chunk +0 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/source_class_builder.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/source/source_loader.dart View 1 2 2 chunks +65 lines, -3 lines 0 comments Download
M pkg/front_end/testcases/mixin.dart.direct.expect View 1 2 chunks +18 lines, -18 lines 0 comments Download
M pkg/front_end/testcases/mixin.dart.outline.expect View 1 2 chunks +7 lines, -7 lines 0 comments Download
M pkg/front_end/testcases/rasta/class_hierarchy.dart.outline.expect View 1 2 chunks +1 line, -5 lines 0 comments Download
M pkg/front_end/testcases/rasta/duplicated_mixin.dart.outline.expect View 1 1 chunk +4 lines, -4 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000007.dart.direct.expect View 1 2 chunks +5 lines, -5 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000007.dart.outline.expect View 1 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000048.dart.direct.expect View 1 1 chunk +2 lines, -7 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000048.dart.outline.expect View 1 1 chunk +1 line, -3 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000080.dart.direct.expect View 1 2 chunks +8 lines, -8 lines 0 comments Download
M pkg/front_end/testcases/rasta/issue_000080.dart.outline.expect View 1 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/front_end/testcases/redirecting_factory.dart.outline.expect View 1 1 chunk +1 line, -3 lines 0 comments Download
M tests/co19/co19-kernel.status View 1 4 chunks +1 line, -28 lines 0 comments Download
M tests/language/language_kernel.status View 1 2 14 chunks +141 lines, -126 lines 0 comments Download
A tests/language/mixin_mixin_type_arguments_test.dart View 1 chunk +86 lines, -0 lines 0 comments Download
M tests/lib/lib.status View 1 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 8 (2 generated)
ahe
This CL is based on my development branch. I plan to rebase it on master. ...
3 years, 7 months ago (2017-05-05 13:19:12 UTC) #2
ahe
I've merged with master.
3 years, 7 months ago (2017-05-05 16:53:09 UTC) #3
Johnni Winther
lgtm https://codereview.chromium.org/2862223002/diff/1/pkg/front_end/lib/src/fasta/builder/named_type_builder.dart File pkg/front_end/lib/src/fasta/builder/named_type_builder.dart (right): https://codereview.chromium.org/2862223002/diff/1/pkg/front_end/lib/src/fasta/builder/named_type_builder.dart#newcode59 pkg/front_end/lib/src/fasta/builder/named_type_builder.dart:59: if (arguments?.isEmpty ?? true) return buffer; This is ...
3 years, 7 months ago (2017-05-08 10:05:34 UTC) #4
Johnni Winther
2nd patch lgtm
3 years, 7 months ago (2017-05-08 10:44:59 UTC) #5
ahe
Thank you, Johnni! https://codereview.chromium.org/2862223002/diff/1/pkg/front_end/lib/src/fasta/builder/named_type_builder.dart File pkg/front_end/lib/src/fasta/builder/named_type_builder.dart (right): https://codereview.chromium.org/2862223002/diff/1/pkg/front_end/lib/src/fasta/builder/named_type_builder.dart#newcode59 pkg/front_end/lib/src/fasta/builder/named_type_builder.dart:59: if (arguments?.isEmpty ?? true) return buffer; ...
3 years, 7 months ago (2017-05-08 11:13:16 UTC) #6
ahe
3 years, 7 months ago (2017-05-09 07:23:13 UTC) #8
Message was sent while issue was closed.
Committed patchset #3 (id:40001) manually as
4880a2876e02f0764a8b4faada9f44dc1fcc80f7 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698