| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| index 37ac1aa335ff8763fb3993ea8b6d01f4308117c0..80356f9f4cdc5b441c4056611a887b2e8d9bef67 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/NonErrorResolverTest.java
|
| @@ -1268,6 +1268,17 @@ public class NonErrorResolverTest extends ResolverTestCase {
|
| verify(source);
|
| }
|
|
|
| + public void test_invocationOfNonFunction_Object() throws Exception {
|
| + Source source = addSource(createSource(//
|
| + "main() {",
|
| + " Object v = null;",
|
| + " v();",
|
| + "}"));
|
| + resolve(source);
|
| + assertNoErrors();
|
| + verify(source);
|
| + }
|
| +
|
| public void test_memberWithClassName_setter() throws Exception {
|
| Source source = addSource(createSource(//
|
| "class A {",
|
|
|