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

Unified Diff: lib/src/codegen/js_codegen.dart

Issue 980103002: Disable infer-from-overrides by default (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Reformat Created 5 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 | « no previous file | lib/src/options.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/codegen/js_codegen.dart
diff --git a/lib/src/codegen/js_codegen.dart b/lib/src/codegen/js_codegen.dart
index 848f9b8aabf42bf2727c4ea9504d25c07c9f631d..cab929bd70d137c3efa53f87444d8ac90046572a 100644
--- a/lib/src/codegen/js_codegen.dart
+++ b/lib/src/codegen/js_codegen.dart
@@ -1936,9 +1936,8 @@ class JSGenerator extends CodeGenerator {
if (options.emitSourceMaps) {
var outFilename = path.basename(outputPath);
var printer = new srcmaps.Printer(outFilename);
- _writeNode(
- new SourceMapPrintingContext(printer, path.dirname(outputPath)),
- jsTree);
+ _writeNode(new SourceMapPrintingContext(
+ printer, path.dirname(outputPath)), jsTree);
printer.add('//# sourceMappingURL=$outFilename.map');
// Write output file and source map
new File(outputPath).writeAsStringSync(printer.text);
« no previous file with comments | « no previous file | lib/src/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698