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

Unified Diff: pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart

Issue 2788153002: Create separate scopes for constructors, setters, and other members. (Closed)
Patch Set: One more flaky standalone/io test. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart b/pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart
deleted file mode 100644
index 59b65527f146e65ac8cec3f1951b929216db45c6..0000000000000000000000000000000000000000
--- a/pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library fasta.mixed_accessor;
-
-import 'builder.dart' show Builder, LibraryBuilder;
-
-/// Represents the import of a getter and setter from two different libraries.
-class MixedAccessor extends Builder {
- final Builder getter;
- final Builder setter;
-
- MixedAccessor(this.getter, this.setter, LibraryBuilder parent)
- : super(
- parent,
- -1, // Synthetic element has no charOffset.
- parent.fileUri) {
- next = getter;
- }
-
- @override
- String get fullNameForErrors => getter.fullNameForErrors;
-}

Powered by Google App Engine
This is Rietveld 408576698