Go to file
Manuel Klimek 65bdeae121 Adds JSON output for replacements, to simplify tools integration.
Using -output-replacements will now output the replacements instead
of the changed code. This allows easier integration with tools that
need full control over what changed.

The format is an array of objects with the members "offset" (number),
"length" (number) and "replacement_text" (string), for example:

[
  {
    "offset": 42,
    "length": 5,
    "replacement_text": "  "
  },
  {
    "offset": 105,
    "length": 4,
    "replacement_text": ""
  }
]

llvm-svn: 174382
2013-02-05 15:52:21 +00:00
clang Initial support for formatting ObjC method declarations/calls. 2013-02-05 10:07:47 +00:00
clang-tools-extra Adds JSON output for replacements, to simplify tools integration. 2013-02-05 15:52:21 +00:00
compiler-rt [asan] Fix Win/Mac build. 2013-02-05 15:02:12 +00:00
debuginfo-tests Harden this test a bit to work on the mac with ancient gdbs. 2013-01-17 20:09:50 +00:00
libclc Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
libcxx Saleem Abdulrasool: If errno is defined as volatile int, the qualifier differences can cause 2013-01-22 17:26:08 +00:00
libcxxabi Update the copyright coredits -- Happy new year 2013! 2013-01-01 10:00:19 +00:00
lld [Resolver] Improve undefined symbol error. 2013-02-03 10:50:06 +00:00
lldb Remove the m_images(NULL) hack in the Target ctor now 2013-02-04 23:30:05 +00:00
llvm Support: ensure proper state in ErrorOr copy ctors before calling 'get' 2013-02-05 15:41:27 +00:00
polly TempScopInfo: clang-format 2013-02-05 12:27:23 +00:00