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

Unified 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, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/language/grammar/dart.mf ('k') | dart/language/grammar/example.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/language/grammar/doit.sh
diff --git a/dart/language/grammar/doit.sh b/dart/language/grammar/doit.sh
deleted file mode 100755
index 20a024d8a5b6f09828d053caf2649a873f2aabfe..0000000000000000000000000000000000000000
--- a/dart/language/grammar/doit.sh
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-set -e
-
-make -q || make
-
-function listDartFiles() {
- find "$@" \
- \( -name xcodebuild -o -name out -o -name eclipse.workspace \) -prune -o \
- -name \*.dart -print
-}
-
-# BUG(5275207): Update grammar instead of filtering out the
-# interpolation test.
-listDartFiles ../../runtime | \
- grep -v NegativeTest | \
- grep -v PrivateTest.dart | \
- xargs java -jar out/dart.jar
-
-listDartFiles ../../corelib | \
- grep -v NegativeTest | \
- xargs java -jar out/dart.jar
-
-listDartFiles ../../compiler | \
- grep -v Negative | \
- xargs java -jar out/dart.jar
-
-# BUG(5275207): Update grammar instead of filtering out the
-# code that relies on fancy interpolation (Value.dart).
-listDartFiles ../../client | \
- grep -v NegativeTest | \
- grep -v Value.dart | \
- xargs java -jar out/dart.jar
-
-listDartFiles ../../tests | \
- grep -v NegativeTest | \
- grep -v StaticTopLevelTest.dart | \
- grep -v StringInterpolate2Test.dart | \
- xargs java -jar out/dart.jar
-
-listDartFiles ../../samples | \
- xargs java -jar out/dart.jar
-
-listDartFiles .. | \
- grep -v NegativeTest | \
- xargs java -jar out/dart.jar
« 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