Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(554)

Side by Side Diff: third_party/pkg/angular/scripts/analyze.sh

Issue 180843004: Revert revision 33053 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 set -e 3 set -e
4 4
5 . $(dirname $0)/env.sh 5 . $(dirname $0)/env.sh
6 6
7 OUT=tmp/all.dart 7 OUT=tmp/all.dart
8 mkdir -p tmp 8 mkdir -p tmp
9 9
10 $DARTANALYZER --version 10 $DARTANALYZER --version
11 11
12 echo // generated file > $OUT 12 echo // generated file > $OUT
13 13
14 for FILE in $(ls lib/angular.dart \ 14 for FILE in $(ls lib/angular.dart perf/*_perf.dart test/*_spec.dart test/*/*_spe c.dart)
15 perf/*_perf.dart \
16 test/*_spec.dart \
17 test/*/*_spec.dart \
18 lib/change_detection/change_detection.dart \
19 lib/change_detection/dirty_checking_change_detector.dart \
20 lib/change_detection/watch_group.dart \
21 )
22 do 15 do
23 echo export \'../$FILE\' hide main, NestedRouteInitializer\; >> $OUT 16 echo export \'../$FILE\' hide main, NestedRouteInitializer\; >> $OUT
24 done 17 done
25 18
26 $(dirname $0)/generate-expressions.sh 19 $(dirname $0)/generate-expressions.sh
27 20
28 $DARTANALYZER $OUT 21 $DARTANALYZER $OUT
OLDNEW
« no previous file with comments | « third_party/pkg/angular/run-test.sh ('k') | third_party/pkg/angular/scripts/changelog/authors.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698