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

Unified Diff: pkg/sharedfrontend/lib/elements.dart

Issue 914613002: Revert "Add sharedfrontend package" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« no previous file with comments | « pkg/compiler/lib/src/elements/names.dart ('k') | pkg/sharedfrontend/lib/src/access_semantics.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/sharedfrontend/lib/elements.dart
diff --git a/pkg/sharedfrontend/lib/elements.dart b/pkg/sharedfrontend/lib/elements.dart
deleted file mode 100644
index 64a3a89e114902a95c3f3da8ccc44d9dde89b9a5..0000000000000000000000000000000000000000
--- a/pkg/sharedfrontend/lib/elements.dart
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2015, 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.
-
-/// Shared element model between the dart analyzer and dart2js.
-
-library elements;
-
-/// The interface `Element` defines the behavior common to all of the elements
-/// in the element model. Generally speaking, the element model is a semantic
-/// model of the program that represents things that are declared with a name
-/// and hence can be referenced elsewhere in the code.
-abstract class Element {
- // TODO(johnniwinther): Semantic difference. Setter names from the analyzer
- // contain '=' but doesn't in dart2js.
- // TODO(johnniwinther,paulberry,brianwilkerson): What about privacy? Maybe
- // name should be the `Name` class in
- // 'package:compiler/src/elements/names.dart'.
- /// The name of this element, or `null` if this element does not have a name.
- String get name;
-
- /// The library that contains this element. This will be the element itself if
- /// it is a library element.
- LibraryElement get library;
-}
-
-/// The interface `LibraryElement` defines the behavior of elements representing
-/// a library.
-abstract class LibraryElement extends Element {
-
-}
-
-/// The interface `ClassElement` defines the behavior of elements that represent
-/// a class.
-abstract class ClassElement extends Element {
-
-}
« no previous file with comments | « pkg/compiler/lib/src/elements/names.dart ('k') | pkg/sharedfrontend/lib/src/access_semantics.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698