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

Unified Diff: lib/dartdoc/frog/frogc.dart

Issue 10696191: Frog removed from dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
Index: lib/dartdoc/frog/frogc.dart
diff --git a/lib/dartdoc/frog/frogc.dart b/lib/dartdoc/frog/frogc.dart
deleted file mode 100644
index e121ae6fc75a6a50ed0fa3edb0c11d765861760f..0000000000000000000000000000000000000000
--- a/lib/dartdoc/frog/frogc.dart
+++ /dev/null
@@ -1,25 +0,0 @@
-// 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.
-
-#import('lang.dart', prefix: 'lang');
-#import('frog_leg.dart', prefix: 'leg');
-#import('minfrogc.dart', prefix: 'minfrogc');
-
-void main() {
- lang.legCompile = leg.compile;
- try {
- minfrogc.main();
- } catch (var exception, var trace) {
- try {
- print('Internal error: $exception');
- } catch (var ignored) {
- print('Internal error: error while printing exception');
- }
- try {
- print(trace);
- } finally {
- exit(253);
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698