File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5
5
6
6
/// Command line tool to write checker errors as inline comments in the source
7
7
/// code of the program. This tool requires the info.json file created by
8
- /// running devc .dart passing the arguments
8
+ /// running dartdevc .dart passing the arguments
9
9
/// --dump-info --dump-info-file info.json
10
10
11
11
library dev_compiler.bin.edit_files;
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ function fail {
9
9
return 1
10
10
}
11
11
12
- # Run analyzer on bin/devc .dart, as it includes most of the code we care about
13
- # via transitive dependencies. This seems to be the only fast way to avoid
12
+ # Run analyzer on bin/dartdevc .dart, as it includes most of the code we care
13
+ # about via transitive dependencies. This seems to be the only fast way to avoid
14
14
# repeated analysis of the same code.
15
15
# TODO(jmesserly): ideally we could do test/all_tests.dart, but
16
16
# dart_runtime_test.dart creates invalid generic type instantiation AA.
17
17
echo " Running dartanalyzer to check for errors/warnings/hints..."
18
- dartanalyzer --fatal-warnings --package-warnings bin/devc .dart \
18
+ dartanalyzer --fatal-warnings --package-warnings bin/dartdevc .dart \
19
19
| (! grep $PWD ) || fail
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk
8
8
9
9
echo " *** Compiling SDK to JavaScript"
10
10
11
- dart -c bin/devc .dart --no-source-maps --arrow-fn-bind-this --sdk-check \
11
+ dart -c bin/dartdevc .dart --no-source-maps --arrow-fn-bind-this --sdk-check \
12
12
--force-compile -l warning --dart-sdk tool/generated_sdk -o lib/runtime/ \
13
13
" $@ " \
14
14
dart:js dart:mirrors \
You can’t perform that action at this time.
0 commit comments