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

Issue 46883011: Fixed expect, protect methods to allow any set of arguments (Closed)

Created:
7 years, 1 month ago by kevmoo-old
Modified:
7 years, 1 month ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Fixed expect, protect methods to allow any set of arguments removed dependency on meta, fixed dart2js warning about double type check R=sigmund@google.com Committed: https://code.google.com/p/dart/source/detail?r=29487

Patch Set 1 #

Total comments: 6

Patch Set 2 : review nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+101 lines, -88 lines) Patch
M pkg/unittest/lib/matcher.dart View 1 chunk +0 lines, -1 line 0 comments Download
M pkg/unittest/lib/src/numeric_matchers.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/unittest/lib/unittest.dart View 1 1 chunk +100 lines, -86 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
kevmoo-old
Eliminated a lot of siggi's TODOs Made methods able to handle arbitrary arguments, including positional ...
7 years, 1 month ago (2013-10-29 18:51:04 UTC) #1
Siggi Cherem (dart-lang)
nice! Thanks Kevin! Some suggestions below, but otherwise lgtm https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dart File pkg/unittest/lib/unittest.dart (right): https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dart#newcode458 pkg/unittest/lib/unittest.dart:458: ...
7 years, 1 month ago (2013-10-29 20:12:16 UTC) #2
kevmoo-old
https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dart File pkg/unittest/lib/unittest.dart (right): https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dart#newcode458 pkg/unittest/lib/unittest.dart:458: if(invocation.memberName != #call) return super.noSuchMethod(invocation); On 2013/10/29 20:12:16, Siggi ...
7 years, 1 month ago (2013-10-29 20:40:24 UTC) #3
kevmoo-old
Committed patchset #2 manually as r29487 (presubmit successful).
7 years, 1 month ago (2013-10-29 20:43:29 UTC) #4
Siggi Cherem (dart-lang)
7 years, 1 month ago (2013-10-29 20:54:27 UTC) #5
Message was sent while issue was closed.
On 2013/10/29 20:40:24, kevmoo wrote:
> https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dart
> File pkg/unittest/lib/unittest.dart (right):
> 
>
https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dar...
> pkg/unittest/lib/unittest.dart:458: if(invocation.memberName != #call) return
> super.noSuchMethod(invocation);
> On 2013/10/29 20:12:16, Siggi Cherem (dart-lang) wrote:
> > nit: missing space ("if (")
> 
> Done.
> 
>
https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dar...
> pkg/unittest/lib/unittest.dart:463: return Function.apply(callback,
> invocation.positionalArguments, invocation.namedArguments);
> On 2013/10/29 20:12:16, Siggi Cherem (dart-lang) wrote:
> > nit: 80 column.
> 
> Done.
> 
>
https://codereview.chromium.org/46883011/diff/1/pkg/unittest/lib/unittest.dar...
> pkg/unittest/lib/unittest.dart:473: Function get asFunction {
> On 2013/10/29 20:12:16, Siggi Cherem (dart-lang) wrote:
> > How about add 'implements Function' on the top instead?
> > 
> > If not, consider changing this function as:
> > 
> > Function get asFunction => (this as dynamic);
> 
> Then we get warnings about not implementing 'call' which means we should add
the
> proxy attribute.

weird - we get that warning even though 'call' is not declared in Function? I
thought the editor no longer presented warnings if you say 'implements X' and
explicitly have a 'noSuchMethod' on the same declaration.

> 
> Added a todo for once the annotations settle down...but not critical.

Powered by Google App Engine
This is Rietveld 408576698