OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 set -e | 2 set -e |
3 # switch to the root directory of dev_compiler | 3 # switch to the root directory of dev_compiler |
4 cd $( dirname "${BASH_SOURCE[0]}" )/.. | 4 cd $( dirname "${BASH_SOURCE[0]}" )/.. |
5 | 5 |
6 echo "*** Patching SDK" | 6 echo "*** Patching SDK" |
7 dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk | 7 dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk |
8 | 8 |
9 echo "*** Compiling SDK to JavaScript" | 9 echo "*** Compiling SDK to JavaScript" |
10 | 10 |
11 # TODO(ochafik): Re-enable named params destructuring when Atom supports it | 11 # TODO(jmesserly): break out dart:html & friends. |
12 # (see https://github.com/dart-lang/dev_compiler/issues/396) | 12 # |
13 dart bin/dartdevc.dart --force-compile --no-source-maps --sdk-check \ | 13 # Right now we can't summarize our SDK, so we can't treat it as a normal |
14 -l warning --dart-sdk tool/generated_sdk -o lib/runtime/ \ | 14 # explicit input (instead we're implicitly compiling against the user's SDK). |
15 --no-destructure-named-params \ | 15 # |
16 "$@" \ | 16 # Another possible approach is to hard code the dart:* library->module mapping |
17 dart:_runtime \ | 17 # into the compiler itself, so it can emit the correct import. |
18 dart:_debugger \ | 18 # |
19 dart:js dart:mirrors dart:html \ | 19 dart -c tool/build_sdk.dart \ |
20 > tool/sdk_expected_errors.txt || true | 20 --dart-sdk tool/generated_sdk \ |
| 21 -o lib/runtime/dart_sdk.js \ |
| 22 "$@" > tool/sdk_expected_errors.txt |
OLD | NEW |