mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
We need to do this mainly to figure out when extensions can affect this file. This is part of the intra-module dependency tracking work to implement incremental rebuilds. Part of rdar://problem/15353101 Swift SVN r22927
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
//===--- ReferencedNameTracker.h - Records looked-up names ------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_REFERENCEDNAMETRACKER_H
|
|
#define SWIFT_REFERENCEDNAMETRACKER_H
|
|
|
|
#include "swift/AST/Identifier.h"
|
|
#include "swift/Basic/LLVM.h"
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
namespace swift {
|
|
|
|
class ReferencedNameTracker {
|
|
SmallPtrSet<Identifier, 1> TopLevelNames;
|
|
SmallPtrSet<const NominalTypeDecl *, 1> UsedNominals;
|
|
public:
|
|
void addTopLevelName(Identifier name) {
|
|
TopLevelNames.insert(name);
|
|
}
|
|
|
|
const SmallPtrSetImpl<Identifier> &getTopLevelNames() const {
|
|
return TopLevelNames;
|
|
}
|
|
|
|
void addUsedNominal(const NominalTypeDecl *nominal) {
|
|
UsedNominals.insert(nominal);
|
|
}
|
|
|
|
const SmallPtrSetImpl<const NominalTypeDecl *> &getUsedNominals() const {
|
|
return UsedNominals;
|
|
}
|
|
};
|
|
|
|
} // end namespace swift
|
|
|
|
#endif // LLVM_SWIFT_REFERENCEDNAMETRACKER_H
|