| Index: tests/compiler/dart2js_native/native_field_invocation6_test.dart
|
| diff --git a/tests/compiler/dart2js_native/native_field_invocation6_test.dart b/tests/compiler/dart2js_native/native_field_invocation6_test.dart
|
| index bd8e9c24a002317a473986c3b33f47e5cd219921..cd2d93b0c43bd6232a4e6d3216911c5b797fe98d 100644
|
| --- a/tests/compiler/dart2js_native/native_field_invocation6_test.dart
|
| +++ b/tests/compiler/dart2js_native/native_field_invocation6_test.dart
|
| @@ -2,6 +2,7 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +import "dart:_js_helper";
|
| import "package:expect/expect.dart";
|
|
|
| makeA() native;
|
| @@ -15,7 +16,8 @@ makeA = function() { return new A; }
|
| """;
|
|
|
|
|
| -class A native "A" {
|
| +@Native("A")
|
| +class A {
|
| var _foo;
|
|
|
| get foo => _foo;
|
|
|