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

Unified Diff: dart/tests/co19/co19-leg.status

Issue 9815003: Implement unresolved super-send (but ignoring arguments). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« dart/frog/leg/ssa/builder.dart ('K') | « dart/frog/leg/warnings.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/co19/co19-leg.status
diff --git a/dart/tests/co19/co19-leg.status b/dart/tests/co19/co19-leg.status
index 51feda065d4e6707859feaffe83590971cb56a7c..4b52565ee28303670fdf06bbfd33f4658a5b7c91 100644
--- a/dart/tests/co19/co19-leg.status
+++ b/dart/tests/co19/co19-leg.status
@@ -111,11 +111,11 @@ LibTest/core/Expect/identical_A01_t01: Fail # TODO(floitsch): Is NaN identical t
Language/05_Variables/05_Variables_A05_t03: Fail # compiler cancelled: internal error: Unexpected operator.
Language/06_Functions/2_Formal_Parameters/2_Named_Optional_Formals_A01_t01: Fail # compiler cancelled: internal error: expected expected optional parameters
+Language/07_Classes/07_Classes_A02_t01: Fail # ConstantHandler with this or super not implemented
Language/07_Classes/1_Instance_Methods/2_Operators_A01_t01: Fail # compiler cancelled: unexpected token 'call'
Language/07_Classes/1_Instance_Methods/2_Operators_A07_t05: Fail # compiler cancelled: unexpected token 'call'
Language/07_Classes/5_Constructors/1_Generative_Constructors_A13_t01: Fail # compiler cancelled: cannot resolve type T
Language/07_Classes/5_Constructors/2_Factories_A01_t01: Fail # compiler cancelled: cannot find constructor A or ADef
-Language/07_Classes/07_Classes_A02_t01: Fail # ConstantHandler with this or super not implemented
Language/07_Classes/8_Superclasses/1_Inheritance_and_Overriding_A02_t03: Fail # compiler cancelled: internal error: super property store not implemented
Language/08_Interfaces/4_Superinterfaces/1_Inheritance_and_Overriding_A01_t02: Fail # compiler cancelled: no method named foo in class I
Language/09_Generics/09_Generics_A04_t03: Fail # compiler cancelled: cannot resolve type N
@@ -131,18 +131,14 @@ Language/10_Expressions/13_Function_Invocation/2_Binding_Actuals_to_Formals_A01_
Language/10_Expressions/13_Function_Invocation/2_Binding_Actuals_to_Formals_A01_t04: Fail # compiler cancelled: Unimplemented non-matching static call
Language/10_Expressions/13_Function_Invocation/2_Binding_Actuals_to_Formals_A01_t05: Fail # compiler cancelled: Unimplemented non-matching static call
Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A03_t04: Fail # compiler cancelled: internal error: super property store not implemented
-Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A04_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A04_t02: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A06_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A06_t02: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A07_t01: Fail # compiler cancelled: internal error: super-send to non-function not implemented
+Language/10_Expressions/14_Method_Invocation/3_Super_Invocation_A07_t01: Fail # TypeError: Cannot call method '$call$0' of undefined
Language/10_Expressions/18_Logical_Boolean_Expressions_A01_t01: Fail # compiler cancelled: expected ';', but got 'const'
-Language/10_Expressions/20_Equality_A05_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/20_Equality_A07_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/20_Equality_A08_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
-Language/10_Expressions/25_Unary_Expressions_A01_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
+Language/10_Expressions/20_Equality_A05_t01: Fail # error: != cannot be called on super
+Language/10_Expressions/20_Equality_A07_t01: Fail # error: === cannot be called on super
+Language/10_Expressions/20_Equality_A08_t01: Fail # error: !== cannot be called on super
+Language/10_Expressions/25_Unary_Expressions_A01_t01: Fail # error: ! cannot be called on super
Language/10_Expressions/25_Unary_Expressions_A01_t10: Fail # compiler cancelled: internal error: super property store not implemented
-Language/10_Expressions/25_Unary_Expressions_A06_t01: Fail # compiler cancelled: internal error: unresolved super-send not implemented
+Language/10_Expressions/25_Unary_Expressions_A06_t01: Fail # NoSuchMethodException : method not found: '-'
Language/10_Expressions/26_Postfix_Expressions_A01_t01: Fail # compiler cancelled: expected ';', but got ':'
Language/10_Expressions/27_Assignable_Expressions_A01_t02: Fail # compiler cancelled: internal error: super property store not implemented
Language/10_Expressions/27_Assignable_Expressions_A01_t26: Fail # compiler cancelled: internal error
@@ -219,6 +215,8 @@ LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t05: Fa
LibTest/core/RegExp/Pattern_semantics/firstMatch_NonEmptyClassRanges_A01_t06: Fail # Expect.fail('Some exception expected')
LibTest/core/String/contains_A01_t02: Fail # Expect.fail('IndexOutOfRangeException expected!')
Language/13_Types/4_Interface_Types_A10_t04: Fail # visitIdentifier for typedefs not implemented
+
+
Language/09_Generics/09_Generics_A01_t10: Fail # TODO(ahe): Please categorize.
« dart/frog/leg/ssa/builder.dart ('K') | « dart/frog/leg/warnings.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698