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

Unified Diff: dart/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
Index: dart/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
diff --git a/dart/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java b/dart/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
deleted file mode 100644
index 493d11b5348a272b79cc09f93d7899ca7b5c1c59..0000000000000000000000000000000000000000
--- a/dart/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
+++ /dev/null
@@ -1,137 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// 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.
-package com.google.dart.compiler.resolver;
-
-import com.google.common.collect.ImmutableSet;
-import com.google.dart.compiler.ast.DartMethodDefinition;
-import com.google.dart.compiler.type.FunctionType;
-import com.google.dart.compiler.type.Type;
-import com.google.dart.compiler.type.Types;
-
-import java.util.Collections;
-import java.util.List;
-import java.util.Set;
-
-/**
- * {@link ConstructorElement} for implicit default constructor.
- */
-public class SyntheticDefaultConstructorElement extends AbstractNodeElement
- implements
- ConstructorNodeElement {
- private final ClassElement enclosingClass;
- private final FunctionType functionType;
- private ConstructorElement defaultConstructor;
-
- public SyntheticDefaultConstructorElement(DartMethodDefinition method,
- ClassElement enclosingClass,
- CoreTypeProvider typeProvider) {
- super(method, "");
- this.enclosingClass = enclosingClass;
- if (typeProvider != null) {
- this.functionType =
- Types.makeFunctionType(
- null,
- typeProvider.getFunctionType().getElement(),
- getParameters(),
- typeProvider.getDynamicType());
- } else {
- functionType = null;
- }
- }
-
- @Override
- public Type getType() {
- return functionType;
- }
-
- @Override
- public ElementKind getKind() {
- return ElementKind.CONSTRUCTOR;
- }
-
- @Override
- public EnclosingElement getEnclosingElement() {
- return enclosingClass;
- }
-
- @Override
- public String getRawName() {
- return enclosingClass.getName();
- }
-
- @Override
- public boolean isStatic() {
- return false;
- }
-
- @Override
- public boolean isConstructor() {
- return true;
- }
-
- @Override
- public boolean isSynthetic() {
- return true;
- }
-
- @Override
- public boolean hasBody() {
- return false;
- }
-
- @Override
- public ConstructorElement getDefaultConstructor() {
- return defaultConstructor;
- }
-
- @Override
- public ConstructorElement getRedirectingFactoryConstructor() {
- return null;
- }
-
- @Override
- public void setDefaultConstructor(ConstructorElement defaultConstructor) {
- this.defaultConstructor = defaultConstructor;
- }
-
- @Override
- public Type getReturnType() {
- return functionType.getReturnType();
- }
-
- @Override
- public List<VariableElement> getParameters() {
- return Collections.emptyList();
- }
-
- @Override
- public FunctionType getFunctionType() {
- return functionType;
- }
-
- @Override
- public ClassElement getConstructorType() {
- return enclosingClass;
- }
-
- @Override
- public boolean isInterface() {
- return false;
- }
-
- @Override
- public Iterable<Element> getMembers() {
- return Collections.emptyList();
- }
-
- @Override
- public Element lookupLocalElement(String name) {
- return null;
- }
-
- @Override
- public Set<Element> getOverridden() {
- return ImmutableSet.of();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698