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

Issue 2822173002: Warn when adding something to a closed sink and improve documentation (Closed)

Created:
3 years, 8 months ago by floitsch
Modified:
3 years, 7 months ago
CC:
reviews_dartlang.org
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Improve documentation (issue 29122). #

Total comments: 22

Patch Set 3 : Address comments. #

Patch Set 4 : Fix tests and update documentation #

Total comments: 4

Patch Set 5 : Address comments. #

Patch Set 6 : Only warn for now. #

Total comments: 6

Patch Set 7 : Address comments. #

Patch Set 8 : Avoid infinite recursion when stderr is closed. #

Patch Set 9 : Fix Zone.print only taking a string and update status files. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+122 lines, -27 lines) Patch
M CHANGELOG.md View 1 2 3 4 5 6 7 8 1 chunk +5 lines, -0 lines 0 comments Download
M sdk/lib/async/stream.dart View 1 2 3 4 5 6 7 8 3 chunks +27 lines, -11 lines 0 comments Download
M sdk/lib/async/stream_controller.dart View 1 2 1 chunk +30 lines, -1 line 0 comments Download
M sdk/lib/async/stream_transformers.dart View 1 2 3 4 5 6 7 8 3 chunks +27 lines, -4 lines 0 comments Download
M sdk/lib/core/sink.dart View 1 2 3 4 1 chunk +4 lines, -4 lines 0 comments Download
M sdk/lib/io/io_sink.dart View 1 2 3 4 5 6 7 2 chunks +23 lines, -3 lines 0 comments Download
M sdk/lib/io/secure_socket.dart View 1 2 3 1 chunk +2 lines, -0 lines 0 comments Download
M tests/standalone/standalone.status View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -4 lines 0 comments Download

Messages

Total messages: 31 (14 generated)
floitsch
3 years, 8 months ago (2017-04-18 13:29:08 UTC) #2
floitsch
Incorporated documentation changes fixing issue 29122.
3 years, 8 months ago (2017-04-19 16:19:56 UTC) #5
floitsch
ping.
3 years, 7 months ago (2017-04-25 17:34:11 UTC) #6
Lasse Reichstein Nielsen
lgtm https://codereview.chromium.org/2822173002/diff/20001/CHANGELOG.md File CHANGELOG.md (right): https://codereview.chromium.org/2822173002/diff/20001/CHANGELOG.md#newcode15 CHANGELOG.md:15: * Adding to a closed sink now throws. ...
3 years, 7 months ago (2017-04-26 08:26:20 UTC) #7
floitsch
https://codereview.chromium.org/2822173002/diff/20001/CHANGELOG.md File CHANGELOG.md (right): https://codereview.chromium.org/2822173002/diff/20001/CHANGELOG.md#newcode15 CHANGELOG.md:15: * Adding to a closed sink now throws. On ...
3 years, 7 months ago (2017-05-01 16:46:25 UTC) #8
floitsch
+whesse: I updated the documentation for SecureSocket.
3 years, 7 months ago (2017-05-03 13:44:06 UTC) #11
Bill Hesse
lgtm https://codereview.chromium.org/2822173002/diff/60001/CHANGELOG.md File CHANGELOG.md (right): https://codereview.chromium.org/2822173002/diff/60001/CHANGELOG.md#newcode18 CHANGELOG.md:18: * Adding to a closed sink now throws. ...
3 years, 7 months ago (2017-05-03 14:10:11 UTC) #13
floitsch
Thanks. https://codereview.chromium.org/2822173002/diff/60001/CHANGELOG.md File CHANGELOG.md (right): https://codereview.chromium.org/2822173002/diff/60001/CHANGELOG.md#newcode18 CHANGELOG.md:18: * Adding to a closed sink now throws. ...
3 years, 7 months ago (2017-05-03 18:28:08 UTC) #14
floitsch
Committed patchset #5 (id:80001) manually as 8e19729b8913c4225ef84e863193e36879947727 (presubmit successful).
3 years, 7 months ago (2017-05-04 09:42:29 UTC) #16
floitsch
Had to revert, because of pub failing. Investigating.
3 years, 7 months ago (2017-05-04 11:30:39 UTC) #18
floitsch
PTAL.
3 years, 7 months ago (2017-05-04 14:21:48 UTC) #22
Lasse Reichstein Nielsen
https://codereview.chromium.org/2822173002/diff/100001/sdk/lib/async/stream_transformers.dart File sdk/lib/async/stream_transformers.dart (right): https://codereview.chromium.org/2822173002/diff/100001/sdk/lib/async/stream_transformers.dart#newcode227 sdk/lib/async/stream_transformers.dart:227: Zone.ROOT.print(" See http://dartbug.com/29554."); Cascade? https://codereview.chromium.org/2822173002/diff/100001/sdk/lib/async/stream_transformers.dart#newcode228 sdk/lib/async/stream_transformers.dart:228: Zone.ROOT.print(StackTrace.current); Consider returning ...
3 years, 7 months ago (2017-05-08 11:31:09 UTC) #23
Lasse Reichstein Nielsen
lgtm
3 years, 7 months ago (2017-05-08 11:31:10 UTC) #24
floitsch
https://codereview.chromium.org/2822173002/diff/100001/sdk/lib/async/stream_transformers.dart File sdk/lib/async/stream_transformers.dart (right): https://codereview.chromium.org/2822173002/diff/100001/sdk/lib/async/stream_transformers.dart#newcode227 sdk/lib/async/stream_transformers.dart:227: Zone.ROOT.print(" See http://dartbug.com/29554."); On 2017/05/08 11:31:08, Lasse Reichstein Nielsen ...
3 years, 7 months ago (2017-05-08 12:22:39 UTC) #25
floitsch
Committed patchset #8 (id:140001) manually as c0090fa01fe59b7982891b8c4e34ed4cabd2296f (presubmit successful).
3 years, 7 months ago (2017-05-08 12:27:13 UTC) #27
floitsch
Needed to change Zone.ROOT.print(StackTrace.current) to call toString() on the stack trace first. Also needed to ...
3 years, 7 months ago (2017-05-08 13:51:59 UTC) #29
floitsch
3 years, 7 months ago (2017-05-08 13:52:25 UTC) #31
Message was sent while issue was closed.
Committed patchset #9 (id:160001) manually as
5202df2238f8585da8a0ea31995acef1a3a59ac2 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698