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

Issue 876633005: Use async/await in edit_domain. (Closed)

Created:
5 years, 11 months ago by scheglov
Modified:
5 years, 11 months ago
CC:
reviews_dartlang.org
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+79 lines, -97 lines) Patch
M pkg/analysis_server/lib/src/edit/edit_domain.dart View 3 chunks +79 lines, -97 lines 2 comments Download

Messages

Total messages: 4 (0 generated)
scheglov
5 years, 11 months ago (2015-01-26 22:53:56 UTC) #1
Brian Wilkerson
LGTM
5 years, 11 months ago (2015-01-26 23:12:35 UTC) #2
scheglov
Committed patchset #1 (id:1) manually as 43162 (presubmit successful).
5 years, 11 months ago (2015-01-26 23:13:51 UTC) #3
Paul Berry
5 years, 11 months ago (2015-01-26 23:14:21 UTC) #4
Message was sent while issue was closed.
lgtm

https://codereview.chromium.org/876633005/diff/1/pkg/analysis_server/lib/src/...
File pkg/analysis_server/lib/src/edit/edit_domain.dart (right):

https://codereview.chromium.org/876633005/diff/1/pkg/analysis_server/lib/src/...
pkg/analysis_server/lib/src/edit/edit_domain.dart:311: return
_sendResultResponse();
This looks strange because _sendResultResponse() returns void.  Can we change it
to:

_sendResultResponse();
return;

(similar comment applies to the other calls to _sendResultResponse() below)

https://codereview.chromium.org/876633005/diff/1/pkg/analysis_server/lib/src/...
pkg/analysis_server/lib/src/edit/edit_domain.dart:358: _init(RefactoringKind
kind, String file,
Nit: annotate that the return type of the function is Future.

Powered by Google App Engine
This is Rietveld 408576698