1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
//===--- SemaFixture.h - Helper for setting up Sema context -----*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "swift/AST/ASTContext.h"
#include "swift/AST/DiagnosticEngine.h"
#include "swift/AST/Module.h"
#include "swift/AST/SourceFile.h"
#include "swift/AST/Type.h"
#include "swift/AST/Types.h"
#include "swift/Basic/LangOptions.h"
#include "swift/Basic/Platform.h"
#include "swift/Basic/SourceManager.h"
#include "swift/Sema/ConstraintSystem.h"
#include "swift/SymbolGraphGen/SymbolGraphOptions.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/TargetParser/Host.h"
#include "llvm/Support/Path.h"
#include "gtest/gtest.h"
#include <string>
using namespace swift::constraints;
using namespace swift::constraints::inference;
namespace swift {
namespace unittest {
class SemaTestBase : public ::testing::Test {
public:
LangOptions LangOpts;
TypeCheckerOptions TypeCheckerOpts;
SILOptions SILOpts;
SearchPathOptions SearchPathOpts;
ClangImporterOptions ClangImporterOpts;
symbolgraphgen::SymbolGraphOptions SymbolGraphOpts;
CASOptions CASOpts;
SourceManager SourceMgr;
DiagnosticEngine Diags;
SemaTestBase() : Diags(SourceMgr) {
LangOpts.Target = llvm::Triple(llvm::sys::getDefaultTargetTriple());
llvm::SmallString<128> libDir(SWIFTLIB_DIR);
llvm::sys::path::append(libDir, getPlatformNameForTriple(LangOpts.Target));
SearchPathOpts.RuntimeResourcePath = SWIFTLIB_DIR;
SearchPathOpts.RuntimeLibraryPaths.push_back(std::string(libDir.str()));
SearchPathOpts.setRuntimeLibraryImportPaths({libDir.str().str()});
}
};
/// Owns an ASTContext and the associated types.
class SemaTest : public SemaTestBase {
SourceFile *MainFile;
public:
ASTContext &Context;
DeclContext *DC;
SemaTest();
protected:
Type getStdlibType(StringRef name) const;
NominalTypeDecl *getStdlibNominalTypeDecl(StringRef name) const;
VarDecl *addExtensionVarMember(NominalTypeDecl *decl, StringRef name,
Type type) const;
ProtocolType *createProtocol(llvm::StringRef protocolName,
Type parent = Type());
static BindingSet inferBindings(ConstraintSystem &cs,
TypeVariableType *typeVar);
};
} // end namespace unittest
} // end namespace swift
|