blob: 2dbc0368c811001d3943c4b6ade71e4a5271c178 [file] [log] [blame]
// 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 dart_backend;
import 'dart:async' show Future;
import 'dart:math' show max;
import '../elements/elements.dart';
import '../dart2jslib.dart';
import '../library_loader.dart' show LoadedLibraries;
import '../dart_types.dart';
import '../tree/tree.dart';
import '../compile_time_constants.dart';
import '../constants/constant_system.dart';
import '../constants/expressions.dart';
import '../constants/values.dart';
import '../util/util.dart';
import '../mirror_renamer/mirror_renamer.dart';
import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
import '../../compiler.dart' show CompilerOutputProvider;
import '../scanner/scannerlib.dart' show StringToken,
Keyword,
OPEN_PAREN_INFO,
CLOSE_PAREN_INFO,
SEMICOLON_INFO,
IDENTIFIER_INFO;
part 'backend.dart';
part 'renamer.dart';
part 'placeholder_collector.dart';
part 'outputter.dart';