This website requires JavaScript.
Explore
Help
Sign In
RPCS3
/
llvm-mirror
Watch
1
Star
0
Fork
0
You've already forked llvm-mirror
mirror of
https://github.com/RPCS3/llvm-mirror.git
synced
2024-11-24 11:42:57 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
911bb226db
llvm-mirror
/
unittests
/
LineEditor
/
CMakeLists.txt
9 lines
108 B
CMake
Raw
Normal View
History
Unescape
Escape
Introduce line editor library. This library will be used by clang-query. I can imagine LLDB becoming another client of this library, so I think LLVM is a sensible place for it to live. It wraps libedit, and adds tab completion support. The code is loosely based on the line editor bits in LLDB, with a few improvements: - Polymorphism for retrieving the list of tab completions, based on the concept pattern from the new pass manager. - Tab completion doesn't corrupt terminal output if the input covers multiple lines. Unfortunately this can only be done in a truly horrible way, as far as I can tell. But since the alternative is to implement our own line editor (which I don't think LLVM should be in the business of doing, at least for now) I think it may be acceptable. - Includes a fallback for the case where the user doesn't have libedit installed. Note that this uses C stdio, mainly because libedit also uses C stdio. Differential Revision: http://llvm-reviews.chandlerc.com/D2200 llvm-svn: 200595
2014-02-01 00:46:14 +01:00
set
(
LLVM_LINK_COMPONENTS
L
i
n
e
E
d
i
t
o
r
[CMake] LineEditorTests: Add Support to link_components. Even if LLVMSupport is added in add_unittests, LLVMSupport may be here as consistency. llvm-svn: 213854
2014-07-24 13:44:33 +02:00
S
u
p
p
o
r
t
Introduce line editor library. This library will be used by clang-query. I can imagine LLDB becoming another client of this library, so I think LLVM is a sensible place for it to live. It wraps libedit, and adds tab completion support. The code is loosely based on the line editor bits in LLDB, with a few improvements: - Polymorphism for retrieving the list of tab completions, based on the concept pattern from the new pass manager. - Tab completion doesn't corrupt terminal output if the input covers multiple lines. Unfortunately this can only be done in a truly horrible way, as far as I can tell. But since the alternative is to implement our own line editor (which I don't think LLVM should be in the business of doing, at least for now) I think it may be acceptable. - Includes a fallback for the case where the user doesn't have libedit installed. Note that this uses C stdio, mainly because libedit also uses C stdio. Differential Revision: http://llvm-reviews.chandlerc.com/D2200 llvm-svn: 200595
2014-02-01 00:46:14 +01:00
)
add_llvm_unittest
(
LineEditorTests
L
i
n
e
E
d
i
t
o
r
.
c
p
p
)
Reference in New Issue
Copy Permalink