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

Unified Diff: lib/src/scope.dart

Issue 2990893002: Update comment style generic syntax (Closed)
Patch Set: rev version no 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
« no previous file with comments | « lib/src/isolate.dart ('k') | lib/src/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/scope.dart
diff --git a/lib/src/scope.dart b/lib/src/scope.dart
index 2f1cc63d0042dbbcf22ece944357b1c7b105cd01..6bf70f98e3e285819a145d7fa3412609bd6aa2c0 100644
--- a/lib/src/scope.dart
+++ b/lib/src/scope.dart
@@ -103,7 +103,7 @@ class Scope {
/// This returns the value returned by [immediate] if it's not `null` or
/// `false`, or else the first non-`null`, non-`false` value returned by
/// [onEvent].
- Future/*<T>*/ getInState/*<T>*/(Stream<Map> stream, Future/*<T>*/ immediate(),
+ Future<T> getInState<T>(Stream<Map> stream, Future<T> immediate(),
onEvent(Map json)) async {
var completer = new Completer.sync();
« no previous file with comments | « lib/src/isolate.dart ('k') | lib/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698