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

Unified Diff: frog/reader.dart

Issue 9374030: Move json to lib/json/{json.dart, json_frog.dart} (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 8 years, 10 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/lib/json_frog.dart ('k') | frog/server/dart_json.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/reader.dart
===================================================================
--- frog/reader.dart (revision 4099)
+++ frog/reader.dart (working copy)
@@ -19,7 +19,7 @@
'../../client/html/release/htmlimpl.dart'),
'dart:dom': joinPaths(options.libDir,
'../../client/dom/frog/dom_frog.dart'),
- 'dart:json': joinPaths(options.libDir, 'json_frog.dart'),
+ 'dart:json': joinPaths(options.libDir, '../../lib/json/json_frog.dart'),
};
} else if (options.config == 'sdk') {
_specialLibs = {
@@ -29,7 +29,7 @@
'dart:html': joinPaths(options.libDir, 'html/html.dart'),
'dart:htmlimpl': joinPaths(options.libDir, 'htmlimpl/htmlimpl.dart'),
'dart:dom': joinPaths(options.libDir, 'dom/frog/dom_frog.dart'),
- 'dart:json': joinPaths(options.libDir, 'json/json_frog.dart'),
+ 'dart:json': joinPaths(options.libDir, '../../lib/json/json_frog.dart'),
};
} else {
world.error('Invalid configuration ${options.config}');
« no previous file with comments | « frog/lib/json_frog.dart ('k') | frog/server/dart_json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698