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

Unified Diff: tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart

Issue 2827793002: Format all files under tools and utils directory. (Closed)
Patch Set: Format all files under tools and utils directory. Created 3 years, 8 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 | « tools/dart2js/class_generator/class_generator.dart ('k') | tools/dart2js/sourceMapViewer/web/display.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart
diff --git a/tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart b/tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart
index 2c8533d9e19bb4005c102dcbd6ce1e6bfc7e6bfc..b97460cb4dd9a3417fdaa9b603b183d2648d310b 100644
--- a/tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart
+++ b/tools/dart2js/sourceMapViewer/bin/source_map_viewer.dart
@@ -71,7 +71,7 @@ void startServer() {
Directory directory = new Directory(root);
if (!directory.existsSync()) {
print("Directory '$root' does not exist. "
- "Run 'pub build' to generate the output.");
+ "Run 'pub build' to generate the output.");
exit(-1);
}
@@ -80,10 +80,10 @@ void startServer() {
HttpServer.bind(InternetAddress.LOOPBACK_IP_V4, port).then((server) {
port = server.port;
print("Source mapping server is running on "
- "'http://${server.address.address}:$port/'");
+ "'http://${server.address.address}:$port/'");
Router router = new Router(server)
- ..serve('/file').listen(handleFile)
- ..serve('/map').listen(handleSourceMapFile);
+ ..serve('/file').listen(handleFile)
+ ..serve('/map').listen(handleSourceMapFile);
// Set up default handler. This will serve files from our 'build'
// directory. Disable jail root, as packages are local symlinks.
@@ -133,4 +133,4 @@ startBrowser(String url) {
print(result.stderr);
}
});
-}
+}
« no previous file with comments | « tools/dart2js/class_generator/class_generator.dart ('k') | tools/dart2js/sourceMapViewer/web/display.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698