| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // SharedOptions=--experimental-trust-js-interop-type-annotations | 5 // SharedOptions=--experimental-trust-js-interop-type-annotations |
| 6 | 6 |
| 7 // Same test as js_typed_interop_anonymous, but using the | 7 // Same test as js_typed_interop_anonymous, but using the |
| 8 // --experimental-trust-js-interop-type-annotations flag. | 8 // --experimental-trust-js-interop-type-annotations flag. |
| 9 @JS() | 9 @JS() |
| 10 library js_typed_interop_anonymous_exp_test; | 10 library js_typed_interop_anonymous_exp_test; |
| 11 | 11 |
| 12 import 'dart:html'; | 12 import 'dart:html'; |
| 13 import 'dart:js' as js; | 13 import 'dart:js' as js; |
| 14 | 14 |
| 15 import 'package:js/js.dart'; | 15 import 'package:js/js.dart'; |
| 16 import 'package:minitest/minitest.dart'; | 16 import 'package:expect/minitest.dart'; |
| 17 | 17 |
| 18 @JS() @anonymous | 18 @JS() @anonymous |
| 19 class Literal { | 19 class Literal { |
| 20 external factory Literal({int x, String y, num z}); | 20 external factory Literal({int x, String y, num z}); |
| 21 | 21 |
| 22 external int get x; | 22 external int get x; |
| 23 external String get y; | 23 external String get y; |
| 24 external num get z; | 24 external num get z; |
| 25 } | 25 } |
| 26 | 26 |
| 27 main() { | 27 main() { |
| 28 test('simple', () { | 28 test('simple', () { |
| 29 var l = new Literal(x: 3, y: "foo"); | 29 var l = new Literal(x: 3, y: "foo"); |
| 30 expect(l.x, equals(3)); | 30 expect(l.x, equals(3)); |
| 31 expect(l.y, equals("foo")); | 31 expect(l.y, equals("foo")); |
| 32 expect(l.z, isNull); | 32 expect(l.z, isNull); |
| 33 }); | 33 }); |
| 34 } | 34 } |
| OLD | NEW |