mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This eliminates the need for the hackish LazyResolver::resolveUnvalidatedType() entry point, making type substitution on ASTs far more useful. As part of this, teach it to handle conformances for existentials and archetypes. Swift SVN r8169
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
//===--- LazyResolver.h - Lazy Resolution for ASTs --------------*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See http://swift.org/LICENSE.txt for license information
|
|
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the LazyResolver abstract interface.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_AST_LAZYRESOLVER_H
|
|
#define SWIFT_AST_LAZYRESOLVER_H
|
|
|
|
#include "swift/Basic/Optional.h"
|
|
|
|
namespace swift {
|
|
|
|
class ExtensionDecl;
|
|
class Identifier;
|
|
class NominalTypeDecl;
|
|
class ProtocolConformance;
|
|
class ProtocolDecl;
|
|
class Type;
|
|
|
|
/// Abstract interface used to lazily resolve aspects of the AST, such as the
|
|
/// types of declarations or protocol conformance structures.
|
|
class LazyResolver {
|
|
public:
|
|
virtual ~LazyResolver();
|
|
|
|
/// Resolve the conformance of the given nominal type to the given protocol.
|
|
///
|
|
/// \param type The nominal type that conforms to the given protocol.
|
|
////
|
|
/// \param protocol The protocol to which the type conforms.
|
|
///
|
|
/// \param ext If the conforms occurs via an extension, the extension
|
|
/// declaration.
|
|
///
|
|
/// \returns the protocol conformance, or null if the type does not conform
|
|
/// to the protocol.
|
|
virtual ProtocolConformance *resolveConformance(NominalTypeDecl *type,
|
|
ProtocolDecl *protocol,
|
|
ExtensionDecl *ext) = 0;
|
|
|
|
/// Resolve the "existential conforms to itself" bit for the given protocol.
|
|
virtual void resolveExistentialConformsToItself(ProtocolDecl *proto) = 0;
|
|
|
|
/// Resolve a member type.
|
|
///
|
|
/// \param type The type in which we will search for the member type.
|
|
/// \param name The name of the member type.
|
|
///
|
|
/// \returns the member type, or an empty type if no such type could be
|
|
/// found.
|
|
virtual Type resolveMemberType(Type type, Identifier name) = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // LLVM_SWIFT_AST_LAZYRESOLVER_H
|