8bfc4b47c0
This adds a class CanonicalName that can represent a library, class, or member. All references now go through a Reference object, which is linked to both the AST node and its CanonicalName, so either can be created first. dartk now accepts multiple input files: - If multiple dart files are given, they are all compiled. - If multiple binaries are given, they are linked together. Mixed dart and binary input is not supported by dartk. dartk now has a flag --include-sdk which includes the entire SDK in the output. This is so the SDK can be compiled alone and then linked. Example of compiling separately and then linking: dartk foo.dart -o foo.dill dartk main.dart -o main.dill dartk --include-sdk -o sdk.dill dartk main.dill foo.dill sdk.dill --target=vm --link -o program.dill dartk still has incredibly slow cold start due to the analyzer loading the dart sdk, so this does not actually speed things up at the moment. BUG= R=ahe@google.com, kmillikin@google.com, kustermann@google.com, sigmund@google.com Review-Url: https://codereview.chromium.org/2665723002 .
63 lines
1.9 KiB
Dart
63 lines
1.9 KiB
Dart
// Copyright (c) 2016, 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.
|
|
|
|
/// Conventions for paths:
|
|
///
|
|
/// - Use the [Uri] class for paths that may have the `file`, `dart` or
|
|
/// `package` scheme. Never use [Uri] for relative paths.
|
|
/// - Use [String]s for all filenames and paths that have no scheme prefix.
|
|
/// - Never translate a `dart:` or `package:` URI into a `file:` URI, instead
|
|
/// translate it to a [String] if the file system path is needed.
|
|
/// - Only use [File] from dart:io at the last moment when it is needed.
|
|
///
|
|
library kernel;
|
|
|
|
import 'ast.dart';
|
|
import 'binary/ast_to_binary.dart';
|
|
import 'binary/ast_from_binary.dart';
|
|
import 'dart:async';
|
|
import 'dart:io';
|
|
import 'text/ast_to_text.dart';
|
|
|
|
export 'ast.dart';
|
|
|
|
Program loadProgramFromBinary(String path, [Program program]) {
|
|
program ??= new Program();
|
|
new BinaryBuilder(new File(path).readAsBytesSync()).readProgram(program);
|
|
return program;
|
|
}
|
|
|
|
Future writeProgramToBinary(Program program, String path) {
|
|
var sink = new File(path).openWrite();
|
|
var future;
|
|
try {
|
|
new BinaryPrinter(sink).writeProgramFile(program);
|
|
} finally {
|
|
future = sink.close();
|
|
}
|
|
return future;
|
|
}
|
|
|
|
void writeLibraryToText(Library library, {String path}) {
|
|
StringBuffer buffer = new StringBuffer();
|
|
new Printer(buffer).writeLibraryFile(library);
|
|
if (path == null) {
|
|
print(buffer);
|
|
} else {
|
|
new File(path).writeAsStringSync('$buffer');
|
|
}
|
|
}
|
|
|
|
void writeProgramToText(Program program,
|
|
{String path, bool showExternal: false, bool showOffsets: false}) {
|
|
StringBuffer buffer = new StringBuffer();
|
|
new Printer(buffer, showExternal: showExternal, showOffsets: showOffsets)
|
|
.writeProgramFile(program);
|
|
if (path == null) {
|
|
print(buffer);
|
|
} else {
|
|
new File(path).writeAsStringSync('$buffer');
|
|
}
|
|
}
|