| Index: pkg/compiler/lib/src/dart2jslib.dart
|
| diff --git a/pkg/compiler/lib/src/dart2jslib.dart b/pkg/compiler/lib/src/dart2jslib.dart
|
| deleted file mode 100644
|
| index a59cefccef7b7ae29acea80f79e6d2d90654cc18..0000000000000000000000000000000000000000
|
| --- a/pkg/compiler/lib/src/dart2jslib.dart
|
| +++ /dev/null
|
| @@ -1,78 +0,0 @@
|
| -// Copyright (c) 2012, 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 dart2js;
|
| -
|
| -import 'dart:async';
|
| -import 'dart:collection' show Queue;
|
| -import 'dart:profiler' show
|
| - UserTag;
|
| -
|
| -import '../compiler.dart' as api;
|
| -import 'cache_strategy.dart';
|
| -import 'closure.dart' as closureMapping;
|
| -import 'constants/expressions.dart';
|
| -import 'constants/values.dart';
|
| -import 'cps_ir/cps_ir_builder.dart' show IrBuilderTask;
|
| -import 'dart_backend/dart_backend.dart' as dart_backend;
|
| -import 'dart_types.dart';
|
| -import 'deferred_load.dart' show DeferredLoadTask, OutputUnit;
|
| -import 'dump_info.dart';
|
| -import 'elements/elements.dart';
|
| -import 'elements/modelx.dart'
|
| - show ErroneousElementX,
|
| - ClassElementX,
|
| - CompilationUnitElementX,
|
| - LibraryElementX,
|
| - PrefixElementX,
|
| - VoidElementX,
|
| - AnalyzableElement,
|
| - DeferredLoaderGetterElementX;
|
| -import 'helpers/helpers.dart'; // Included for debug helpers.
|
| -import 'js/js.dart' as js;
|
| -import 'js_backend/js_backend.dart' as js_backend;
|
| -import 'library_loader.dart'
|
| - show LibraryLoader,
|
| - LibraryLoaderTask;
|
| -import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
|
| -import 'native/native.dart' as native;
|
| -import 'ordered_typeset.dart';
|
| -import 'patch_parser.dart';
|
| -import 'resolution/class_members.dart' show MembersCreator;
|
| -import 'resolution/resolution.dart';
|
| -import 'scanner/scannerlib.dart';
|
| -import 'ssa/ssa.dart';
|
| -import 'source_file.dart' show SourceFile;
|
| -import 'tracer.dart' show Tracer;
|
| -import 'tree/tree.dart';
|
| -import 'types/types.dart' as ti;
|
| -import 'universe/universe.dart';
|
| -import 'util/characters.dart' show $_;
|
| -import 'util/util.dart';
|
| -
|
| -export 'helpers/helpers.dart';
|
| -export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
|
| -export 'scanner/scannerlib.dart' show isUserDefinableOperator,
|
| - isUnaryOperator,
|
| - isBinaryOperator,
|
| - isTernaryOperator,
|
| - isMinusOperator;
|
| -export 'universe/universe.dart' show Selector, TypedSelector;
|
| -export 'util/util.dart'
|
| - show Spannable,
|
| - CURRENT_ELEMENT_SPANNABLE,
|
| - NO_LOCATION_SPANNABLE;
|
| -
|
| -part 'code_buffer.dart';
|
| -part 'compile_time_constants.dart';
|
| -part 'compiler.dart';
|
| -part 'constant_system.dart';
|
| -part 'constant_system_dart.dart';
|
| -part 'diagnostic_listener.dart';
|
| -part 'enqueue.dart';
|
| -part 'resolved_visitor.dart';
|
| -part 'script.dart';
|
| -part 'typechecker.dart';
|
| -part 'warnings.dart';
|
| -part 'world.dart';
|
|
|