Skip to content

[Sema] Remove iterative type checker #17199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions include/swift/AST/Decl.h
Original file line number Diff line number Diff line change
Expand Up @@ -3167,7 +3167,6 @@ class EnumDecl final : public NominalTypeDecl {
llvm::PointerIntPair<Type, 1, bool> RawType;
} LazySemanticInfo;

friend class IterativeTypeChecker;
friend class EnumRawTypeRequest;
friend class TypeChecker;

Expand Down Expand Up @@ -3417,7 +3416,6 @@ class ClassDecl final : public NominalTypeDecl {
llvm::PointerIntPair<Type, 1, bool> Superclass;
} LazySemanticInfo;

friend class IterativeTypeChecker;
friend class SuperclassTypeRequest;
friend class TypeChecker;

Expand Down
3 changes: 0 additions & 3 deletions include/swift/Basic/LangOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ namespace swift {
/// solver should be debugged.
unsigned DebugConstraintSolverAttempt = 0;

/// \brief Enable the iterative type checker.
bool IterativeTypeChecker = false;

/// \brief Enable named lazy member loading.
bool NamedLazyMemberLoading = true;

Expand Down
3 changes: 0 additions & 3 deletions include/swift/Option/FrontendOptions.td
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ def debug_constraints : Flag<["-"], "debug-constraints">,
def debug_constraints_attempt : Separate<["-"], "debug-constraints-attempt">,
HelpText<"Debug the constraint solver at a given attempt">;

def iterative_type_checker : Flag<["-"], "iterative-type-checker">,
HelpText<"Enable the iterative type checker">;

def disable_named_lazy_member_loading : Flag<["-"], "disable-named-lazy-member-loading">,
HelpText<"Disable per-name lazy member loading">;

Expand Down
100 changes: 0 additions & 100 deletions include/swift/Sema/IterativeTypeChecker.h

This file was deleted.

203 changes: 0 additions & 203 deletions include/swift/Sema/TypeCheckRequest.h

This file was deleted.

52 changes: 0 additions & 52 deletions include/swift/Sema/TypeCheckRequestKinds.def

This file was deleted.

Loading