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

Issue 1890973003: pkg/analyzer: support latest pkg/crypto version (Closed)

Created:
4 years, 8 months ago by kevmoo
Modified:
4 years, 8 months ago
CC:
reviews_dartlang.org
Base URL:
https://github.com/dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 4

Patch Set 2 : fix tests #

Patch Set 3 : oops #

Patch Set 4 : wrong sink #

Patch Set 5 : fix latest test #

Total comments: 5

Patch Set 6 : nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+90 lines, -63 lines) Patch
M DEPS View 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/analyzer/lib/src/summary/incremental_cache.dart View 1 2 3 4 5 6 chunks +27 lines, -8 lines 0 comments Download
M pkg/analyzer/lib/src/summary/summarize_elements.dart View 2 chunks +2 lines, -3 lines 0 comments Download
M pkg/analyzer/pubspec.yaml View 1 2 3 4 5 1 chunk +1 line, -1 line 0 comments Download
M tests/standalone/io/addlatexhash_test.dart View 1 2 3 4 2 chunks +20 lines, -12 lines 0 comments Download
M tests/standalone/io/http_auth_digest_test.dart View 1 3 chunks +9 lines, -10 lines 0 comments Download
M tests/standalone/io/http_auth_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/standalone/io/http_proxy_advanced_test.dart View 1 4 chunks +9 lines, -11 lines 0 comments Download
M tests/standalone/io/http_proxy_test.dart View 1 1 chunk +1 line, -1 line 0 comments Download
M tests/standalone/io/web_socket_compression_test.dart View 1 3 chunks +4 lines, -4 lines 0 comments Download
M tests/standalone/io/web_socket_test.dart View 1 3 chunks +4 lines, -3 lines 0 comments Download
M tools/addlatexhash.dart View 1 2 3 4 3 chunks +10 lines, -7 lines 0 comments Download

Messages

Total messages: 12 (2 generated)
kevmoo
Here's a start Sadly, I can't continue this until a number of io tests that ...
4 years, 8 months ago (2016-04-14 21:48:54 UTC) #2
nweiz
https://codereview.chromium.org/1890973003/diff/1/pkg/analyzer/lib/src/summary/incremental_cache.dart File pkg/analyzer/lib/src/summary/incremental_cache.dart (right): https://codereview.chromium.org/1890973003/diff/1/pkg/analyzer/lib/src/summary/incremental_cache.dart#newcode307 pkg/analyzer/lib/src/summary/incremental_cache.dart:307: return md5.convert(digestList).bytes; All you're doing here is a very ...
4 years, 8 months ago (2016-04-14 21:53:09 UTC) #3
Brian Wilkerson
> I can't continue this until a number of io tests that use pkg/convert are ...
4 years, 8 months ago (2016-04-14 21:53:13 UTC) #4
kevmoo
PTAL https://codereview.chromium.org/1890973003/diff/1/pkg/analyzer/lib/src/summary/incremental_cache.dart File pkg/analyzer/lib/src/summary/incremental_cache.dart (right): https://codereview.chromium.org/1890973003/diff/1/pkg/analyzer/lib/src/summary/incremental_cache.dart#newcode307 pkg/analyzer/lib/src/summary/incremental_cache.dart:307: return md5.convert(digestList).bytes; On 2016/04/14 21:53:09, nweiz wrote: > ...
4 years, 8 months ago (2016-04-14 23:13:35 UTC) #5
Brian Wilkerson
lgtm, but you should wait for Paul's review.
4 years, 8 months ago (2016-04-14 23:23:01 UTC) #6
Paul Berry
lgtm https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart File pkg/analyzer/lib/src/summary/incremental_cache.dart (right): https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart#newcode312 pkg/analyzer/lib/src/summary/incremental_cache.dart:312: // TODO: this call to `close` should not ...
4 years, 8 months ago (2016-04-15 13:16:00 UTC) #7
kevmoo
https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart File pkg/analyzer/lib/src/summary/incremental_cache.dart (right): https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart#newcode312 pkg/analyzer/lib/src/summary/incremental_cache.dart:312: // TODO: this call to `close` should not be ...
4 years, 8 months ago (2016-04-15 16:57:35 UTC) #8
kevmoo
Committed patchset #6 (id:100001) manually as 5b5312a67c1c5f6c40564a9f9278e2011099cd89 (presubmit successful).
4 years, 8 months ago (2016-04-15 16:59:43 UTC) #10
nweiz
https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart File pkg/analyzer/lib/src/summary/incremental_cache.dart (right): https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/summary/incremental_cache.dart#newcode314 pkg/analyzer/lib/src/summary/incremental_cache.dart:314: digestSink.close(); Heads up: this call will actually throw an ...
4 years, 8 months ago (2016-04-15 19:05:11 UTC) #11
Paul Berry
4 years, 8 months ago (2016-04-15 19:11:01 UTC) #12
Message was sent while issue was closed.
On 2016/04/15 19:05:11, nweiz wrote:
>
https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/su...
> File pkg/analyzer/lib/src/summary/incremental_cache.dart (right):
> 
>
https://codereview.chromium.org/1890973003/diff/80001/pkg/analyzer/lib/src/su...
> pkg/analyzer/lib/src/summary/incremental_cache.dart:314: digestSink.close();
> Heads up: this call will actually throw an exception once the crypto issue is
> fixed.

Which crypto issue?

Powered by Google App Engine
This is Rietveld 408576698