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

Side by Side Diff: pkg/analyzer/lib/dart/ast/resolution_base_classes.dart

Issue 2551023005: Prepare for decoupling analyzer ASTs from element model. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 /**
6 * Abstract base class for a resolved element maintained in an AST data
7 * structure.
8 *
9 * This abstract type decouples the AST representation from depending on the
10 * element model.
11 */
12 abstract class ResolutionTarget {}
13
14 /**
15 * Abstract base class for a resolved type maintained in AST data structure.
16 *
17 * This abstract type decouples the AST representation from depending on the
18 * type model.
19 */
20 abstract class ResolutionType {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698