//===--- RefactoringRuleContext.h - Clang refactoring library -------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGRULECONTEXT_H #define LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGRULECONTEXT_H #include "clang/Basic/DiagnosticError.h" #include "clang/Basic/SourceManager.h" #include "clang/Tooling/Refactoring/ASTSelection.h" namespace clang { class ASTContext; namespace tooling { /// The refactoring rule context stores all of the inputs that might be needed /// by a refactoring action rule. It can create the specialized /// \c ASTRefactoringOperation or \c PreprocessorRefactoringOperation values /// that can be used by the refactoring action rules. /// /// The following inputs are stored by the operation: /// /// - SourceManager: a reference to a valid source manager. /// /// - SelectionRange: an optional source selection ranges that can be used /// to represent a selection in an editor. class RefactoringRuleContext { … }; } // end namespace tooling } // end namespace clang #endif // LLVM_CLANG_TOOLING_REFACTORING_REFACTORINGRULECONTEXT_H