mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 14:32:24 +00:00
Fix failures caused by earlier CL
R=paulberry@google.com Review URL: https://codereview.chromium.org/2523853002 .
This commit is contained in:
parent
1767def635
commit
4e762c8dbf
1 changed files with 39 additions and 0 deletions
|
@ -616,6 +616,14 @@ var v = new C().m(1, b: 'bbb', c: 2.0);
|
||||||
.test_unsafeBlockClosureInference_functionCall_explicitDynamicParam_viaExpr2();
|
.test_unsafeBlockClosureInference_functionCall_explicitDynamicParam_viaExpr2();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
@failingTest
|
||||||
|
void
|
||||||
|
test_unsafeBlockClosureInference_functionCall_explicitDynamicParam_viaExpr2_comment() {
|
||||||
|
super
|
||||||
|
.test_unsafeBlockClosureInference_functionCall_explicitDynamicParam_viaExpr2_comment();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@failingTest
|
@failingTest
|
||||||
void
|
void
|
||||||
|
@ -624,12 +632,28 @@ var v = new C().m(1, b: 'bbb', c: 2.0);
|
||||||
.test_unsafeBlockClosureInference_functionCall_explicitTypeParam_viaExpr2();
|
.test_unsafeBlockClosureInference_functionCall_explicitTypeParam_viaExpr2();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
@failingTest
|
||||||
|
void
|
||||||
|
test_unsafeBlockClosureInference_functionCall_explicitTypeParam_viaExpr2_comment() {
|
||||||
|
super
|
||||||
|
.test_unsafeBlockClosureInference_functionCall_explicitTypeParam_viaExpr2_comment();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@failingTest
|
@failingTest
|
||||||
void test_unsafeBlockClosureInference_functionCall_implicitTypeParam() {
|
void test_unsafeBlockClosureInference_functionCall_implicitTypeParam() {
|
||||||
super.test_unsafeBlockClosureInference_functionCall_implicitTypeParam();
|
super.test_unsafeBlockClosureInference_functionCall_implicitTypeParam();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
@failingTest
|
||||||
|
void
|
||||||
|
test_unsafeBlockClosureInference_functionCall_implicitTypeParam_comment() {
|
||||||
|
super
|
||||||
|
.test_unsafeBlockClosureInference_functionCall_implicitTypeParam_comment();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@failingTest
|
@failingTest
|
||||||
void
|
void
|
||||||
|
@ -638,6 +662,14 @@ var v = new C().m(1, b: 'bbb', c: 2.0);
|
||||||
.test_unsafeBlockClosureInference_functionCall_implicitTypeParam_viaExpr();
|
.test_unsafeBlockClosureInference_functionCall_implicitTypeParam_viaExpr();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
@failingTest
|
||||||
|
void
|
||||||
|
test_unsafeBlockClosureInference_functionCall_implicitTypeParam_viaExpr_comment() {
|
||||||
|
super
|
||||||
|
.test_unsafeBlockClosureInference_functionCall_implicitTypeParam_viaExpr_comment();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@failingTest
|
@failingTest
|
||||||
void test_unsafeBlockClosureInference_functionCall_noTypeParam_viaExpr() {
|
void test_unsafeBlockClosureInference_functionCall_noTypeParam_viaExpr() {
|
||||||
|
@ -662,6 +694,13 @@ var v = new C().m(1, b: 'bbb', c: 2.0);
|
||||||
super.test_unsafeBlockClosureInference_methodCall_implicitTypeParam();
|
super.test_unsafeBlockClosureInference_methodCall_implicitTypeParam();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
@failingTest
|
||||||
|
void test_unsafeBlockClosureInference_methodCall_implicitTypeParam_comment() {
|
||||||
|
super
|
||||||
|
.test_unsafeBlockClosureInference_methodCall_implicitTypeParam_comment();
|
||||||
|
}
|
||||||
|
|
||||||
LibraryElementImpl _checkSource(
|
LibraryElementImpl _checkSource(
|
||||||
SummaryResynthesizer resynthesizer, Source source) {
|
SummaryResynthesizer resynthesizer, Source source) {
|
||||||
LibraryElementImpl resynthesized =
|
LibraryElementImpl resynthesized =
|
||||||
|
|
Loading…
Reference in a new issue