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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java

Issue 610863004: Start implementing checked mode compile time errors in analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes based on review comments and in-person discussion Created 6 years, 3 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
Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
index a25e5e28e21e2cb4716d89ada91851e16ea9ac24..c883679fcbc68d9a8079372858b0ecbdd33f347c 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/context/AnalysisContextImpl.java
@@ -2081,6 +2081,7 @@ public class AnalysisContextImpl implements InternalAnalysisContext {
this.options.setEnableAsync(options.getEnableAsync());
this.options.setEnableDeferredLoading(options.getEnableDeferredLoading());
this.options.setEnableEnum(options.getEnableEnum());
+ this.options.setEnableTypeChecks(options.getEnableTypeChecks());
this.options.setDart2jsHint(options.getDart2jsHint());
this.options.setHint(options.getHint());
this.options.setIncremental(options.getIncremental());

Powered by Google App Engine
This is Rietveld 408576698