OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 class Foo { |
| 6 var x; |
| 7 f() {} |
| 8 |
| 9 external var x01; /// 01: compile-time error |
| 10 external int x02; /// 02: compile-time error |
| 11 |
| 12 external f10(); /// 10: runtime error |
| 13 external f11() { } /// 11: compile-time error |
| 14 external f12() => 1; /// 12: compile-time error |
| 15 external static f13(); /// 13: runtime error |
| 16 static external f14(); /// 14: compile-time error |
| 17 external abstract f15(); /// 15: compile-time error |
| 18 int external f16(); /// 16: compile-time error |
| 19 |
| 20 external Foo.n20(); /// 20: runtime error |
| 21 external Foo.n21() : x(1); /// 21: compile-time error |
| 22 external Foo.n22() { x = 1; } /// 22: compile-time error |
| 23 external factory Foo.n23() => new Foo(); /// 23: compile-time error |
| 24 } |
| 25 |
| 26 external int t06(int i) { } /// 30: compile-time error |
| 27 external int t07(int i) => i + 1; /// 31: compile-time error |
| 28 |
| 29 main() { |
| 30 |
| 31 // Try calling an unpatched external function. |
| 32 var foo = new Foo(); /// 10: continued |
| 33 try { /// 10: continued |
| 34 foo.f05(); /// 10: continued |
| 35 } catch (String exc) { /// 10: continued |
| 36 if (exc == "External implementation missing.") { /// 10: continued |
| 37 throw exc; /// 10: continued |
| 38 } /// 10: continued |
| 39 } /// 10: continued |
| 40 |
| 41 try { /// 13: continued |
| 42 Foo.f13(); /// 13: continued |
| 43 } catch (String exc) { /// 13: continued |
| 44 if (exc == "External implementation missing.") { /// 13: continued |
| 45 throw exc; /// 13: continued |
| 46 } /// 13: continued |
| 47 } /// 13: continued |
| 48 |
| 49 // Try calling an unpatched external constructor. |
| 50 try { /// 20: continued |
| 51 var foo = new Foo.n09(); /// 20: continued |
| 52 } catch (String exc) { /// 20: continued |
| 53 if (exc == "External implementation missing.") { /// 20: continued |
| 54 throw exc; /// 20: continued |
| 55 } /// 20: continued |
| 56 } /// 20: continued |
| 57 } |
OLD | NEW |