1 //===--- FixIt.cpp - FixIt Hint utilities -----------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains implementations of utitilies to ease source code rewriting
10 // by providing helper functions related to FixItHint.
11 //
12 //===----------------------------------------------------------------------===//
13 #include "clang/Tooling/FixIt.h"
14 #include "clang/Lex/Lexer.h"
15 
16 namespace clang {
17 namespace tooling {
18 namespace fixit {
19 
20 namespace internal {
21 StringRef getText(SourceRange Range, const ASTContext &Context) {
22   return Lexer::getSourceText(CharSourceRange::getTokenRange(Range),
23                               Context.getSourceManager(),
24                               Context.getLangOpts());
25 }
26 } // end namespace internal
27 
28 } // end namespace fixit
29 } // end namespace tooling
30 } // end namespace clang
31