| Index: runtime/vm/dart_api_impl_test.cc
|
| ===================================================================
|
| --- runtime/vm/dart_api_impl_test.cc (revision 15552)
|
| +++ runtime/vm/dart_api_impl_test.cc (working copy)
|
| @@ -2382,7 +2382,7 @@
|
| { \
|
| Dart_Handle tmp = (handle); \
|
| EXPECT_VALID(tmp); \
|
| - EXPECT(Dart_IsInterface(tmp)); \
|
| + EXPECT(Dart_IsClass(tmp)); \
|
| Dart_Handle intf_name = Dart_ClassName(tmp); \
|
| EXPECT_VALID(intf_name); \
|
| const char* intf_name_cstr = ""; \
|
| @@ -2402,10 +2402,10 @@
|
| "class MyClass2 implements MyInterface0, MyInterface1 {\n"
|
| "}\n"
|
| "\n"
|
| - "interface MyInterface0 {\n"
|
| + "abstract class MyInterface0 {\n"
|
| "}\n"
|
| "\n"
|
| - "interface MyInterface1 extends MyInterface0 {\n"
|
| + "abstract class MyInterface1 implements MyInterface0 {\n"
|
| "}\n";
|
| Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
|
|
|
|
|