2014-10-30 02:55:09 +08:00
|
|
|
//===--- Replacement.cpp - Framework for clang refactoring tools ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implements classes to support/store refactorings.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Basic/Diagnostic.h"
|
|
|
|
#include "clang/Basic/DiagnosticIDs.h"
|
|
|
|
#include "clang/Basic/DiagnosticOptions.h"
|
|
|
|
#include "clang/Basic/FileManager.h"
|
|
|
|
#include "clang/Basic/SourceManager.h"
|
|
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
#include "clang/Rewrite/Core/Rewriter.h"
|
2016-03-01 00:44:16 +08:00
|
|
|
#include "clang/Tooling/Core/Replacement.h"
|
2014-10-30 02:55:09 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/raw_os_ostream.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tooling {
|
|
|
|
|
|
|
|
static const char * const InvalidLocation = "";
|
|
|
|
|
|
|
|
Replacement::Replacement()
|
|
|
|
: FilePath(InvalidLocation) {}
|
|
|
|
|
|
|
|
Replacement::Replacement(StringRef FilePath, unsigned Offset, unsigned Length,
|
|
|
|
StringRef ReplacementText)
|
|
|
|
: FilePath(FilePath), ReplacementRange(Offset, Length),
|
|
|
|
ReplacementText(ReplacementText) {}
|
|
|
|
|
|
|
|
Replacement::Replacement(const SourceManager &Sources, SourceLocation Start,
|
|
|
|
unsigned Length, StringRef ReplacementText) {
|
|
|
|
setFromSourceLocation(Sources, Start, Length, ReplacementText);
|
|
|
|
}
|
|
|
|
|
|
|
|
Replacement::Replacement(const SourceManager &Sources,
|
|
|
|
const CharSourceRange &Range,
|
2015-06-03 21:10:41 +08:00
|
|
|
StringRef ReplacementText,
|
|
|
|
const LangOptions &LangOpts) {
|
|
|
|
setFromSourceRange(Sources, Range, ReplacementText, LangOpts);
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Replacement::isApplicable() const {
|
|
|
|
return FilePath != InvalidLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Replacement::apply(Rewriter &Rewrite) const {
|
|
|
|
SourceManager &SM = Rewrite.getSourceMgr();
|
|
|
|
const FileEntry *Entry = SM.getFileManager().getFile(FilePath);
|
|
|
|
if (!Entry)
|
|
|
|
return false;
|
|
|
|
FileID ID;
|
|
|
|
// FIXME: Use SM.translateFile directly.
|
|
|
|
SourceLocation Location = SM.translateFileLineCol(Entry, 1, 1);
|
|
|
|
ID = Location.isValid() ?
|
|
|
|
SM.getFileID(Location) :
|
|
|
|
SM.createFileID(Entry, SourceLocation(), SrcMgr::C_User);
|
|
|
|
// FIXME: We cannot check whether Offset + Length is in the file, as
|
|
|
|
// the remapping API is not public in the RewriteBuffer.
|
|
|
|
const SourceLocation Start =
|
|
|
|
SM.getLocForStartOfFile(ID).
|
|
|
|
getLocWithOffset(ReplacementRange.getOffset());
|
|
|
|
// ReplaceText returns false on success.
|
|
|
|
// ReplaceText only fails if the source location is not a file location, in
|
|
|
|
// which case we already returned false earlier.
|
|
|
|
bool RewriteSucceeded = !Rewrite.ReplaceText(
|
|
|
|
Start, ReplacementRange.getLength(), ReplacementText);
|
|
|
|
assert(RewriteSucceeded);
|
|
|
|
return RewriteSucceeded;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Replacement::toString() const {
|
2015-04-20 14:58:56 +08:00
|
|
|
std::string Result;
|
|
|
|
llvm::raw_string_ostream Stream(Result);
|
|
|
|
Stream << FilePath << ": " << ReplacementRange.getOffset() << ":+"
|
2014-10-30 02:55:09 +08:00
|
|
|
<< ReplacementRange.getLength() << ":\"" << ReplacementText << "\"";
|
2015-04-20 14:58:56 +08:00
|
|
|
return Stream.str();
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const Replacement &LHS, const Replacement &RHS) {
|
|
|
|
if (LHS.getOffset() != RHS.getOffset())
|
|
|
|
return LHS.getOffset() < RHS.getOffset();
|
2015-06-16 18:22:10 +08:00
|
|
|
|
|
|
|
// Apply longer replacements first, specifically so that deletions are
|
|
|
|
// executed before insertions. It is (hopefully) never the intention to
|
|
|
|
// delete parts of newly inserted code.
|
2014-10-30 02:55:09 +08:00
|
|
|
if (LHS.getLength() != RHS.getLength())
|
2015-06-16 18:22:10 +08:00
|
|
|
return LHS.getLength() > RHS.getLength();
|
|
|
|
|
2014-10-30 02:55:09 +08:00
|
|
|
if (LHS.getFilePath() != RHS.getFilePath())
|
|
|
|
return LHS.getFilePath() < RHS.getFilePath();
|
|
|
|
return LHS.getReplacementText() < RHS.getReplacementText();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const Replacement &LHS, const Replacement &RHS) {
|
|
|
|
return LHS.getOffset() == RHS.getOffset() &&
|
|
|
|
LHS.getLength() == RHS.getLength() &&
|
|
|
|
LHS.getFilePath() == RHS.getFilePath() &&
|
|
|
|
LHS.getReplacementText() == RHS.getReplacementText();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Replacement::setFromSourceLocation(const SourceManager &Sources,
|
|
|
|
SourceLocation Start, unsigned Length,
|
|
|
|
StringRef ReplacementText) {
|
|
|
|
const std::pair<FileID, unsigned> DecomposedLocation =
|
|
|
|
Sources.getDecomposedLoc(Start);
|
|
|
|
const FileEntry *Entry = Sources.getFileEntryForID(DecomposedLocation.first);
|
2015-10-06 22:45:13 +08:00
|
|
|
this->FilePath = Entry ? Entry->getName() : InvalidLocation;
|
2014-10-30 02:55:09 +08:00
|
|
|
this->ReplacementRange = Range(DecomposedLocation.second, Length);
|
|
|
|
this->ReplacementText = ReplacementText;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: This should go into the Lexer, but we need to figure out how
|
|
|
|
// to handle ranges for refactoring in general first - there is no obvious
|
|
|
|
// good way how to integrate this into the Lexer yet.
|
|
|
|
static int getRangeSize(const SourceManager &Sources,
|
2015-06-03 21:10:41 +08:00
|
|
|
const CharSourceRange &Range,
|
|
|
|
const LangOptions &LangOpts) {
|
2014-10-30 02:55:09 +08:00
|
|
|
SourceLocation SpellingBegin = Sources.getSpellingLoc(Range.getBegin());
|
|
|
|
SourceLocation SpellingEnd = Sources.getSpellingLoc(Range.getEnd());
|
|
|
|
std::pair<FileID, unsigned> Start = Sources.getDecomposedLoc(SpellingBegin);
|
|
|
|
std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
|
|
|
|
if (Start.first != End.first) return -1;
|
|
|
|
if (Range.isTokenRange())
|
2015-06-03 21:10:41 +08:00
|
|
|
End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources, LangOpts);
|
2014-10-30 02:55:09 +08:00
|
|
|
return End.second - Start.second;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Replacement::setFromSourceRange(const SourceManager &Sources,
|
|
|
|
const CharSourceRange &Range,
|
2015-06-03 21:10:41 +08:00
|
|
|
StringRef ReplacementText,
|
|
|
|
const LangOptions &LangOpts) {
|
2014-10-30 02:55:09 +08:00
|
|
|
setFromSourceLocation(Sources, Sources.getSpellingLoc(Range.getBegin()),
|
2015-06-03 21:10:41 +08:00
|
|
|
getRangeSize(Sources, Range, LangOpts),
|
|
|
|
ReplacementText);
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
|
|
|
|
2015-11-23 16:33:48 +08:00
|
|
|
template <typename T>
|
|
|
|
unsigned shiftedCodePositionInternal(const T &Replaces, unsigned Position) {
|
|
|
|
unsigned Offset = 0;
|
|
|
|
for (const auto& R : Replaces) {
|
|
|
|
if (R.getOffset() + R.getLength() <= Position) {
|
|
|
|
Offset += R.getReplacementText().size() - R.getLength();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (R.getOffset() < Position &&
|
|
|
|
R.getOffset() + R.getReplacementText().size() <= Position) {
|
|
|
|
Position = R.getOffset() + R.getReplacementText().size() - 1;
|
|
|
|
}
|
|
|
|
break;
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
2015-11-23 16:33:48 +08:00
|
|
|
return Position + Offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned shiftedCodePosition(const Replacements &Replaces, unsigned Position) {
|
|
|
|
return shiftedCodePositionInternal(Replaces, Position);
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Remove this function when Replacements is implemented as std::vector
|
|
|
|
// instead of std::set.
|
|
|
|
unsigned shiftedCodePosition(const std::vector<Replacement> &Replaces,
|
|
|
|
unsigned Position) {
|
2015-11-23 16:33:48 +08:00
|
|
|
return shiftedCodePositionInternal(Replaces, Position);
|
2014-10-30 02:55:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void deduplicate(std::vector<Replacement> &Replaces,
|
|
|
|
std::vector<Range> &Conflicts) {
|
|
|
|
if (Replaces.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
auto LessNoPath = [](const Replacement &LHS, const Replacement &RHS) {
|
|
|
|
if (LHS.getOffset() != RHS.getOffset())
|
|
|
|
return LHS.getOffset() < RHS.getOffset();
|
|
|
|
if (LHS.getLength() != RHS.getLength())
|
|
|
|
return LHS.getLength() < RHS.getLength();
|
|
|
|
return LHS.getReplacementText() < RHS.getReplacementText();
|
|
|
|
};
|
|
|
|
|
|
|
|
auto EqualNoPath = [](const Replacement &LHS, const Replacement &RHS) {
|
|
|
|
return LHS.getOffset() == RHS.getOffset() &&
|
|
|
|
LHS.getLength() == RHS.getLength() &&
|
|
|
|
LHS.getReplacementText() == RHS.getReplacementText();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Deduplicate. We don't want to deduplicate based on the path as we assume
|
|
|
|
// that all replacements refer to the same file (or are symlinks).
|
|
|
|
std::sort(Replaces.begin(), Replaces.end(), LessNoPath);
|
|
|
|
Replaces.erase(std::unique(Replaces.begin(), Replaces.end(), EqualNoPath),
|
|
|
|
Replaces.end());
|
|
|
|
|
|
|
|
// Detect conflicts
|
|
|
|
Range ConflictRange(Replaces.front().getOffset(),
|
|
|
|
Replaces.front().getLength());
|
|
|
|
unsigned ConflictStart = 0;
|
|
|
|
unsigned ConflictLength = 1;
|
|
|
|
for (unsigned i = 1; i < Replaces.size(); ++i) {
|
|
|
|
Range Current(Replaces[i].getOffset(), Replaces[i].getLength());
|
|
|
|
if (ConflictRange.overlapsWith(Current)) {
|
|
|
|
// Extend conflicted range
|
|
|
|
ConflictRange = Range(ConflictRange.getOffset(),
|
|
|
|
std::max(ConflictRange.getLength(),
|
|
|
|
Current.getOffset() + Current.getLength() -
|
|
|
|
ConflictRange.getOffset()));
|
|
|
|
++ConflictLength;
|
|
|
|
} else {
|
|
|
|
if (ConflictLength > 1)
|
|
|
|
Conflicts.push_back(Range(ConflictStart, ConflictLength));
|
|
|
|
ConflictRange = Current;
|
|
|
|
ConflictStart = i;
|
|
|
|
ConflictLength = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ConflictLength > 1)
|
|
|
|
Conflicts.push_back(Range(ConflictStart, ConflictLength));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool applyAllReplacements(const Replacements &Replaces, Rewriter &Rewrite) {
|
|
|
|
bool Result = true;
|
|
|
|
for (Replacements::const_iterator I = Replaces.begin(),
|
|
|
|
E = Replaces.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (I->isApplicable()) {
|
|
|
|
Result = I->apply(Rewrite) && Result;
|
|
|
|
} else {
|
|
|
|
Result = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Remove this function when Replacements is implemented as std::vector
|
|
|
|
// instead of std::set.
|
|
|
|
bool applyAllReplacements(const std::vector<Replacement> &Replaces,
|
|
|
|
Rewriter &Rewrite) {
|
|
|
|
bool Result = true;
|
|
|
|
for (std::vector<Replacement>::const_iterator I = Replaces.begin(),
|
|
|
|
E = Replaces.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
if (I->isApplicable()) {
|
|
|
|
Result = I->apply(Rewrite) && Result;
|
|
|
|
} else {
|
|
|
|
Result = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string applyAllReplacements(StringRef Code, const Replacements &Replaces) {
|
2015-10-06 18:23:17 +08:00
|
|
|
IntrusiveRefCntPtr<vfs::InMemoryFileSystem> InMemoryFileSystem(
|
|
|
|
new vfs::InMemoryFileSystem);
|
|
|
|
FileManager Files(FileSystemOptions(), InMemoryFileSystem);
|
2014-10-30 02:55:09 +08:00
|
|
|
DiagnosticsEngine Diagnostics(
|
|
|
|
IntrusiveRefCntPtr<DiagnosticIDs>(new DiagnosticIDs),
|
|
|
|
new DiagnosticOptions);
|
|
|
|
SourceManager SourceMgr(Diagnostics, Files);
|
|
|
|
Rewriter Rewrite(SourceMgr, LangOptions());
|
2015-10-06 18:23:17 +08:00
|
|
|
InMemoryFileSystem->addFile(
|
|
|
|
"<stdin>", 0, llvm::MemoryBuffer::getMemBuffer(Code, "<stdin>"));
|
|
|
|
FileID ID = SourceMgr.createFileID(Files.getFile("<stdin>"), SourceLocation(),
|
|
|
|
clang::SrcMgr::C_User);
|
2014-10-30 02:55:09 +08:00
|
|
|
for (Replacements::const_iterator I = Replaces.begin(), E = Replaces.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
Replacement Replace("<stdin>", I->getOffset(), I->getLength(),
|
|
|
|
I->getReplacementText());
|
|
|
|
if (!Replace.apply(Rewrite))
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
std::string Result;
|
|
|
|
llvm::raw_string_ostream OS(Result);
|
|
|
|
Rewrite.getEditBuffer(ID).write(OS);
|
|
|
|
OS.flush();
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2015-09-23 16:30:47 +08:00
|
|
|
namespace {
|
|
|
|
// Represents a merged replacement, i.e. a replacement consisting of multiple
|
|
|
|
// overlapping replacements from 'First' and 'Second' in mergeReplacements.
|
|
|
|
//
|
|
|
|
// Position projection:
|
|
|
|
// Offsets and lengths of the replacements can generally refer to two different
|
|
|
|
// coordinate spaces. Replacements from 'First' refer to the original text
|
|
|
|
// whereas replacements from 'Second' refer to the text after applying 'First'.
|
|
|
|
//
|
|
|
|
// MergedReplacement always operates in the coordinate space of the original
|
|
|
|
// text, i.e. transforms elements from 'Second' to take into account what was
|
|
|
|
// changed based on the elements from 'First'.
|
|
|
|
//
|
|
|
|
// We can correctly calculate this projection as we look at the replacements in
|
|
|
|
// order of strictly increasing offsets.
|
|
|
|
//
|
|
|
|
// Invariants:
|
|
|
|
// * We always merge elements from 'First' into elements from 'Second' and vice
|
|
|
|
// versa. Within each set, the replacements are non-overlapping.
|
|
|
|
// * We only extend to the right, i.e. merge elements with strictly increasing
|
|
|
|
// offsets.
|
|
|
|
class MergedReplacement {
|
|
|
|
public:
|
|
|
|
MergedReplacement(const Replacement &R, bool MergeSecond, int D)
|
|
|
|
: MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()),
|
|
|
|
Offset(R.getOffset() + (MergeSecond ? 0 : Delta)), Length(R.getLength()),
|
|
|
|
Text(R.getReplacementText()) {
|
|
|
|
Delta += MergeSecond ? 0 : Text.size() - Length;
|
|
|
|
DeltaFirst = MergeSecond ? Text.size() - Length : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merges the next element 'R' into this merged element. As we always merge
|
|
|
|
// from 'First' into 'Second' or vice versa, the MergedReplacement knows what
|
2016-03-01 00:44:16 +08:00
|
|
|
// set the next element is coming from.
|
2015-09-23 16:30:47 +08:00
|
|
|
void merge(const Replacement &R) {
|
|
|
|
if (MergeSecond) {
|
|
|
|
unsigned REnd = R.getOffset() + Delta + R.getLength();
|
|
|
|
unsigned End = Offset + Text.size();
|
|
|
|
if (REnd > End) {
|
|
|
|
Length += REnd - End;
|
|
|
|
MergeSecond = false;
|
|
|
|
}
|
|
|
|
StringRef TextRef = Text;
|
|
|
|
StringRef Head = TextRef.substr(0, R.getOffset() + Delta - Offset);
|
|
|
|
StringRef Tail = TextRef.substr(REnd - Offset);
|
|
|
|
Text = (Head + R.getReplacementText() + Tail).str();
|
|
|
|
Delta += R.getReplacementText().size() - R.getLength();
|
|
|
|
} else {
|
|
|
|
unsigned End = Offset + Length;
|
|
|
|
StringRef RText = R.getReplacementText();
|
|
|
|
StringRef Tail = RText.substr(End - R.getOffset());
|
|
|
|
Text = (Text + Tail).str();
|
|
|
|
if (R.getOffset() + RText.size() > End) {
|
|
|
|
Length = R.getOffset() + R.getLength() - Offset;
|
|
|
|
MergeSecond = true;
|
|
|
|
} else {
|
|
|
|
Length += R.getLength() - RText.size();
|
|
|
|
}
|
|
|
|
DeltaFirst += RText.size() - R.getLength();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns 'true' if 'R' starts strictly after the MergedReplacement and thus
|
|
|
|
// doesn't need to be merged.
|
|
|
|
bool endsBefore(const Replacement &R) const {
|
|
|
|
if (MergeSecond)
|
|
|
|
return Offset + Text.size() < R.getOffset() + Delta;
|
|
|
|
return Offset + Length < R.getOffset();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns 'true' if an element from the second set should be merged next.
|
|
|
|
bool mergeSecond() const { return MergeSecond; }
|
|
|
|
int deltaFirst() const { return DeltaFirst; }
|
|
|
|
Replacement asReplacement() const { return {FilePath, Offset, Length, Text}; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool MergeSecond;
|
|
|
|
|
|
|
|
// Amount of characters that elements from 'Second' need to be shifted by in
|
|
|
|
// order to refer to the original text.
|
|
|
|
int Delta;
|
|
|
|
|
|
|
|
// Sum of all deltas (text-length - length) of elements from 'First' merged
|
|
|
|
// into this element. This is used to update 'Delta' once the
|
|
|
|
// MergedReplacement is completed.
|
|
|
|
int DeltaFirst;
|
|
|
|
|
|
|
|
// Data of the actually merged replacement. FilePath and Offset aren't changed
|
|
|
|
// as the element is only extended to the right.
|
|
|
|
const StringRef FilePath;
|
|
|
|
const unsigned Offset;
|
|
|
|
unsigned Length;
|
|
|
|
std::string Text;
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
Replacements mergeReplacements(const Replacements &First,
|
|
|
|
const Replacements &Second) {
|
|
|
|
if (First.empty() || Second.empty())
|
|
|
|
return First.empty() ? Second : First;
|
|
|
|
|
|
|
|
// Delta is the amount of characters that replacements from 'Second' need to
|
|
|
|
// be shifted so that their offsets refer to the original text.
|
|
|
|
int Delta = 0;
|
|
|
|
Replacements Result;
|
|
|
|
|
|
|
|
// Iterate over both sets and always add the next element (smallest total
|
|
|
|
// Offset) from either 'First' or 'Second'. Merge that element with
|
|
|
|
// subsequent replacements as long as they overlap. See more details in the
|
|
|
|
// comment on MergedReplacement.
|
|
|
|
for (auto FirstI = First.begin(), SecondI = Second.begin();
|
|
|
|
FirstI != First.end() || SecondI != Second.end();) {
|
|
|
|
bool NextIsFirst = SecondI == Second.end() ||
|
2015-09-23 20:47:50 +08:00
|
|
|
(FirstI != First.end() &&
|
|
|
|
FirstI->getOffset() < SecondI->getOffset() + Delta);
|
2015-09-23 16:30:47 +08:00
|
|
|
MergedReplacement Merged(NextIsFirst ? *FirstI : *SecondI, NextIsFirst,
|
|
|
|
Delta);
|
|
|
|
++(NextIsFirst ? FirstI : SecondI);
|
|
|
|
|
|
|
|
while ((Merged.mergeSecond() && SecondI != Second.end()) ||
|
|
|
|
(!Merged.mergeSecond() && FirstI != First.end())) {
|
|
|
|
auto &I = Merged.mergeSecond() ? SecondI : FirstI;
|
|
|
|
if (Merged.endsBefore(*I))
|
|
|
|
break;
|
|
|
|
Merged.merge(*I);
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
Delta -= Merged.deltaFirst();
|
|
|
|
Result.insert(Merged.asReplacement());
|
|
|
|
}
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2014-10-30 02:55:09 +08:00
|
|
|
} // end namespace tooling
|
|
|
|
} // end namespace clang
|
|
|
|
|