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

Unified Diff: pkg/analysis_server/test/mocks.dart

Issue 297203003: Use only block Dartdoc comments in analysis_server. (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
« no previous file with comments | « pkg/analysis_server/test/declarative_tests.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/mocks.dart
diff --git a/pkg/analysis_server/test/mocks.dart b/pkg/analysis_server/test/mocks.dart
index 8712032b34e1ce684fbe914355ec46f74e7f0ce4..2940115619166587ef346e0661790d39c600cc14 100644
--- a/pkg/analysis_server/test/mocks.dart
+++ b/pkg/analysis_server/test/mocks.dart
@@ -90,7 +90,9 @@ class MockSocket<T> implements WebSocket {
}
class NoResponseException implements Exception {
- /// The request that was not responded to.
+ /**
+ * The request that was not responded to.
+ */
final Request request;
NoResponseException(this.request);
@@ -126,7 +128,9 @@ class MockServerChannel implements ServerCommunicationChannel {
new Future(() => notificationController.add(notification));
}
- /// Simulate request/response pair
+ /**
+ * Simulate request/response pair.
+ */
Future<Response> sendRequest(Request request) {
var id = request.id;
// Wrap send request in future to simulate websocket
« no previous file with comments | « pkg/analysis_server/test/declarative_tests.dart ('k') | pkg/analysis_server/test/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698