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

Unified Diff: pkg/analysis_server/lib/src/computer/imported_elements_computer.dart

Issue 2972833002: Initial implementation of copy/paste support (Closed)
Patch Set: Created 3 years, 5 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/lib/src/computer/imported_elements_computer.dart
diff --git a/pkg/analysis_server/lib/src/computer/imported_elements_computer.dart b/pkg/analysis_server/lib/src/computer/imported_elements_computer.dart
new file mode 100644
index 0000000000000000000000000000000000000000..058a6ec1dac3f42e1f9956fee223684c1bf3b930
--- /dev/null
+++ b/pkg/analysis_server/lib/src/computer/imported_elements_computer.dart
@@ -0,0 +1,43 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import 'package:analysis_server/protocol/protocol_generated.dart';
+import 'package:analyzer/dart/ast/ast.dart';
+
+/**
+ * An object used to compute the list of elements referenced within a given
+ * region of a compilation unit that are imported into the compilation unit's
+ * library.
+ */
+class ImportedElementsComputer {
+ /**
+ * The compilation unit in which the elements are referenced.
+ */
+ final CompilationUnit unit;
+
+ /**
+ * The offset of the region containing the references to be returned.
+ */
+ final int offset;
+
+ /**
+ * The length of the region containing the references to be returned.
+ */
+ final int length;
+
+ /**
+ * Initialize a newly created computer to compute the list of imported
+ * elements referenced in the given [unit] within the region with the given
+ * [offset] and [length].
+ */
+ ImportedElementsComputer(this.unit, this.offset, this.length);
+
+ /**
+ * Compute and return the list of imported elements.
+ */
+ List<ImportedElements> compute() {
+ // TODO(brianwilkerson) Implement this.
+ return <ImportedElements>[];
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698