class FixItAction
Declaration
class FixItAction : public ASTFrontendAction { /* full declaration omitted */ };
Description
Abstract base class to use for AST consumer-based frontend actions.
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:29
Inherits from: ASTFrontendAction
Member Variables
- protected std::unique_ptr<FixItRewriter> Rewriter
- protected std::unique_ptr<FixItOptions> FixItOpts
Method Overview
- protected bool BeginSourceFileAction(clang::CompilerInstance & CI)
- protected std::unique_ptr<ASTConsumer> CreateASTConsumer(clang::CompilerInstance & CI, llvm::StringRef InFile)
- protected void EndSourceFileAction()
- public FixItAction()
- protected bool hasASTFileSupport() const
- public ~FixItAction()
Inherited from ASTFrontendAction:
Inherited from FrontendAction:
- protected BeginInvocation
- public BeginSourceFile
- protected BeginSourceFileAction
- protected CreateASTConsumer
- public EndSourceFile
- protected EndSourceFileAction
- public Execute
- protected ExecuteAction
- public PrepareToExecute
- protected PrepareToExecuteAction
- public getCompilerInstance
- public getCurrentASTUnit
- public getCurrentFile
- public getCurrentFileKind
- public getCurrentFileOrBufferName
- public getCurrentInput
- public getCurrentModule
- public getTranslationUnitKind
- public hasASTFileSupport
- public hasCodeCompletionSupport
- public hasIRSupport
- public hasPCHSupport
- public isCurrentFileAST
- public isModelParsingAction
- public setCompilerInstance
- public setCurrentInput
- protected shouldEraseOutputFiles
- public takeCurrentASTUnit
- public usesPreprocessorOnly
Methods
¶bool BeginSourceFileAction(
clang::CompilerInstance& CI)
bool BeginSourceFileAction(
clang::CompilerInstance& CI)
Description
Callback at the start of processing a single input.
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:37
Parameters
Returns
True on success; on failure ExecutionAction() and EndSourceFileAction() will not be called.
¶std::unique_ptr<ASTConsumer> CreateASTConsumer(
clang::CompilerInstance& CI,
llvm::StringRef InFile)
std::unique_ptr<ASTConsumer> CreateASTConsumer(
clang::CompilerInstance& CI,
llvm::StringRef InFile)
Description
Create the AST consumer object for this action, if supported. This routine is called as part of BeginSourceFile(), which will fail if the AST consumer cannot be created. This will not be called if the action has indicated that it only uses the preprocessor.
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:34
Parameters
- clang::CompilerInstance& CI
- - The current compiler instance, provided as a convenience, see getCompilerInstance().
- llvm::StringRef InFile
- - The current input file, provided as a convenience, see getCurrentFile().
Returns
The new AST consumer, or null on failure.
¶void EndSourceFileAction()
void EndSourceFileAction()
Description
Callback at the end of processing a single input. This is guaranteed to only be called following a successful call to BeginSourceFileAction (and BeginSourceFile).
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:39
¶FixItAction()
FixItAction()
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:44
¶bool hasASTFileSupport() const
bool hasASTFileSupport() const
Description
Does this action support use with AST files?
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:41
¶~FixItAction()
~FixItAction()
Declared at: clang/include/clang/Rewrite/Frontend/FrontendActions.h:45