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

Unified Diff: test/kernel/regression/native_is_illegal.dart.txt

Issue 2201803002: Mark native methods as external. (Closed) Base URL: git@github.com:dart-lang/rasta.git@dill
Patch Set: Created 4 years, 4 months 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
« no previous file with comments | « test/kernel/regression/native_is_illegal.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/kernel/regression/native_is_illegal.dart.txt
diff --git a/test/kernel/regression/native_is_illegal.dart.txt b/test/kernel/regression/native_is_illegal.dart.txt
new file mode 100644
index 0000000000000000000000000000000000000000..36cec9b05d3bf5f9ce7639dff4ff1f2ea29ed433
--- /dev/null
+++ b/test/kernel/regression/native_is_illegal.dart.txt
@@ -0,0 +1,16 @@
+library;
+import self as self;
+import "dart:core" as core;
+
+class Bar extends core::Object {
+ get x() → self::Bar
+ return "Bar_get_x";
+ set x(self::Bar value) → dynamic
+ return "Bar_set_x";
+ method f() → dynamic
+ return "Bar_f";
+ static factory •() → self::Bar
+ return "Bar_constructor";
+}
+static method foo() → dynamic
+ invalid-statement;
« no previous file with comments | « test/kernel/regression/native_is_illegal.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698