Files
sdk/lib/compiler/implementation/tree/tree.dart
T
smok@google.com e636d1cafd A visitor that builds a map from node to "Usage".
A renamer just renames "usages" according to its type.
This allows us to split various send-guessing logic and renaming.
No scopes yet.

Review URL: https://chromiumcodereview.appspot.com//10836128

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@10433 260f80e4-7a28-3924-810f-c04153c831b5
2012-08-09 07:49:11 +00:00

16 lines
474 B
Dart

// Copyright (c) 2011, 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('tree');
#import('../scanner/scannerlib.dart');
#import('../util/util.dart');
#import('../util/characters.dart');
#source('dartstring.dart');
#source('nodes.dart');
#source('prettyprint.dart');
#source('unparser.dart');
#source('visitors.dart');