OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details. | |
2 // All rights reserved. Use of this source code is governed by a BSD-style | |
3 // license that can be found in the LICENSE file. | |
4 | |
5 import 'package:js/js.dart'; | |
6 | |
7 @JS() | |
8 @anonymous | |
9 class A { | |
10 external bool get value; | |
11 external factory A({bool value}); | |
12 } | |
13 | |
14 void main() {} | |
OLD | NEW |