Chromium Code Reviews| Index: dart/tests/compiler/dart2js_foreign/native_library_same_name_used_lib2.dart |
| diff --git a/dart/tests/compiler/dart2js_foreign/native_library_same_name_used_lib2.dart b/dart/tests/compiler/dart2js_foreign/native_library_same_name_used_lib2.dart |
| index 2fbb0098d009ecca100d3d91d2e3117ccaa0e2be..4f86e9fa3ad3ee5b0874d7f3d4d4e235bbb965e8 100644 |
| --- a/dart/tests/compiler/dart2js_foreign/native_library_same_name_used_lib2.dart |
| +++ b/dart/tests/compiler/dart2js_foreign/native_library_same_name_used_lib2.dart |
| @@ -8,7 +8,7 @@ library lib2; |
| import 'native_library_same_name_used_lib1.dart'; // To get interface I. |
|
ricow1
2012/11/14 12:36:21
Don't we need:
import 'native_metadata.dart';
here
ahe
2012/11/14 14:38:40
Filed http://dartbug.com/6720 as I'm upgrading my
|
| // Native impl has same name as interface. |
| -@native("*I") |
| +@Native("*I") |
| class Impl implements I { |
| @native Impl read(); |
| @native write(Impl x); |