commit | 144bd990b6e4abbb1539bf094e732119931ef712 | [log] [tgz] |
---|---|---|
author | Asger Feldthaus <asgerf@google.com> | Fri Oct 07 13:40:46 2016 |
committer | Asger Feldthaus <asgerf@google.com> | Fri Oct 07 13:40:46 2016 |
tree | 2d7be0af69d78110e14a91863bd039d2f8994f45 | |
parent | 6347eb5dd5cc3bd55ad110d97be509bfbf0c175a [diff] |
Do not compile patched SDK in strong mode when using VM target. The VM patch files are not strong mode clean, so we're using a hybrid approach where the SDK is internally unchecked, and is trusted to satisfy the types on its interface. BUG= R=kmillikin@google.com Review URL: https://chromereviews.googleplex.com/516487014 .
Dart Kernel is a small high-level language derived from Dart. It is designed for use as an intermediate format for whole-program analysis and transformations, and as a frontend for codegen and execution backends.
The kernel language has in-memory representations in Dart and C++, and can be serialized as binary or text.
Both the kernel language and its implementations are unstable and are under development.
This package contains the Dart part of the implementation and contains:
Checkout the repository and run pub get:
git clone https://github.com/dart-lang/kernel cd kernel pub get
Run bin/dartk.dart
from the command-line to convert between .dart files and the serialized binary and textual formats.
dartk
expects the .dill
extension for files in the binary format. The textual format has no preferred extension right now.
Example commands:
dartk foo.dart # print text IR for foo.dart dartk foo.dart -ofoo.dill # write binary IR for foo.dart to foo.dill dartk foo.dill # print text IR for binary file foo.dill
Pass the --link
or -l
flag to link all transitive dependencies into one file:
dartk myapp.dart -ppackages -l -omyapp.dill # Bundle everything. dartk myapp.dill # Print it back out in a (very, very long) textual format.
See ast.dart for the in-memory IR, or binary.md for a description of the binary format. For now, the textual format is very ad-hoc and cannot be parsed back in.
If you plan to make changes to kernel, get a checkout of the Dartk SDK and run:
tool/regenerate_dill_files.dart --sdk <path to SDK checkout> pub run test
Kernel distinguishes between library files and program files.
Program files are self-contained and cannot reference anything outside the file. Library files contain exactly one library and can import other libraries by a URI equivalent to how imports work in a .dart file.
Library files are a provisional concept and should not be used for anything serious yet, but can be used for quick experiments, like measuring the binary file size on a per-library basis.