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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java

Issue 8506019: Convert top level factory into method, issue 345 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 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
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
index cb1654b67bd2129f212bf364fa6fc2052b45ac5d..c9423ea822aee4df87c59ec23a9932c9da1e84a5 100644
--- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
+++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
@@ -6,17 +6,23 @@ package com.google.dart.compiler.type;
import com.google.common.base.Joiner;
import com.google.common.collect.Iterables;
import com.google.dart.compiler.CompilerTestCase;
+import com.google.dart.compiler.DartCompilationError;
import com.google.dart.compiler.ast.DartFunctionExpression;
+import com.google.dart.compiler.ast.DartIdentifier;
import com.google.dart.compiler.ast.DartInvocation;
+import com.google.dart.compiler.ast.DartMethodDefinition;
import com.google.dart.compiler.ast.DartNode;
import com.google.dart.compiler.ast.DartNodeTraverser;
import com.google.dart.compiler.ast.DartUnit;
+import com.google.dart.compiler.parser.ParserErrorCode;
import com.google.dart.compiler.resolver.ClassElement;
import com.google.dart.compiler.resolver.Element;
import com.google.dart.compiler.resolver.ElementKind;
import com.google.dart.compiler.resolver.EnclosingElement;
import com.google.dart.compiler.resolver.MethodElement;
+import java.util.List;
+
/**
* Variant of {@link TypeAnalyzerTest}, which is based on {@link CompilerTestCase}. It is probably
* slower, not actually unit test, but easier to use if you need access to DartNode's.
@@ -94,6 +100,56 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
}
/**
+ * Language specification requires that factory should be declared in class. However declaring
+ * factory on top level should not cause exceptions in compiler.
+ * <p>
+ * http://code.google.com/p/dart/issues/detail?id=345
+ */
+ public void test_badTopLevelFactory() throws Exception {
+ AnalyzeLibraryResult libraryResult = analyzeLibrary("Test.dart", "factory foo() {}");
+ DartUnit unit = libraryResult.getLibraryUnitResult().getUnits().iterator().next();
+ DartMethodDefinition factory = (DartMethodDefinition) unit.getTopLevelNodes().get(0);
+ assertNotNull(factory);
+ // this factory has name, which is allowed for normal method
+ assertEquals(true, factory.getName() instanceof DartIdentifier);
+ assertEquals("foo", ((DartIdentifier) factory.getName()).getTargetName());
+ // compilation error expected
+ assertBadTopLevelFactoryError(libraryResult);
+ }
+
+ /**
+ * Language specification requires that factory should be declared in class. However declaring
+ * factory on top level should not cause exceptions in compiler. Even if type parameters are used.
+ * <p>
+ * http://code.google.com/p/dart/issues/detail?id=345
+ */
+ public void test_badTopLevelFactory_withTypeParameters() throws Exception {
+ AnalyzeLibraryResult libraryResult = analyzeLibrary("Test.dart", "factory foo<T>() {}");
+ DartUnit unit = libraryResult.getLibraryUnitResult().getUnits().iterator().next();
+ DartMethodDefinition factory = (DartMethodDefinition) unit.getTopLevelNodes().get(0);
+ assertNotNull(factory);
+ // normal method requires name, so we provide some name
+ assertEquals(true, factory.getName() instanceof DartIdentifier);
+ assertEquals("foo<T>", ((DartIdentifier) factory.getName()).getTargetName());
+ // compilation error expected
+ assertBadTopLevelFactoryError(libraryResult);
+ }
+
+ /**
+ * Asserts that given {@link AnalyzeLibraryResult} contains {@link DartCompilationError} for
+ * invalid factory on top level.
+ */
+ private void assertBadTopLevelFactoryError(AnalyzeLibraryResult libraryResult) {
+ List<DartCompilationError> compilationErrors = libraryResult.getCompilationErrors();
+ assertEquals(1, compilationErrors.size());
+ DartCompilationError compilationError = compilationErrors.get(0);
+ assertEquals(ParserErrorCode.DISALLOWED_FACTORY_KEYWORD, compilationError.getErrorCode());
+ assertEquals(1, compilationError.getLineNumber());
+ assertEquals(1, compilationError.getColumnNumber());
+ assertEquals("factory".length(), compilationError.getLength());
+ }
+
+ /**
* @return the {@link DartInvocation} with given source. This is inaccurate approach, but good
* enough for specific tests.
*/
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/parser/NegativeParserTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698