Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2178)

Unified Diff: dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart

Issue 11293272: Update dart2js_foreign suite as we now validate annotations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart
diff --git a/dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart b/dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart
index 1739911a912516fcb5064970f909920187431eca..f81b9a82fe1c330a8e294136a6fc78418b00057c 100644
--- a/dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart
+++ b/dart/tests/compiler/dart2js_foreign/native_missing_method1_test.dart
@@ -2,13 +2,15 @@
// 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.
-@native("*A")
+import 'native_metadata.dart';
+
+@Native("*A")
class A {
}
@native makeA();
-@native("""
+@Native("""
function A() {};
A.prototype.foo = function() { return 42; }
makeA = function() { return new A; }

Powered by Google App Engine
This is Rietveld 408576698