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

Unified Diff: pkg/analysis_server/tool/spec/api.dart

Issue 2879273002: Make server use the common protocol classes (Closed)
Patch Set: Created 3 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: pkg/analysis_server/tool/spec/api.dart
diff --git a/pkg/analysis_server/tool/spec/api.dart b/pkg/analysis_server/tool/spec/api.dart
index 746621f2616561ecd1a0155059fc1ebfda5af78d..1fd0c67e649739260463a24219da958e29e0d964 100644
--- a/pkg/analysis_server/tool/spec/api.dart
+++ b/pkg/analysis_server/tool/spec/api.dart
@@ -358,6 +358,8 @@ class TypeDefinition extends ApiNode {
final String name;
final TypeDecl type;
+ bool isExternal = false;
+
TypeDefinition(this.name, this.type, dom.Element html,
{bool experimental, bool deprecated})
: super(html, experimental, deprecated);
@@ -492,6 +494,8 @@ class TypeReference extends TypeDecl {
class Types extends ApiNode with IterableMixin<TypeDefinition> {
final Map<String, TypeDefinition> types;
+ List<String> importUris = <String>[];
+
Types(this.types, dom.Element html, {bool experimental})
: super(html, experimental, false);

Powered by Google App Engine
This is Rietveld 408576698