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

Side by Side Diff: dart/language/grammar/doit.sh

Issue 10917035: Remove language directory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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
« no previous file with comments | « dart/language/grammar/dart.mf ('k') | dart/language/grammar/example.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
3 # for details. All rights reserved. Use of this source code is governed by a
4 # BSD-style license that can be found in the LICENSE file.
5
6 set -e
7
8 make -q || make
9
10 function listDartFiles() {
11 find "$@" \
12 \( -name xcodebuild -o -name out -o -name eclipse.workspace \) -prune -o \
13 -name \*.dart -print
14 }
15
16 # BUG(5275207): Update grammar instead of filtering out the
17 # interpolation test.
18 listDartFiles ../../runtime | \
19 grep -v NegativeTest | \
20 grep -v PrivateTest.dart | \
21 xargs java -jar out/dart.jar
22
23 listDartFiles ../../corelib | \
24 grep -v NegativeTest | \
25 xargs java -jar out/dart.jar
26
27 listDartFiles ../../compiler | \
28 grep -v Negative | \
29 xargs java -jar out/dart.jar
30
31 # BUG(5275207): Update grammar instead of filtering out the
32 # code that relies on fancy interpolation (Value.dart).
33 listDartFiles ../../client | \
34 grep -v NegativeTest | \
35 grep -v Value.dart | \
36 xargs java -jar out/dart.jar
37
38 listDartFiles ../../tests | \
39 grep -v NegativeTest | \
40 grep -v StaticTopLevelTest.dart | \
41 grep -v StringInterpolate2Test.dart | \
42 xargs java -jar out/dart.jar
43
44 listDartFiles ../../samples | \
45 xargs java -jar out/dart.jar
46
47 listDartFiles .. | \
48 grep -v NegativeTest | \
49 xargs java -jar out/dart.jar
OLDNEW
« no previous file with comments | « dart/language/grammar/dart.mf ('k') | dart/language/grammar/example.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698