Files
sdk/pkg/dev_compiler/tool
Vijay Menon 1ec614fd7b Enable DDC output to run on v8/d8 using ES6 modules
Fixes #27309

V8 / D8 tip supports ES6 modules natively.  It's a little cumbersome
to set up, but hello world runs.  :-)

> ln -s $DDC_PATH/lib/js/es6/ddc_sdk.js ddc_sdk
> dart  $DDC_PATH/bin/dartdevc.dart --dart-sdk-summary $DDC_PATH/lib/sdk/ddc_sdk.sum --modules es6 -o hello hello.dart
> cat > run.js
import { hello } from 'hello';
hello.main();
> d8 --module run.js

R=jmesserly@google.com

Review-Url: https://codereview.chromium.org/2701963002 .
2017-02-17 16:54:21 -08:00
..
2017-01-23 13:56:06 -08:00
2016-10-06 08:33:06 -07:00
2016-07-13 13:31:25 -07:00
2016-04-14 11:28:12 -07:00
2016-05-18 13:48:10 -07:00

Tools for processing the Dart SDK

patch_sdk.dart

This script combines:

tool/input_sdk/lib/...
tool/input_sdk/patch/...
tool/input_sdk/private/...

and produces the merged SDK sources in:

gen/patched_sdk/...

The result has all "external" keywords replaced with the @patch implementations.

Generally local edits should be to input_sdk/patch and input_sdk/private, as those two directories are specific to DDC. input_sdk/lib should represent unmodified SDK sources to the maximum extent possible. Currently there are slight edits to the type annotations in some cases.

See patch_sdk.dart for more information.

sdk_version_check.dart

Asserts that the Dart VM is at least a particular semantic version. It returns an exit code to make it easy to integrate with shell scripts.