| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Unresolved imported symbols are handled differently in production mode and | 5 // Unresolved imported symbols are handled differently in production mode and |
| 6 // check modes. In this test, the function myFunc is malformed, because | 6 // check modes. In this test, the function myFunc is malformed, because |
| 7 // lib12.Library13 is not resolved. | 7 // lib12.Library13 is not resolved. |
| 8 // In checked mode, the assignment type check throws a run time type error. | 8 // In checked mode, the assignment type check throws a run time type error. |
| 9 // In production, no assignment type checks are performed. | 9 // In production, no assignment type checks are performed. |
| 10 | 10 |
| 11 library Prefix16NegativeTest.dart; | 11 library Prefix16NegativeTest.dart; |
| 12 import "package:expect/expect.dart"; |
| 12 import "library12.dart" as lib12; | 13 import "library12.dart" as lib12; |
| 13 | 14 |
| 14 typedef lib12.Library13 myFunc(lib12.Library13 param); | 15 typedef lib12.Library13 myFunc(lib12.Library13 param); |
| 15 | 16 |
| 16 isCheckedMode() { | 17 isCheckedMode() { |
| 17 try { | 18 try { |
| 18 var i = 1; | 19 var i = 1; |
| 19 String s = i; | 20 String s = i; |
| 20 return false; | 21 return false; |
| 21 } catch (e) { | 22 } catch (e) { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 39 try { | 40 try { |
| 40 // In production mode, malformed myFunc is mapped to (dynamic) => dynamic. | 41 // In production mode, malformed myFunc is mapped to (dynamic) => dynamic. |
| 41 Expect.isTrue(((int x) => x) is myFunc); | 42 Expect.isTrue(((int x) => x) is myFunc); |
| 42 } on TypeError catch (error) { | 43 } on TypeError catch (error) { |
| 43 got_type_error = true; | 44 got_type_error = true; |
| 44 } | 45 } |
| 45 // Type error in checked mode only. | 46 // Type error in checked mode only. |
| 46 Expect.isTrue(got_type_error == isCheckedMode()); | 47 Expect.isTrue(got_type_error == isCheckedMode()); |
| 47 } | 48 } |
| 48 } | 49 } |
| OLD | NEW |