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

Unified Diff: editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java

Issue 263213007: New analysis_server snapshot and completion.dart in analysis_services. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java
diff --git a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java
index 12bf47b013b27142026cdff0f57cb870d032942b..6425449dce0eaac88d6c24105d27ceb70f660b88 100644
--- a/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java
+++ b/editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java
@@ -804,7 +804,8 @@ public class MainEngine {
context,
unit,
"ht",
- new String[] {"com.google.dart.engine.html."});
+ new String[] {"com.google.dart.engine.html."},
+ false);
return unit;
}
@@ -858,7 +859,8 @@ public class MainEngine {
context,
unit,
"sc",
- new String[] {"com.google.dart.engine.scanner."});
+ new String[] {"com.google.dart.engine.scanner."},
+ false);
return unit;
}
@@ -897,7 +899,8 @@ public class MainEngine {
context,
unit,
"ht",
- new String[] {"com.google.dart.engine.html."});
+ new String[] {"com.google.dart.engine.html."},
+ false);
unit.accept(new RecursiveAstVisitor<Void>() {
@Override
public Void visitCatchClause(CatchClause node) {
@@ -1035,12 +1038,14 @@ public class MainEngine {
context,
unit,
"sc",
- new String[] {"com.google.dart.engine.scanner."});
+ new String[] {"com.google.dart.engine.scanner."},
+ false);
EngineSemanticProcessor.useImportPrefix(
context,
unit,
"ht",
- new String[] {"com.google.dart.engine.html."});
+ new String[] {"com.google.dart.engine.html."},
+ false);
// done
return unit;
}

Powered by Google App Engine
This is Rietveld 408576698