mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Rename functions and variables from "Delay[...]Parsing" to
"Delayed[...]Parsing" for consistency Swift SVN r6586
This commit is contained in:
@@ -62,7 +62,7 @@ class CompilerInvocation {
|
||||
|
||||
CodeCompletionCallbacksFactory *CodeCompletionFactory = nullptr;
|
||||
|
||||
bool DelayFunctionBodyParsing = false;
|
||||
bool DelayedFunctionBodyParsing = false;
|
||||
|
||||
typedef decltype(&ClangImporter::create) ClangImporterCtorTy;
|
||||
ClangImporterCtorTy ImporterCtor = nullptr;
|
||||
@@ -190,11 +190,11 @@ public:
|
||||
return CodeCompletionFactory;
|
||||
}
|
||||
|
||||
void setDelayFunctionBodyParsing(bool Val) {
|
||||
DelayFunctionBodyParsing = Val;
|
||||
void setDelayedFunctionBodyParsing(bool Val) {
|
||||
DelayedFunctionBodyParsing = Val;
|
||||
}
|
||||
|
||||
bool isDelayedFunctionBodyParsing() const { return DelayFunctionBodyParsing; }
|
||||
bool isDelayedFunctionBodyParsing() const { return DelayedFunctionBodyParsing; }
|
||||
};
|
||||
|
||||
class CompilerInstance {
|
||||
|
||||
Reference in New Issue
Block a user