mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
cps_ir: Handle malformed type arguments and type checks.
R=asgerf@google.com Review URL: https://codereview.chromium.org//1156373008
This commit is contained in:
parent
abe76176b6
commit
993338408e
8 changed files with 100 additions and 129 deletions
|
@ -2621,11 +2621,11 @@ class JsIrBuilder extends IrBuilder {
|
|||
arguments.add(value);
|
||||
});
|
||||
return addPrimitive(new ir.TypeExpression(type, arguments));
|
||||
} else if (type is DynamicType) {
|
||||
} else if (type.treatAsDynamic) {
|
||||
return buildNullConstant();
|
||||
} else {
|
||||
// TypedefType can reach here, and possibly other things.
|
||||
throw 'unimplemented translation of type expression $type';
|
||||
throw 'unimplemented translation of type expression $type (${type.kind})';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2675,6 +2675,17 @@ class JsIrBuilder extends IrBuilder {
|
|||
{bool isTypeTest}) {
|
||||
assert(isOpen);
|
||||
assert(isTypeTest != null);
|
||||
|
||||
if (type.isMalformed) {
|
||||
FunctionElement helper = program.throwTypeErrorHelper;
|
||||
ErroneousElement element = type.element;
|
||||
ir.Primitive message = buildStringConstant(element.message);
|
||||
return buildStaticFunctionInvocation(
|
||||
helper,
|
||||
CallStructure.ONE_ARG,
|
||||
<ir.Primitive>[message]);
|
||||
}
|
||||
|
||||
if (isTypeTest) {
|
||||
// For type tests, we must treat specially the rare cases where `null`
|
||||
// satisfies the test (which otherwise never satisfies a type test).
|
||||
|
|
|
@ -2303,6 +2303,8 @@ class GlobalProgramInformation {
|
|||
return cls.typeVariables.isNotEmpty && _backend.classNeedsRti(cls);
|
||||
}
|
||||
|
||||
FunctionElement get throwTypeErrorHelper => _backend.getThrowTypeError();
|
||||
|
||||
ClassElement get nullClass => _compiler.nullClass;
|
||||
}
|
||||
|
||||
|
|
|
@ -9616,7 +9616,6 @@ WebPlatformTest/webstorage/storage_session_setitem_t01: RuntimeError # Please tr
|
|||
[ $compiler == dart2js && $cps_ir ]
|
||||
Language/03_Overview/1_Scoping_A01_t39: Crash # Instance of 'TypeOperator': type check unimplemented for f.
|
||||
Language/03_Overview/1_Scoping_A02_t19: Crash # (switch (1){case 1:var x;break;case 2:var x;break;}): Unhandled node
|
||||
Language/03_Overview/2_Privacy_A01_t06: Crash # Instance of 'TypeOperator': type check unimplemented for _inaccessibleFuncType.
|
||||
Language/07_Classes/07_Classes_A02_t17: Crash # Please triage this failure.
|
||||
Language/07_Classes/07_Classes_A02_t18: Crash # Please triage this failure.
|
||||
Language/07_Classes/07_Classes_A02_t19: Crash # Please triage this failure.
|
||||
|
@ -9629,13 +9628,11 @@ Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t09: Crash # Pl
|
|||
Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t10: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t11: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t16: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/1_Generative_Constructors_A13_t01: Crash # Instance of 'TypeOperator': type check unimplemented for T.
|
||||
Language/07_Classes/6_Constructors/2_Factories_A09_t01: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/2_Factories_A09_t02: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/2_Factories_A09_t03: Crash # Please triage this failure.
|
||||
Language/07_Classes/6_Constructors/2_Factories_A09_t04: Crash # Please triage this failure.
|
||||
Language/10_Generics/09_Generics_A04_t03: Crash # Instance of 'TypeOperator': type check unimplemented for S.
|
||||
Language/10_Generics/10_Generics_A05_t01: Crash # Instance of 'TypeOperator': type check unimplemented for T.
|
||||
Language/10_Generics/09_Generics_A04_t03: Crash # Please triage this failure.
|
||||
Language/12_Expressions/12_Instance_Creation/1_New_A06_t07: RuntimeError # Please triage this failure.
|
||||
Language/12_Expressions/12_Instance_Creation/1_New_A06_t08: Crash # Please triage this failure.
|
||||
Language/12_Expressions/12_Instance_Creation/1_New_A06_t09: RuntimeError # Please triage this failure.
|
||||
|
@ -9650,16 +9647,11 @@ Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t04: Runtime
|
|||
Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t01: RuntimeError # Please triage this failure.
|
||||
Language/12_Expressions/22_Equality_A03_t01: RuntimeError # Please triage this failure.
|
||||
Language/12_Expressions/30_Identifier_Reference_A09_t03: Crash # (i=0): For-loop variable captured in loop header
|
||||
Language/12_Expressions/32_Type_Test_A02_t03: Crash # Instance of 'TypeOperator': type check unimplemented for Undeclared.
|
||||
Language/12_Expressions/32_Type_Test_A02_t04: Crash # Instance of 'TypeOperator': type check unimplemented for G<int, bool>.
|
||||
Language/12_Expressions/32_Type_Test_A02_t07: Crash # Instance of 'TypeOperator': type check unimplemented for G<Unknown>.
|
||||
Language/12_Expressions/33_Type_Cast_A01_t01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A01_t04: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t02: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t03: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t04: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t05: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t06: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t07: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/12_Expressions/33_Type_Cast_A02_t08: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
|
@ -9689,10 +9681,6 @@ Language/13_Statements/09_Switch_A10_t03: Crash # (switch (1){case 0:false;break
|
|||
Language/13_Statements/11_Return_A02_t02: Crash # (try {return 1;}finally {flag=true;}): try/finally
|
||||
Language/13_Statements/11_Return_A02_t03: Crash # (try {return 1;}finally {return 2;}): try/finally
|
||||
Language/13_Statements/11_Try_A01_t01: Crash # (try {throw "";}on int catch (ok){}catch (ok){}finally {}): try/finally
|
||||
Language/13_Statements/11_Try_A03_t01: Crash # Instance of 'TypeOperator': type check unimplemented for Unavailable.
|
||||
Language/13_Statements/11_Try_A03_t02: Crash # Instance of 'TypeOperator': type check unimplemented for Unavailable.
|
||||
Language/13_Statements/11_Try_A03_t03: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
Language/13_Statements/11_Try_A03_t04: Crash # Instance of 'TypeOperator': type check unimplemented for Unavailable.
|
||||
Language/13_Statements/11_Try_A07_t02: Crash # (try {throw ex;}on int catch (i){}on bool catch (b){}finally {isFinallyExecuted=true;}): try/finally
|
||||
Language/13_Statements/11_Try_A08_t01: Crash # try/finally
|
||||
Language/13_Statements/11_Try_A09_t01: Crash # try/finally
|
||||
|
@ -9727,20 +9715,13 @@ Language/14_Libraries_and_Scripts/13_Libraries_and_Scripts_A05_t02: Crash # Inst
|
|||
Language/14_Libraries_and_Scripts/1_Imports_A02_t26: Crash # Instance of 'TypeOperator': type check unimplemented for prefix.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A02_t27: Crash # Instance of 'TypeOperator': type check unimplemented for bar.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A02_t28: Crash # Instance of 'TypeOperator': type check unimplemented for bar.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t02: Crash # Instance of 'TypeOperator': type check unimplemented for foo.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t04: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t05: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t22: Crash # Instance of 'TypeOperator': type check unimplemented for foo.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t24: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t25: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t31: Crash # Instance of 'TypeOperator': type check unimplemented for foo.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t44: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t45: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t64: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/1_Imports_A03_t65: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Language/14_Libraries_and_Scripts/2_Exports_A04_t03: Crash # Instance of 'TypeOperator': type check unimplemented for foo.
|
||||
Language/14_Libraries_and_Scripts/2_Exports_A06_t02: Crash # Instance of 'TypeOperator': type check unimplemented for foo.
|
||||
Language/15_Types/1_Static_Types_A03_t01: Crash # Instance of 'TypeOperator': type check unimplemented for UnknownType.
|
||||
Language/15_Types/3_Type_Declarations/1_Typedef_A01_t03: Crash # Instance of 'TypeOperator': type check unimplemented for f.
|
||||
Language/15_Types/3_Type_Declarations/1_Typedef_A02_t01: Crash # Instance of 'TypeOperator': type check unimplemented for f_t.
|
||||
Language/15_Types/3_Type_Declarations/1_Typedef_A02_t02: Crash # Instance of 'TypeOperator': type check unimplemented for f_t.
|
||||
|
@ -9751,13 +9732,12 @@ Language/15_Types/3_Type_Declarations/1_Typedef_A04_t02: Crash # Instance of 'Ty
|
|||
Language/15_Types/3_Type_Declarations/1_Typedef_A07_t05: Crash # Instance of 'TypeOperator': type check unimplemented for f.
|
||||
Language/15_Types/3_Type_Declarations/1_Typedef_A07_t06: Crash # Instance of 'TypeOperator': type check unimplemented for f.
|
||||
Language/15_Types/3_Type_Declarations/1_Typedef_A07_t07: Crash # Instance of 'TypeOperator': type check unimplemented for f.
|
||||
Language/15_Types/4_Interface_Types_A05_t04: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A10_t04: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A10_t06: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A10_t07: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A10_t08: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A10_t09: Crash # Please triage this failure.
|
||||
Language/15_Types/4_Interface_Types_A11_t04: Crash # Instance of 'TypeOperator': type check unimplemented for S<int>.
|
||||
Language/15_Types/4_Interface_Types_A05_t04: Crash # type expression t1 (typedef)
|
||||
Language/15_Types/4_Interface_Types_A10_t04: Crash # type expression param1 (typedef)
|
||||
Language/15_Types/4_Interface_Types_A10_t06: Crash # type expression f (typedef)
|
||||
Language/15_Types/4_Interface_Types_A10_t07: Crash # type expression f_1 (typedef)
|
||||
Language/15_Types/4_Interface_Types_A10_t08: Crash # type expression t1 (typedef)
|
||||
Language/15_Types/4_Interface_Types_A10_t09: Crash # type expression param1 (typedef)
|
||||
Language/15_Types/4_Interface_Types_A12_t18: Crash # Instance of 'TypeOperator': type check unimplemented for F1.
|
||||
Language/15_Types/5_Function_Types_A01_t01: Crash # Instance of 'TypeOperator': type check unimplemented for check_t.
|
||||
Language/15_Types/5_Function_Types_A01_t02: Crash # Instance of 'TypeOperator': type check unimplemented for t1.
|
||||
|
@ -9903,8 +9883,9 @@ LibTest/core/Invocation/isSetter_A01_t01: Crash # Please triage this failure.
|
|||
LibTest/core/Invocation/memberName_A01_t01: RuntimeError # Please triage this failure.
|
||||
LibTest/core/Invocation/positionalArguments_A01_t01: RuntimeError # Please triage this failure.
|
||||
LibTest/core/List/List_class_A01_t02: Crash # Please triage this failure.
|
||||
LibTest/core/Map/Map_A01_t01: Crash # Please triage this failure.
|
||||
LibTest/core/Object/operator_equality_A01_t01 : Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
LibTest/core/Map/Map_A01_t01: Crash # type expression SomeFunction (typedef)
|
||||
LibTest/core/Object/operator_equality_A01_t01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
LibTest/core/Object/toString_A01_t01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: Crash # Unhandled node
|
||||
LibTest/core/RegExp/Pattern_semantics/splitQueryString_A02_t01: Crash # Unhandled node
|
||||
LibTest/core/Set/add_A01_t03: RuntimeError # Please triage this failure.
|
||||
|
@ -9912,8 +9893,6 @@ LibTest/core/Symbol/Symbol_A01_t03: RuntimeError # Please triage this failure.
|
|||
LibTest/core/Symbol/Symbol_A01_t05: RuntimeError # Please triage this failure.
|
||||
LibTest/core/double/INFINITY_A01_t04: Pass # Please triage this failure.
|
||||
LibTest/core/double/NEGATIVE_INFINITY_A01_t04: Pass # Please triage this failure.
|
||||
LibTest/html/Document/childNodes_A01_t01: Crash # Instance of 'TypeOperator': type check unimplemented for DocumentType.
|
||||
LibTest/html/Document/securityPolicy_A01_t01: Crash # Instance of 'TypeOperator': type check unimplemented for SecurityPolicy.
|
||||
LibTest/html/HttpRequest/abort_A01_t01: Crash # Unhandled node
|
||||
LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: Crash # Unhandled node
|
||||
LibTest/html/HttpRequest/getResponseHeader_A01_t01: Crash # Unhandled node
|
||||
|
@ -9930,6 +9909,7 @@ LibTest/html/Window/resizeTo_A01_t01: Crash # try/finally
|
|||
LibTest/isolate/ReceivePort/drain_A02_t01: Crash # Please triage this failure.
|
||||
LibTest/isolate/ReceivePort/take_A01_t02: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
Utils/tests/Expect/approxEquals_A04_t01: RuntimeError # Please triage this failure.
|
||||
Utils/tests/Expect/equals_A01_t04: RuntimeError # Please triage this failure.
|
||||
Utils/tests/Expect/stringEquals_A02_t01: RuntimeError # Please triage this failure.
|
||||
WebPlatformTest/custom-elements/instantiating/createElementNS_A02_t01: Crash # Unhandled node
|
||||
WebPlatformTest/custom-elements/instantiating/createElementNS_A03_t01: Crash # Unhandled node
|
||||
|
@ -9941,5 +9921,3 @@ WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t01: Crash # Unha
|
|||
WebPlatformTest/custom-elements/instantiating/isAttribute_A01_t02: Crash # Unhandled node
|
||||
WebPlatformTest/html/semantics/forms/the-input-element/datetime_t01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
WebPlatformTest/html/semantics/forms/the-input-element/valueMode_t01: Crash # Unhandled node
|
||||
Utils/tests/Expect/equals_A01_t04 : RuntimeError
|
||||
LibTest/core/Object/toString_A01_t01 : Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
|
|
|
@ -65,6 +65,7 @@ deferred_fail_and_retry_worker_test: SkipByDesign # Uses eval to simulate failed
|
|||
10216a_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
10216b_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
12320_test: Crash # Unhandled node
|
||||
16407_test: Pass # Please triage this failure.
|
||||
17094_test: RuntimeError # Please triage this failure.
|
||||
21666_test: Crash # Instance of 'TypeOperator': type check unimplemented for fInt.
|
||||
22868_test: Crash # cannot handle async/sync*/async* functions
|
||||
|
@ -124,6 +125,5 @@ switch_test/02: Crash # Unhandled node
|
|||
switch_test/none: Crash # (switch (val){}): Unhandled node
|
||||
this_phi_elimination_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_constant_switch_test/none: Crash # (switch (v){}): Unhandled node
|
||||
typevariable_factory_test: Crash # Instance of 'TypeOperator': type check unimplemented for A<T>.
|
||||
typevariable_factory_test: Crash # Please triage this failure.
|
||||
while_test: Timeout # Please triage this failure.
|
||||
16407_test : Pass
|
||||
|
|
|
@ -230,7 +230,7 @@ error_stack_trace_test: Crash # (switch (5){case 5:nested();default:Expect.fail(
|
|||
expando_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
growable_list_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
has_next_iterator_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
hash_map2_test: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, String>.
|
||||
hash_map2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
hash_set_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
hash_set_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
hash_set_type_check_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -240,7 +240,7 @@ int_parse_radix_test/01: Crash # Please triage this failure.
|
|||
int_parse_radix_test/02: Crash # Please triage this failure.
|
||||
int_parse_radix_test/none: Crash # Please triage this failure.
|
||||
iterable_element_at_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_empty_test: Crash # Instance of 'TypeOperator': type check unimplemented for Iterable<int>.
|
||||
iterable_empty_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_expand_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_first_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_first_where_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -248,16 +248,14 @@ iterable_fold_test: Crash # Instance of 'TypeOperator': type check unimplemented
|
|||
iterable_last_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_last_where_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_reduce_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_return_type_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, int>.
|
||||
iterable_return_type_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, int>.
|
||||
iterable_return_type_test/none : RuntimeError
|
||||
iterable_return_type_test/none: RuntimeError # Please triage this failure.
|
||||
iterable_single_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_single_where_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_skip_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_take_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
iterable_to_list_test : RuntimeError
|
||||
iterable_to_set_test : RuntimeError
|
||||
linked_hash_map_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, String>.
|
||||
iterable_to_list_test: RuntimeError # Please triage this failure.
|
||||
iterable_to_set_test: RuntimeError # Please triage this failure.
|
||||
linked_hash_map_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_as_map_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_fill_range_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_first_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -279,12 +277,12 @@ list_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _
|
|||
list_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_to_string2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_to_string_test: RuntimeError # Please triage this failure.
|
||||
map_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, String>.
|
||||
map_test: Crash # Please triage this failure.
|
||||
map_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
map_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
map_to_string_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
map_values2_test : RuntimeError
|
||||
map_values3_test : RuntimeError
|
||||
map_values4_test : RuntimeError
|
||||
map_values2_test: RuntimeError # Please triage this failure.
|
||||
map_values3_test: RuntimeError # Please triage this failure.
|
||||
map_values4_test: RuntimeError # Please triage this failure.
|
||||
null_nosuchmethod_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
num_clamp_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
num_parse_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -305,7 +303,7 @@ regexp/regexp_test: Crash # Instance of 'TypeOperator': type check unimplemented
|
|||
set_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
set_to_string_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
shuffle_test: RuntimeError # Please triage this failure.
|
||||
splay_tree_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for Map<int, String>.
|
||||
splay_tree_from_iterables_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
splay_tree_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
string_buffer_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
string_codeunits_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
|
|
@ -426,10 +426,10 @@ canvas_pixel_array_type_alias_test: Crash # try/finally
|
|||
canvas_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
canvasrenderingcontext2d_test: Crash # try/finally
|
||||
cdata_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
client_rect_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<Rectangle>.
|
||||
client_rect_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
cross_domain_iframe_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
crypto_test: Crash # try/finally
|
||||
css_rule_list_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<CssRule>.
|
||||
css_rule_list_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
css_test: Crash # try/finally
|
||||
cssstyledeclaration_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
custom/attribute_changed_callback_test: Crash # try/finally
|
||||
|
@ -485,7 +485,7 @@ htmlcollection_test: Crash # Instance of 'TypeOperator': type casts not implemen
|
|||
htmlelement_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
htmloptionscollection_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
indexeddb_1_test: Crash # try/finally
|
||||
indexeddb_2_test: Crash # Please triage this failure.
|
||||
indexeddb_2_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
indexeddb_3_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
indexeddb_4_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
indexeddb_5_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
|
@ -541,7 +541,7 @@ typed_arrays_arraybuffer_test: Crash # Instance of 'TypeOperator': type casts no
|
|||
typed_arrays_dataview_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
typed_arrays_range_checks_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
typed_arrays_simd_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
typing_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<StyleSheet>.
|
||||
typing_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
unknownelement_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
uri_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
url_test: Crash # try/finally
|
||||
|
|
|
@ -417,10 +417,10 @@ class_literal_test/25: Crash # Instance of 'TypeOperator': type check unimplemen
|
|||
class_override_test/00: Crash # (try {instance.foo();}on NoSuchMethodError catch (error){}finally {}): try/finally
|
||||
class_override_test/none: Crash # (try {instance.foo();}finally {}): try/finally
|
||||
closure3_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
closure_in_constructor_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<int>.
|
||||
closure_in_constructor_test: Crash # Please triage this failure.
|
||||
closure_internals_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
closure_self_reference_test: Crash # (try {return inner(value-1);}finally {counter++ ;}): try/finally
|
||||
closure_type_variables_test: Crash # Instance of 'TypeOperator': type check unimplemented for A<int>.
|
||||
closure_type_variables_test: Crash # Please triage this failure.
|
||||
compile_time_constant_a_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
compile_time_constant_b_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
conditional_method_invocation_test/01: RuntimeError # Please triage this failure.
|
||||
|
@ -484,7 +484,7 @@ const_switch_test/04: Crash # Unhandled node
|
|||
constructor10_test/01: Crash # Please triage this failure.
|
||||
constructor10_test/02: Crash # Please triage this failure.
|
||||
constructor11_test: Crash # Please triage this failure.
|
||||
constructor12_test: RuntimeError
|
||||
constructor12_test: RuntimeError # Please triage this failure.
|
||||
constructor3_negative_test: Crash # Please triage this failure.
|
||||
constructor5_test: Crash # Please triage this failure.
|
||||
constructor_call_wrong_argument_count_negative_test: Crash # Please triage this failure.
|
||||
|
@ -555,7 +555,7 @@ double_to_string_as_exponential2_test: Crash # Instance of 'TypeOperator': type
|
|||
double_to_string_as_fixed2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
double_to_string_as_precision2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
dynamic_prefix_core_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
dynamic_test: Crash # Instance of 'TypeOperator': type check unimplemented for Iface<dynamic, num>.
|
||||
dynamic_test: Crash # Instance of 'TypeOperator': type check unimplemented for F1<int>.
|
||||
empty_block_case_test: Crash # (switch (1){case 1:{}case 2:Expect.equals(true,false);}): Unhandled node
|
||||
enum_mirror_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
enum_private_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -574,13 +574,12 @@ execute_finally7_test: Crash # try/finally
|
|||
execute_finally8_test: Crash # (try {sum+= 1;return 'hi';}finally {sum+= 1;throw 'ball';sum+= 1;}): try/finally
|
||||
execute_finally9_test: Crash # try/finally
|
||||
factory_redirection3_cyclic_test/01: Crash # Please triage this failure.
|
||||
factory_redirection_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for A<List>.
|
||||
factory_redirection_test/04: Crash # Instance of 'TypeOperator': type check unimplemented for A<List>.
|
||||
factory_redirection_test/05: MissingRuntimeError
|
||||
factory_redirection_test/06: MissingRuntimeError
|
||||
factory_redirection_test/04: Crash # Please triage this failure.
|
||||
factory_redirection_test/05: MissingRuntimeError # Please triage this failure.
|
||||
factory_redirection_test/06: MissingRuntimeError # Please triage this failure.
|
||||
factory_return_type_checked_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
factory_type_parameter2_test: Crash # Please triage this failure.
|
||||
factory_type_parameter_test: Crash # Instance of 'TypeOperator': type check unimplemented for A<List>.
|
||||
factory_type_parameter_test: Crash # Please triage this failure.
|
||||
final_super_field_set_test/01: RuntimeError # Please triage this failure.
|
||||
finally_test: Crash # (try {i=12;}finally {Expect.equals(12,i);executedFinally=true;}): try/finally
|
||||
first_class_types_literals_test/03: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -610,7 +609,7 @@ for2_test: Crash # Please triage this failure.
|
|||
for_variable_capture_test: Crash # (i=0): For-loop variable captured in loop header
|
||||
function_propagation_test: Crash # Instance of 'TypeOperator': type check unimplemented for F.
|
||||
function_subtype0_test: Crash # Instance of 'TypeOperator': type check unimplemented for t__.
|
||||
function_subtype1_test: Crash # Please triage this failure.
|
||||
function_subtype1_test: Crash # type expression int_ (typedef)
|
||||
function_subtype2_test: Crash # Instance of 'TypeOperator': type check unimplemented for T1.
|
||||
function_subtype_bound_closure0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_bound_closure1_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<bool>.
|
||||
|
@ -631,7 +630,7 @@ function_subtype_cast3_test: Crash # Instance of 'TypeOperator': type casts not
|
|||
function_subtype_checked0_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
function_subtype_closure0_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
function_subtype_closure1_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
function_subtype_factory0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<T>.
|
||||
function_subtype_factory0_test: Crash # Please triage this failure.
|
||||
function_subtype_inline0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_local0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_local1_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<bool>.
|
||||
|
@ -640,24 +639,24 @@ function_subtype_local3_test: Crash # Instance of 'TypeOperator': type check uni
|
|||
function_subtype_local4_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_local5_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<T>.
|
||||
function_subtype_named1_test: Crash # Instance of 'TypeOperator': type check unimplemented for t_void_.
|
||||
function_subtype_named2_test: Crash # Please triage this failure.
|
||||
function_subtype_named2_test: Crash # type expression void___a_int (typedef)
|
||||
function_subtype_not0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_not1_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_not2_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<T>.
|
||||
function_subtype_not3_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<T>.
|
||||
function_subtype_optional1_test: Crash # Instance of 'TypeOperator': type check unimplemented for t_void_.
|
||||
function_subtype_optional2_test: Crash # Please triage this failure.
|
||||
function_subtype_optional2_test: Crash # type expression void___int (typedef)
|
||||
function_subtype_setter0_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
function_subtype_simple0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Args0.
|
||||
function_subtype_simple1_test: Crash # Instance of 'TypeOperator': type check unimplemented for Args0.
|
||||
function_subtype_simple2_test: Crash # Instance of 'TypeOperator': type check unimplemented for Args0.
|
||||
function_subtype_top_level0_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo.
|
||||
function_subtype_top_level1_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<T>.
|
||||
function_subtype_typearg0_test: Crash # Please triage this failure.
|
||||
function_subtype_typearg1_test: Crash # Please triage this failure.
|
||||
function_subtype_typearg2_test: Crash # Please triage this failure.
|
||||
function_subtype_typearg3_test: Crash # Please triage this failure.
|
||||
function_subtype_typearg4_test: Crash # Please triage this failure.
|
||||
function_subtype_typearg0_test: Crash # type expression Foo (typedef)
|
||||
function_subtype_typearg1_test: Crash # type expression f2 (typedef)
|
||||
function_subtype_typearg2_test: Crash # type expression f1 (typedef)
|
||||
function_subtype_typearg3_test: Crash # type expression f1 (typedef)
|
||||
function_subtype_typearg4_test: Crash # type expression f1 (typedef)
|
||||
function_type3_test: Crash # Instance of 'TypeOperator': type check unimplemented for F.
|
||||
function_type_alias2_test: Crash # Instance of 'TypeOperator': type check unimplemented for f1.
|
||||
function_type_alias3_test: Crash # Instance of 'TypeOperator': type check unimplemented for F.
|
||||
|
@ -669,10 +668,9 @@ generic_closure_test: Crash # Instance of 'TypeOperator': type check unimplement
|
|||
generic_constructor_mixin2_test: Crash # Please triage this failure.
|
||||
generic_constructor_mixin3_test: Crash # Please triage this failure.
|
||||
generic_constructor_mixin_test: Crash # Please triage this failure.
|
||||
generic_field_mixin3_test : RuntimeError
|
||||
generic_instanceof2_test: Crash # Instance of 'TypeOperator': type check unimplemented for Foo<int, num>.
|
||||
generic_field_mixin3_test: RuntimeError # Please triage this failure.
|
||||
generic_instanceof2_test: Crash # Please triage this failure.
|
||||
generic_list_checked_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
generic_test: Crash # Instance of 'TypeOperator': type check unimplemented for B<AA>.
|
||||
if_null_assignment_behavior_test/01: Crash # Please triage this failure.
|
||||
if_null_assignment_behavior_test/02: Crash # Please triage this failure.
|
||||
if_null_assignment_behavior_test/03: Crash # Please triage this failure.
|
||||
|
@ -790,8 +788,7 @@ inferrer_this_access_test: Crash # Instance of 'TypeOperator': type check unimpl
|
|||
infinite_switch_label_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
inlined_throw_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
instance_creation_in_function_annotation_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
instanceof3_test: Crash # Instance of 'TypeOperator': type check unimplemented for UndeclaredType.
|
||||
instanceof4_test/01 : RuntimeError
|
||||
instanceof4_test/01: RuntimeError # Please triage this failure.
|
||||
integer_division_by_zero_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
interceptor6_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
interceptor_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -799,17 +796,11 @@ internal_library_test/01: Crash # (JS('int','0')): handleStaticFunctionInvoke: f
|
|||
invocation_mirror_invoke_on2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
invocation_mirror_invoke_on_test: RuntimeError # Please triage this failure.
|
||||
invocation_mirror_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
is_malformed_type_test/94: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
is_malformed_type_test/95: Crash # Instance of 'TypeOperator': type check unimplemented for Undefined.
|
||||
is_malformed_type_test/96: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
is_malformed_type_test/97: Crash # Instance of 'TypeOperator': type check unimplemented for Undefined.
|
||||
is_malformed_type_test/98: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
is_malformed_type_test/99: Crash # Instance of 'TypeOperator': type check unimplemented for Undefined.
|
||||
is_nan_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
is_not_class2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
isnot_malformed_type_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
issue10581_test: Crash # Unhandled node
|
||||
issue10721_test: RuntimeError
|
||||
issue10721_test: RuntimeError # Please triage this failure.
|
||||
issue10747_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
issue10783_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
issue11724_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -817,30 +808,29 @@ issue12023_test: Crash # Unhandled node
|
|||
issue12284_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
issue12336_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
issue13474_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
issue14014_3_test: Crash # Please triage this failure.
|
||||
issue14014_3_test: Crash # Instance of 'TypeOperator': type check unimplemented for foo<T>.
|
||||
issue20476_test: Crash # (try {try {return 1;}catch (e1){}finally {return 3;}}catch (e2){}finally {return 5;}): try/finally
|
||||
issue7525_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
issue_1751477_test: Crash # (lib1.loadLibrary()): handleStaticGetterInvoke: foreign: getter(loadLibrary)
|
||||
label_test: Crash # (switch (i){case 111:while(doAgain()){break L;}default:i-- ;}): Unhandled node
|
||||
large_class_declaration_test: Crash # Please triage this failure.
|
||||
lazy_static3_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
library_ambiguous_test/04: Crash # Instance of 'TypeOperator': type check unimplemented for bax.
|
||||
licm2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
licm3_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_double_index_in_loop2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_double_index_in_loop_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_length_tracer_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_literal3_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
list_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<A>.
|
||||
list_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
malbounded_type_cast2_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
malbounded_type_cast_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
malbounded_type_test2_test: Crash # Instance of 'TypeOperator': type check unimplemented for A<T>.
|
||||
malformed2_test/00: Crash # Instance of 'TypeOperator': type check unimplemented for List<Unresolved>.
|
||||
malbounded_type_test2_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
malformed2_test/00: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
malformed_inheritance_test/03: Crash # Please triage this failure.
|
||||
malformed_inheritance_test/09: Crash # Please triage this failure.
|
||||
malformed_inheritance_test/10: Crash # Please triage this failure.
|
||||
malformed_test/06: Crash # Please triage this failure.
|
||||
malformed_test/none: Crash # Please triage this failure.
|
||||
malformed_test/06: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
malformed_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
many_overridden_no_such_method_test: RuntimeError # Please triage this failure.
|
||||
megamorphic_no_such_method_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
method_override4_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -877,12 +867,12 @@ mixin_super_constructor_named_test/none: Crash # Please triage this failure.
|
|||
mixin_super_constructor_positionals_test/01: Crash # Please triage this failure.
|
||||
mixin_super_constructor_positionals_test/none: Crash # Please triage this failure.
|
||||
mixin_super_constructor_test: Crash # Please triage this failure.
|
||||
mixin_type_parameter2_test: Crash # Instance of 'TypeOperator': type check unimplemented for Mixin1<num>.
|
||||
mixin_type_parameter3_test: Crash # Instance of 'TypeOperator': type check unimplemented for Mixin1<num>.
|
||||
mixin_type_parameters_mixin_extends_test: Crash # Instance of 'TypeOperator': type check unimplemented for M<int>.
|
||||
mixin_type_parameters_mixin_test: Crash # Instance of 'TypeOperator': type check unimplemented for M<int>.
|
||||
mixin_type_parameters_super_extends_test: Crash # Instance of 'TypeOperator': type check unimplemented for S<int>.
|
||||
mixin_type_parameters_super_test: Crash # Instance of 'TypeOperator': type check unimplemented for S<int>.
|
||||
mixin_type_parameter2_test: Crash # Please triage this failure.
|
||||
mixin_type_parameter3_test: Crash # Please triage this failure.
|
||||
mixin_type_parameters_mixin_extends_test: Crash # Please triage this failure.
|
||||
mixin_type_parameters_mixin_test: Crash # Please triage this failure.
|
||||
mixin_type_parameters_super_extends_test: Crash # Please triage this failure.
|
||||
mixin_type_parameters_super_test: Crash # Please triage this failure.
|
||||
mixin_typedef_constructor_test: Crash # Please triage this failure.
|
||||
mixin_with_two_implicit_constructors_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
modulo_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -901,10 +891,10 @@ not_enough_positional_arguments_test/00: MissingRuntimeError # Please triage thi
|
|||
not_enough_positional_arguments_test/03: Crash # Please triage this failure.
|
||||
null_inline_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
null_no_such_method_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
null_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for dynamic.
|
||||
null_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for dynamic.
|
||||
null_test/03: Crash # Instance of 'TypeOperator': type check unimplemented for dynamic.
|
||||
null_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for dynamic.
|
||||
null_test/01: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
null_test/02: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
null_test/03: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
null_test/none: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
number_identifier_test/05: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
number_identifier_test/08: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
number_identifier_test/09: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
|
@ -941,7 +931,7 @@ refine_receiver_null_test: Crash # Instance of 'TypeOperator': type check unimpl
|
|||
reg_exp_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
regress_12561_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
regress_18435_test: Crash # Please triage this failure.
|
||||
regress_18535_test: Crash # Instance of 'TypeOperator': type check unimplemented for V.
|
||||
regress_18535_test: Crash # Please triage this failure.
|
||||
regress_21795_test: Crash # (try {foo(t);}finally {if(t==0){try {}catch (err,st){}}}): try/finally
|
||||
regress_22438_test: Crash # cannot handle async/sync*/async* functions
|
||||
regress_22443_test: Crash # (D.loadLibrary()): handleStaticGetterInvoke: foreign: getter(loadLibrary)
|
||||
|
@ -1031,23 +1021,21 @@ truncdiv_test: Crash # Instance of 'TypeOperator': type check unimplemented for
|
|||
try_catch3_test: Crash # try/finally
|
||||
try_catch4_test: Crash # try/finally
|
||||
try_catch5_test: Crash # (try {try {a=8;return;}finally {b=8==a;entered=true;continue;}}finally {continue;}): try/finally
|
||||
try_catch_on_syntax_test/07: Crash # Instance of 'TypeOperator': type check unimplemented for UndefinedClass.
|
||||
try_catch_optimized2_test: Crash # (try {bar();}finally {}): try/finally
|
||||
try_catch_osr_test: Crash # (try {if(x==null)throw 42;return 99;}finally {}): try/finally
|
||||
try_catch_syntax_test/08: Crash # Instance of 'TypeOperator': type check unimplemented for MammaMia.
|
||||
try_catch_test/01: Crash # Please triage this failure.
|
||||
try_catch_test/none: Crash # Please triage this failure.
|
||||
type_argument_in_super_type_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_check_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
type_error_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
type_literal_prefix_call_test/00: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_parameter_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/03: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/04: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/05: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/06: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for Set<int>.
|
||||
type_parameter_test/01: Crash # Please triage this failure.
|
||||
type_parameter_test/02: Crash # Please triage this failure.
|
||||
type_parameter_test/03: Crash # Please triage this failure.
|
||||
type_parameter_test/04: Crash # Please triage this failure.
|
||||
type_parameter_test/05: Crash # Please triage this failure.
|
||||
type_parameter_test/06: Crash # Please triage this failure.
|
||||
type_parameter_test/none: Crash # Please triage this failure.
|
||||
type_promotion_functions_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for FuncDynToDyn.
|
||||
type_promotion_functions_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for FuncDynToDyn.
|
||||
type_promotion_functions_test/03: Crash # Instance of 'TypeOperator': type check unimplemented for FuncDynToDyn.
|
||||
|
@ -1064,7 +1052,7 @@ type_promotion_functions_test/13: Crash # Instance of 'TypeOperator': type check
|
|||
type_promotion_functions_test/14: Crash # Instance of 'TypeOperator': type check unimplemented for FuncDynToDyn.
|
||||
type_promotion_functions_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for FuncDynToDyn.
|
||||
type_propagation_in_for_update_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_variable_closure2_test: RuntimeError
|
||||
type_variable_closure2_test: RuntimeError # Please triage this failure.
|
||||
type_variable_closure_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_variable_conflict2_test/03: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_variable_conflict2_test/04: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -1072,7 +1060,7 @@ type_variable_conflict2_test/05: Crash # Instance of 'TypeOperator': type check
|
|||
type_variable_conflict2_test/07: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_variable_conflict2_test/09: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
type_variable_function_type_test: Crash # Instance of 'TypeOperator': type check unimplemented for Func<S>.
|
||||
type_variable_typedef_test: Crash # Please triage this failure.
|
||||
type_variable_typedef_test: Crash # type expression Foo<T> (typedef)
|
||||
typed_equality_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
typedef_is_test: Crash # Instance of 'TypeOperator': type check unimplemented for Func1.
|
||||
typevariable_substitution2_test/01: Crash # Please triage this failure.
|
||||
|
@ -1083,8 +1071,3 @@ value_range2_test: Crash # Instance of 'TypeOperator': type check unimplemented
|
|||
value_range3_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
value_range_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
void_type_test: Crash # Unhandled node
|
||||
issue10721_test : RuntimeError
|
||||
cast2_test/01 : Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
cast2_test/none : Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
malformed_inheritance_test/02 : Crash # unimplemented translation of type expression Unresolved
|
||||
malformed_inheritance_test/04 : Crash # unimplemented translation of type expression Unresolved
|
||||
|
|
|
@ -370,8 +370,9 @@ convert/chunked_conversion_utf82_test: Crash # Instance of 'TypeOperator': type
|
|||
convert/chunked_conversion_utf86_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/chunked_conversion_utf87_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/json_chunk_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/json_lib_test: Crash # Instance of 'TypeOperator': type check unimplemented for T.
|
||||
convert/json_lib_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
convert/json_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/json_toEncodable_reviver_test: RuntimeError # Please triage this failure.
|
||||
convert/json_utf8_chunk_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/json_util_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/latin1_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -404,7 +405,7 @@ mirrors/constructor_kinds_test/none: Crash # Instance of 'TypeOperator': type ch
|
|||
mirrors/constructor_private_name_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/constructors_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/dart2js_mirrors_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/declarations_type_test: Crash # Instance of 'TypeOperator': type check unimplemented for Map<Symbol, DeclarationMirror>.
|
||||
mirrors/declarations_type_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
mirrors/deferred_mirrors_metadata_test: Crash # (lib1.loadLibrary()): handleStaticGetterInvoke: foreign: getter(loadLibrary)
|
||||
mirrors/deferred_mirrors_metatarget_test: Crash # (lib.loadLibrary()): handleStaticGetterInvoke: foreign: getter(loadLibrary)
|
||||
mirrors/deferred_mirrors_update_test: Crash # (l.loadLibrary()): handleStaticGetterInvoke: foreign: getter(loadLibrary)
|
||||
|
@ -439,11 +440,11 @@ mirrors/generic_superclass_test/none: Crash # Instance of 'TypeOperator': type c
|
|||
mirrors/generic_type_mirror_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_double_substitution_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_double_substitution_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_dynamic_test: Crash # Please triage this failure.
|
||||
mirrors/generics_dynamic_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_special_types_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_substitution_test: Crash # Instance of 'TypeOperator': type casts not implemented.
|
||||
mirrors/generics_test/01: Crash # Please triage this failure.
|
||||
mirrors/generics_test/none: Crash # Please triage this failure.
|
||||
mirrors/generics_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/generics_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/globalized_closures2_test/00: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/globalized_closures2_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/globalized_closures_test/00: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -579,9 +580,9 @@ mirrors/private_types_test: Crash # Instance of 'TypeOperator': type casts not i
|
|||
mirrors/proxy_type_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/raw_type_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/raw_type_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/redirecting_factory_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for Class<String, int>.
|
||||
mirrors/redirecting_factory_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for Class<String, int>.
|
||||
mirrors/redirecting_factory_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for Class<String, int>.
|
||||
mirrors/redirecting_factory_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/redirecting_factory_test/02: Crash # Please triage this failure.
|
||||
mirrors/redirecting_factory_test/none: Crash # Please triage this failure.
|
||||
mirrors/reflect_class_test/01: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/reflect_class_test/02: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
mirrors/reflect_class_test/none: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
|
@ -636,7 +637,5 @@ typed_data/constructor_checks_test: Crash # Instance of 'TypeOperator': type che
|
|||
typed_data/float32x4_shuffle_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
typed_data/float32x4_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
typed_data/int32x4_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
typed_data/typed_data_hierarchy_int64_test: Crash # Instance of 'TypeOperator': type check unimplemented for List<int>.
|
||||
typed_data/typed_data_list_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
typed_data/typed_list_iterable_test: Crash # Instance of 'TypeOperator': type check unimplemented for _Nullary.
|
||||
convert/json_toEncodable_reviver_test : RuntimeError
|
||||
|
|
Loading…
Reference in a new issue