| Index: runtime/vm/resolver_test.cc
|
| diff --git a/runtime/vm/resolver_test.cc b/runtime/vm/resolver_test.cc
|
| index e53b08813ea214c65e545f9a16886405911288b7..3142f13b166a381b57f4d583becfe94582aa6e9e 100644
|
| --- a/runtime/vm/resolver_test.cc
|
| +++ b/runtime/vm/resolver_test.cc
|
| @@ -2,13 +2,13 @@
|
| // 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.
|
|
|
| +#include "vm/resolver.h"
|
| #include "platform/assert.h"
|
| #include "vm/assembler.h"
|
| #include "vm/class_finalizer.h"
|
| #include "vm/compiler.h"
|
| #include "vm/dart_entry.h"
|
| #include "vm/object.h"
|
| -#include "vm/resolver.h"
|
| #include "vm/symbols.h"
|
| #include "vm/unit_test.h"
|
|
|
| @@ -49,7 +49,6 @@ static void SetupFunction(const char* test_library_name,
|
| EXPECT(ClassFinalizer::ProcessPendingClasses());
|
| }
|
|
|
| -
|
| // Setup a static function for invocation.
|
| static void SetupStaticFunction(const char* test_library_name,
|
| const char* test_class_name,
|
| @@ -59,7 +58,6 @@ static void SetupStaticFunction(const char* test_library_name,
|
| true);
|
| }
|
|
|
| -
|
| // Setup an instance function for invocation.
|
| static void SetupInstanceFunction(const char* test_library_name,
|
| const char* test_class_name,
|
| @@ -68,7 +66,6 @@ static void SetupInstanceFunction(const char* test_library_name,
|
| SetupFunction(test_library_name, test_class_name, test_function_name, false);
|
| }
|
|
|
| -
|
| TEST_CASE(DartStaticResolve) {
|
| const char* test_library_name = "ResolverApp";
|
| const char* test_class_name = "A";
|
| @@ -128,7 +125,6 @@ TEST_CASE(DartStaticResolve) {
|
| }
|
| }
|
|
|
| -
|
| TEST_CASE(DartDynamicResolve) {
|
| const char* test_library_name = "ResolverApp";
|
| const char* test_class_name = "A";
|
|
|