| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 prefix language | 5 prefix language |
| 6 | 6 |
| 7 [ $component == leg && $checked ] | 7 [ $component == leg && $checked ] |
| 8 *: Skip | 8 *: Skip |
| 9 | 9 |
| 10 | 10 |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 MethodInvocationTest: Fail # TypeError: Cannot call method 'foo$0' of undefined | 190 MethodInvocationTest: Fail # TypeError: Cannot call method 'foo$0' of undefined |
| 191 NamedParametersPassingFalsyTest: Fail # TypeError: Object Instance of 'BoundClos
ure' has no method '$call$13' | 191 NamedParametersPassingFalsyTest: Fail # TypeError: Object Instance of 'BoundClos
ure' has no method '$call$13' |
| 192 NullToStringTest: Fail # TypeError: Cannot call method 'get$toString' of undefin
ed | 192 NullToStringTest: Fail # TypeError: Cannot call method 'get$toString' of undefin
ed |
| 193 StackOverflowTest: Fail # RangeError: Maximum call stack size exceeded | 193 StackOverflowTest: Fail # RangeError: Maximum call stack size exceeded |
| 194 StackTraceTest: Fail # ReferenceError: stacktrace is not defined | 194 StackTraceTest: Fail # ReferenceError: stacktrace is not defined |
| 195 StringTest: Fail # TypeError: Object Hello has no method 'operator$indexSet$2' | 195 StringTest: Fail # TypeError: Object Hello has no method 'operator$indexSet$2' |
| 196 | 196 |
| 197 | 197 |
| 198 # Bad code. | 198 # Bad code. |
| 199 InstanceofTest: Fail # SyntaxError: Unexpected identifier | 199 InstanceofTest: Fail # SyntaxError: Unexpected identifier |
| 200 NumberSyntaxTest: Fail # SyntaxError: Unexpected identifier | |
| 201 | 200 |
| 202 | 201 |
| 203 # | 202 # |
| 204 # The following tests are all semantic tests that we can rely on dartc | 203 # The following tests are all semantic tests that we can rely on dartc |
| 205 # catching for now. | 204 # catching for now. |
| 206 # | 205 # |
| 207 AbstractStaticNegativeTest: Fail, OK # Negative language test. | 206 AbstractStaticNegativeTest: Fail, OK # Negative language test. |
| 208 AbstractSyntaxTest/01: Fail, OK # Negative language test. | 207 AbstractSyntaxTest/01: Fail, OK # Negative language test. |
| 209 AbstractSyntaxTest/02: Fail, OK # Negative language test. | 208 AbstractSyntaxTest/02: Fail, OK # Negative language test. |
| 210 AssignTopMethodNegativeTest: Fail, OK # Negative language test. | 209 AssignTopMethodNegativeTest: Fail, OK # Negative language test. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 TypeVariableScopeTest/03: Fail, OK # Negative language test. | 332 TypeVariableScopeTest/03: Fail, OK # Negative language test. |
| 334 TypeVariableScopeTest/04: Fail, OK # Negative language test. | 333 TypeVariableScopeTest/04: Fail, OK # Negative language test. |
| 335 TypeVariableScopeTest/05: Fail, OK # Negative language test. | 334 TypeVariableScopeTest/05: Fail, OK # Negative language test. |
| 336 | 335 |
| 337 | 336 |
| 338 TypeVMTest: Fail, OK # VM specific test. | 337 TypeVMTest: Fail, OK # VM specific test. |
| 339 | 338 |
| 340 | 339 |
| 341 [ $component == leg && $mode == release] | 340 [ $component == leg && $mode == release] |
| 342 AssignTopMethodNegativeTest: Crash | 341 AssignTopMethodNegativeTest: Crash |
| OLD | NEW |