| Index: dart/lib/compiler/implementation/dart_backend/dart_backend.dart
|
| diff --git a/dart/lib/compiler/implementation/dart_backend/dart_backend.dart b/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
|
| index 4e664880eb8219b516534e5d2708a86b4be12426..26b59d6ea644840750d708b01616c0fde01771e2 100644
|
| --- a/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
|
| +++ b/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
|
| @@ -2,17 +2,22 @@
|
| // 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('dart_backend');
|
| +library dart_backend;
|
|
|
| -#import('../elements/elements.dart');
|
| -#import('../leg.dart');
|
| -#import('../scanner/scannerlib.dart');
|
| -#import('../tree/tree.dart');
|
| -#import('../universe/universe.dart');
|
| -#import('../util/util.dart');
|
| +import '../elements/elements.dart';
|
| +import '../dart2jslib.dart';
|
| +import '../tree/tree.dart';
|
| +import '../util/util.dart';
|
|
|
| -#source('backend.dart');
|
| -#source('emitter.dart');
|
| -#source('renamer.dart');
|
| -#source('placeholder_collector.dart');
|
| -#source('utils.dart');
|
| +import '../scanner/scannerlib.dart' show StringToken,
|
| + Keyword,
|
| + OPEN_PAREN_INFO,
|
| + CLOSE_PAREN_INFO,
|
| + SEMICOLON_INFO,
|
| + IDENTIFIER_INFO;
|
| +
|
| +part 'backend.dart';
|
| +part 'emitter.dart';
|
| +part 'renamer.dart';
|
| +part 'placeholder_collector.dart';
|
| +part 'utils.dart';
|
|
|