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

Unified Diff: samples/chat/chat_server_lib.dart

Issue 10986026: Issue 5440. Fixes for exceptions during resolving (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/chat/chat_server_lib.dart
diff --git a/samples/chat/chat_server_lib.dart b/samples/chat/chat_server_lib.dart
index 109a6450c202dcbba541de54d055fe8bca003d4d..191c03404af471c1cd9c9066311e82c3adff9b1d 100644
--- a/samples/chat/chat_server_lib.dart
+++ b/samples/chat/chat_server_lib.dart
@@ -257,7 +257,7 @@ class ChatServerStatus {
ChatServerStatus.started(this._port) : _state = STARTED;
ChatServerStatus.stopping() : _state = STOPPING;
ChatServerStatus.stopped() : _state = STOPPED;
- ChatServerStatus.error([this._error]) : _state = ERROR;
+ ChatServerStatus.error2([this._error]) : _state = ERROR;
bool get isStarting => _state == STARTING;
bool get isStarted => _state == STARTED;
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698