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

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

Issue 10548047: Remove frog from the repository. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Move test and update apidoc.gyp. Created 8 years, 6 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 | « frog/world.dart ('k') | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dartdoc/frog/reader.dart
diff --git a/lib/dartdoc/frog/reader.dart b/lib/dartdoc/frog/reader.dart
index a35125c94ad8f61e0efebd0f35ccdb72d3958408..f142f3ff806bcd3555c849d5d2ef5ba3916c357e 100644
--- a/lib/dartdoc/frog/reader.dart
+++ b/lib/dartdoc/frog/reader.dart
@@ -34,17 +34,25 @@ class LibraryReader {
};
} else if (options.config == 'sdk') {
_specialLibs = {
- 'dart:core': joinPaths(options.libDir, 'core/core_frog.dart'),
+ 'dart:core': joinPaths(options.libDir,
+ 'dartdoc/frog/lib/corelib.dart'),
'dart:coreimpl': joinPaths(options.libDir,
- 'coreimpl/coreimpl_frog.dart'),
- 'dart:html': joinPaths(options.libDir, 'html/html_frog.dart'),
- 'dart:dom_deprecated': joinPaths(options.libDir, 'dom/dom_frog.dart'),
+ 'dartdoc/frog/lib/corelib_impl.dart'),
+ 'dart:html': joinPaths(options.libDir,
+ 'html/html_frog.dart'),
+ 'dart:dom_deprecated': joinPaths(options.libDir,
+ 'dom/dom_frog.dart'),
// TODO(rnystrom): How should we handle dart:io here?
- 'dart:isolate': joinPaths(options.libDir, 'isolate/isolate_frog.dart'),
- 'dart:crypto': joinPaths(options.libDir, 'crypto/crypto.dart'),
- 'dart:json': joinPaths(options.libDir, 'json/json_frog.dart'),
- 'dart:uri': joinPaths(options.libDir, 'uri/uri.dart'),
- 'dart:utf': joinPaths(options.libDir, 'utf/utf.dart'),
+ 'dart:isolate': joinPaths(options.libDir,
+ 'isolate/isolate_frog.dart'),
+ 'dart:crypto': joinPaths(options.libDir,
+ 'crypto/crypto.dart'),
+ 'dart:json': joinPaths(options.libDir,
+ 'json/json_frog.dart'),
+ 'dart:uri': joinPaths(options.libDir,
+ 'uri/uri.dart'),
+ 'dart:utf': joinPaths(options.libDir,
+ 'utf/utf.dart'),
};
} else {
world.error('Invalid configuration ${options.config}');
« no previous file with comments | « frog/world.dart ('k') | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698