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

Unified Diff: frog/presubmit.py

Issue 8952006: Fix factories in Frog to correspond to the new syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merged, and update test status Created 9 years 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 | « frog/parser.dart ('k') | frog/scripts/tree_gen.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/presubmit.py
diff --git a/frog/presubmit.py b/frog/presubmit.py
index 2b65682e3ed8ee178c04c9a3e584eccaa82bc252..8ddbde1253da838d39e4e6a8524cfedb96fe8549 100755
--- a/frog/presubmit.py
+++ b/frog/presubmit.py
@@ -97,7 +97,9 @@ def SelfHost():
# Selfhost Production
start = time.time()
- RunCommand('./minfrog', '--out=minfrog', '--warnings_as_errors',
+ # TODO(jmesserly): --warnings_as_errors disabled until corelib is moved to
+ # new factory syntax.
+ RunCommand('./minfrog', '--out=minfrog', # '--warnings_as_errors',
'minfrog.dart', 'tests/hello.dart', verbose=True)
elapsed = time.time() - start
size = os.path.getsize('./minfrog') / 1024
« no previous file with comments | « frog/parser.dart ('k') | frog/scripts/tree_gen.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698