| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that final fields in @MirrorsUsed are still inferred. | 5 // Test that final fields in @MirrorsUsed are still inferred. |
| 6 | 6 |
| 7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
| 8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
| 9 import 'memory_compiler.dart' show runCompiler; | 9 import 'memory_compiler.dart' show runCompiler; |
| 10 import 'compiler_helper.dart' show findElement; | 10 import 'compiler_helper.dart' show findElement; |
| 11 | 11 |
| 12 const MEMORY_SOURCE_FILES = const <String, String> { | 12 const MEMORY_SOURCE_FILES = const <String, String>{ |
| 13 'main.dart': """ | 13 'main.dart': """ |
| 14 @MirrorsUsed(targets: 'Super') | 14 @MirrorsUsed(targets: 'Super') |
| 15 import 'dart:mirrors'; | 15 import 'dart:mirrors'; |
| 16 import 'lib.dart'; | 16 import 'lib.dart'; |
| 17 | 17 |
| 18 | 18 |
| 19 class Subclass extends Super { | 19 class Subclass extends Super { |
| 20 int _private; | 20 int _private; |
| 21 | 21 |
| 22 int magic() => _private++; | 22 int magic() => _private++; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 33 int magic() => _private++; | 33 int magic() => _private++; |
| 34 } | 34 } |
| 35 """ | 35 """ |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 void main() { | 38 void main() { |
| 39 asyncTest(() async { | 39 asyncTest(() async { |
| 40 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); | 40 var result = await runCompiler(memorySourceFiles: MEMORY_SOURCE_FILES); |
| 41 var compiler = result.compiler; | 41 var compiler = result.compiler; |
| 42 | 42 |
| 43 var superclass = findElement(compiler, 'Super', Uri.parse('memory:lib.dart')
); | 43 var superclass = |
| 44 findElement(compiler, 'Super', Uri.parse('memory:lib.dart')); |
| 44 var subclass = findElement(compiler, 'Subclass'); | 45 var subclass = findElement(compiler, 'Subclass'); |
| 45 var oracle = compiler.backend.isAccessibleByReflection; | 46 var oracle = compiler.backend.isAccessibleByReflection; |
| 46 print(superclass.lookupMember('_private')); | 47 print(superclass.lookupMember('_private')); |
| 47 Expect.isTrue(oracle(superclass.lookupMember('_private'))); | 48 Expect.isTrue(oracle(superclass.lookupMember('_private'))); |
| 48 Expect.isFalse(oracle(subclass.lookupMember('_private'))); | 49 Expect.isFalse(oracle(subclass.lookupMember('_private'))); |
| 49 }); | 50 }); |
| 50 } | 51 } |
| OLD | NEW |