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

Unified Diff: lib/devc.dart

Issue 1088703003: Add flag to disable hashing (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 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 | « 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/devc.dart
diff --git a/lib/devc.dart b/lib/devc.dart
index 60e9ac9dbf39cc88187645001f77a1a556805392..66627e826b0630b0b4e0080cea1ec00e22cdc96b 100644
--- a/lib/devc.dart
+++ b/lib/devc.dart
@@ -91,7 +91,7 @@ class Compiler {
return new Compiler._(options, resolver, reporter, rules, checker, graph,
entryNode, generators,
// TODO(sigmund): refactor to support hashing of the dart output?
- options.serverMode && generators.length == 1 && !options.outputDart);
+ options.enableHashing && generators.length == 1 && !options.outputDart);
}
Compiler._(this._options, this._resolver, this._reporter, this._rules,
« 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