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

Issue 2691523002: Ensure locations are always provided, but don't store them yet. (Closed)

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

Description

Ensure locations are always provided, but don't store them yet. R=johnniwinther@google.com Committed: https://github.com/dart-lang/sdk/commit/ee7a3e1e24cc63fbd3f75dabd01d64b87e29948f

Patch Set 1 #

Patch Set 2 : Set fileUris to avoid /* from null */ comments. #

Patch Set 3 : Missing file. #

Total comments: 8

Patch Set 4 : Address comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+495 lines, -278 lines) Patch
M pkg/front_end/lib/src/fasta/analyzer/ast_builder.dart View 3 chunks +4 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/analyzer/element_store.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/analyzer/mock_element.dart View 1 chunk +6 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/builder.dart View 2 chunks +10 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/class_builder.dart View 3 chunks +5 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/constructor_reference_builder.dart View 2 chunks +5 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart View 1 chunk +3 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/field_builder.dart View 2 chunks +4 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/formal_parameter_builder.dart View 2 chunks +3 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/function_type_alias_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/invalid_type_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/library_builder.dart View 2 chunks +7 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/member_builder.dart View 1 chunk +6 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/metadata_builder.dart View 3 chunks +16 lines, -7 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart View 1 chunk +5 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart View 1 chunk +3 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/modifier_builder.dart View 1 chunk +3 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/named_mixin_application_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/named_type_builder.dart View 3 chunks +4 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/prefix_builder.dart View 1 chunk +2 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/procedure_builder.dart View 2 chunks +4 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/scope.dart View 4 chunks +22 lines, -13 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/type_builder.dart View 1 chunk +3 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart View 1 chunk +2 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart View 2 chunks +4 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/combinator.dart View 1 chunk +5 lines, -5 lines 0 comments Download
M pkg/front_end/lib/src/fasta/dill/dill_class_builder.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart View 2 chunks +4 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/dill/dill_member_builder.dart View 1 chunk +3 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/errors.dart View 1 2 chunks +4 lines, -6 lines 0 comments Download
M pkg/front_end/lib/src/fasta/export.dart View 1 chunk +3 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/import.dart View 3 chunks +13 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/body_builder.dart View 1 2 3 24 chunks +54 lines, -33 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/builder_accessors.dart View 3 chunks +6 lines, -4 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_enum_builder.dart View 5 chunks +18 lines, -15 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_field_builder.dart View 1 2 chunks +22 lines, -7 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_formal_parameter_builder.dart View 2 chunks +4 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_function_type_alias_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_invalid_type_builder.dart View 1 chunk +2 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart View 1 6 chunks +40 lines, -33 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart View 1 2 chunks +14 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_named_mixin_application_builder.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_named_type_builder.dart View 2 chunks +10 lines, -10 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_procedure_builder.dart View 1 6 chunks +27 lines, -12 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_target.dart View 2 chunks +6 lines, -2 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_type_builder.dart View 1 chunk +3 lines, -0 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_type_variable_builder.dart View 3 chunks +5 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/kernel/kernel_variable_builder.dart View 1 chunk +3 lines, -1 line 0 comments Download
M pkg/front_end/lib/src/fasta/source/outline_builder.dart View 17 chunks +30 lines, -20 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/scope_listener.dart View 5 chunks +21 lines, -15 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/source_class_builder.dart View 1 3 chunks +18 lines, -3 lines 0 comments Download
M pkg/front_end/lib/src/fasta/source/source_library_builder.dart View 6 chunks +26 lines, -22 lines 0 comments Download
A pkg/front_end/lib/src/fasta/util/relativize.dart View 1 2 1 chunk +14 lines, -0 lines 0 comments Download
M pkg/front_end/test/subpackage_relationships_test.dart View 1 2 chunks +2 lines, -0 lines 0 comments Download
M pkg/kernel/lib/ast.dart View 1 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 7 (2 generated)
ahe
This was a bit more work than I expected. I found when I started compiling ...
3 years, 10 months ago (2017-02-10 14:34:29 UTC) #2
ahe
Note: I uploaded a new patch set as I found some problems during testing.
3 years, 10 months ago (2017-02-10 15:35:18 UTC) #3
Johnni Winther
lgtm https://codereview.chromium.org/2691523002/diff/40001/pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart File pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart (right): https://codereview.chromium.org/2691523002/diff/40001/pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart#newcode53 pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart:53: : uri = uri, super(uri); Isn't initializing formal ...
3 years, 10 months ago (2017-02-13 08:42:03 UTC) #4
ahe
Thank you, Johnni! https://codereview.chromium.org/2691523002/diff/40001/pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart File pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart (right): https://codereview.chromium.org/2691523002/diff/40001/pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart#newcode53 pkg/front_end/lib/src/fasta/dill/dill_library_builder.dart:53: : uri = uri, super(uri); On ...
3 years, 10 months ago (2017-02-13 10:44:23 UTC) #5
ahe
3 years, 10 months ago (2017-02-13 11:30:32 UTC) #7
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
ee7a3e1e24cc63fbd3f75dabd01d64b87e29948f (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698