| Index: dart/lib/compiler/implementation/universe/universe.dart
|
| diff --git a/dart/lib/compiler/implementation/universe/universe.dart b/dart/lib/compiler/implementation/universe/universe.dart
|
| index 6d150b811cc681dcd887a8ada6e2b415658f941a..76a9aa5e2982c49da89bf3879022533f019f9641 100644
|
| --- a/dart/lib/compiler/implementation/universe/universe.dart
|
| +++ b/dart/lib/compiler/implementation/universe/universe.dart
|
| @@ -2,19 +2,18 @@
|
| // 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('universe');
|
| -
|
| -#import('../closure.dart');
|
| -#import('../elements/elements.dart');
|
| -#import('../leg.dart');
|
| -#import('../scanner/scannerlib.dart');
|
| -#import('../runtime_types.dart');
|
| -#import('../tree/tree.dart');
|
| -#import('../util/util.dart');
|
| -
|
| -#source('function_set.dart');
|
| -#source('partial_type_tree.dart');
|
| -#source('selector_map.dart');
|
| +library universe;
|
| +
|
| +import '../closure.dart';
|
| +import '../elements/elements.dart';
|
| +import '../dart2jslib.dart';
|
| +import '../runtime_types.dart';
|
| +import '../tree/tree.dart';
|
| +import '../util/util.dart';
|
| +
|
| +part 'function_set.dart';
|
| +part 'partial_type_tree.dart';
|
| +part 'selector_map.dart';
|
|
|
| class Universe {
|
| /**
|
|
|