Skip to content

Commit 6038aa2

Browse files
author
John Messerly
committed
Merge pull request #334 from dart-lang/finish_rename
finish rename of devc.dart to dartdevc.dart
2 parents 423c850 + 01ffd26 commit 6038aa2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pkg/dev_compiler/bin/edit_files.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/// Command line tool to write checker errors as inline comments in the source
77
/// 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
99
/// --dump-info --dump-info-file info.json
1010
1111
library dev_compiler.bin.edit_files;

pkg/dev_compiler/tool/analyze.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ function fail {
99
return 1
1010
}
1111

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
1414
# repeated analysis of the same code.
1515
# TODO(jmesserly): ideally we could do test/all_tests.dart, but
1616
# dart_runtime_test.dart creates invalid generic type instantiation AA.
1717
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 \
1919
| (! grep $PWD) || fail

pkg/dev_compiler/tool/build_sdk.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dart -c tool/patch_sdk.dart tool/input_sdk tool/generated_sdk
88

99
echo "*** Compiling SDK to JavaScript"
1010

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 \
1212
--force-compile -l warning --dart-sdk tool/generated_sdk -o lib/runtime/ \
1313
"$@" \
1414
dart:js dart:mirrors \

0 commit comments

Comments
 (0)