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

Issue 12610006: Renamed StreamSink to EventSink. Renamed signalError to addError. (Closed)

Created:
7 years, 9 months ago by Lasse Reichstein Nielsen
Modified:
7 years, 9 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Renamed StreamSink to EventSink. Renamed signalError to addError. Committed: https://code.google.com/p/dart/source/detail?r=19683

Patch Set 1 #

Total comments: 12

Patch Set 2 : Addressed comments. Changed inheritance! #

Patch Set 3 : Changed inheritance back! Now create StreamSink instead of EventSink where we create them. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+235 lines, -224 lines) Patch
M pkg/http/lib/src/streamed_request.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/http/lib/src/utils.dart View 3 chunks +6 lines, -6 lines 0 comments Download
M pkg/scheduled_test/lib/src/utils.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M runtime/bin/socket_patch.dart View 3 chunks +3 lines, -3 lines 0 comments Download
M sdk/lib/_internal/compiler/compiler.dart View 1 2 chunks +3 lines, -3 lines 2 comments Download
M sdk/lib/_internal/compiler/implementation/compiler.dart View 1 2 1 chunk +2 lines, -2 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/dart2js.dart View 1 2 2 chunks +6 lines, -6 lines 0 comments Download
M sdk/lib/async/collection_sink.dart View 1 2 2 chunks +5 lines, -4 lines 0 comments Download
M sdk/lib/async/stream.dart View 1 2 13 chunks +47 lines, -32 lines 0 comments Download
M sdk/lib/async/stream_controller.dart View 1 2 3 chunks +6 lines, -5 lines 0 comments Download
M sdk/lib/async/stream_impl.dart View 8 chunks +9 lines, -9 lines 0 comments Download
M sdk/lib/async/stream_pipe.dart View 15 chunks +27 lines, -36 lines 0 comments Download
M sdk/lib/crypto/crypto_base.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M sdk/lib/html/dart2js/html_dart2js.dart View 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/html/dartium/html_dartium.dart View 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/indexed_db/dartium/indexed_db_dartium.dart View 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/io/data_transformer.dart View 3 chunks +4 lines, -4 lines 0 comments Download
M sdk/lib/io/directory_impl.dart View 3 chunks +4 lines, -4 lines 0 comments Download
M sdk/lib/io/file_impl.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M sdk/lib/io/http_impl.dart View 6 chunks +8 lines, -8 lines 0 comments Download
M sdk/lib/io/http_parser.dart View 4 chunks +4 lines, -4 lines 0 comments Download
M sdk/lib/io/io_sink.dart View 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/io/secure_server_socket.dart View 1 chunk +2 lines, -2 lines 0 comments Download
M sdk/lib/io/secure_socket.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M sdk/lib/io/string_transformer.dart View 5 chunks +7 lines, -7 lines 0 comments Download
M sdk/lib/io/websocket_impl.dart View 8 chunks +10 lines, -10 lines 0 comments Download
M sdk/lib/isolate/isolate_stream.dart View 1 2 2 chunks +2 lines, -1 line 0 comments Download
M sdk/lib/utf/utf_stream.dart View 3 chunks +3 lines, -3 lines 0 comments Download
M tests/lib/async/event_helper.dart View 2 8 chunks +15 lines, -13 lines 0 comments Download
M tests/lib/async/stream_controller_async_test.dart View 4 chunks +4 lines, -4 lines 0 comments Download
M tests/lib/async/stream_controller_test.dart View 3 chunks +3 lines, -3 lines 0 comments Download
M tests/lib/async/stream_event_transform_test.dart View 1 chunk +10 lines, -10 lines 0 comments Download
M tests/lib/async/stream_state_helper.dart View 1 chunk +1 line, -1 line 0 comments Download
M tests/standalone/io/string_transformer_test.dart View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_Geolocation.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M tools/dom/templates/html/impl/impl_IDBObjectStore.darttemplate View 1 chunk +1 line, -1 line 0 comments Download
M utils/pub/error_group.dart View 1 chunk +1 line, -1 line 0 comments Download
M utils/pub/io.dart View 7 chunks +14 lines, -14 lines 0 comments Download
M utils/pub/log.dart View 1 chunk +1 line, -1 line 0 comments Download
M utils/pub/utils.dart View 2 chunks +3 lines, -3 lines 0 comments Download
M utils/tests/pub/error_group_test.dart View 7 chunks +8 lines, -8 lines 0 comments Download

Messages

Total messages: 6 (0 generated)
Lasse Reichstein Nielsen
7 years, 9 months ago (2013-03-07 13:20:15 UTC) #1
floitsch
LGTM. https://codereview.chromium.org/12610006/diff/1/sdk/lib/_internal/compiler/compiler.dart File sdk/lib/_internal/compiler/compiler.dart (right): https://codereview.chromium.org/12610006/diff/1/sdk/lib/_internal/compiler/compiler.dart#newcode45 sdk/lib/_internal/compiler/compiler.dart:45: String extension); indentation. https://codereview.chromium.org/12610006/diff/1/sdk/lib/_internal/compiler/implementation/dart2js.dart File sdk/lib/_internal/compiler/implementation/dart2js.dart (right): https://codereview.chromium.org/12610006/diff/1/sdk/lib/_internal/compiler/implementation/dart2js.dart#newcode329 ...
7 years, 9 months ago (2013-03-07 14:19:34 UTC) #2
Lasse Reichstein Nielsen
As discussed, now creates StreamSink objects wherever we would want to create an EventSink (except ...
7 years, 9 months ago (2013-03-08 10:18:25 UTC) #3
ngeoffray
dart2js changes LGTM https://codereview.chromium.org/12610006/diff/8001/sdk/lib/_internal/compiler/compiler.dart File sdk/lib/_internal/compiler/compiler.dart (right): https://codereview.chromium.org/12610006/diff/8001/sdk/lib/_internal/compiler/compiler.dart#newcode25 sdk/lib/_internal/compiler/compiler.dart:25: * Returns a [EventSink] that will ...
7 years, 9 months ago (2013-03-08 10:27:12 UTC) #4
Lasse Reichstein Nielsen
https://codereview.chromium.org/12610006/diff/8001/sdk/lib/_internal/compiler/compiler.dart File sdk/lib/_internal/compiler/compiler.dart (right): https://codereview.chromium.org/12610006/diff/8001/sdk/lib/_internal/compiler/compiler.dart#newcode25 sdk/lib/_internal/compiler/compiler.dart:25: * Returns a [EventSink] that will serve as compiler ...
7 years, 9 months ago (2013-03-08 11:22:37 UTC) #5
Lasse Reichstein Nielsen
7 years, 9 months ago (2013-03-08 11:31:47 UTC) #6
Message was sent while issue was closed.
Committed patchset #3 manually as r19683 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698