This commit adds code completion support to the language server, and initially supports providing completions for: Member access, attributes/constraint/dialect/operation names, and pattern metadata. Differential Revision: https://reviews.llvm.org/D121544
18 lines
225 B
CMake
18 lines
225 B
CMake
|
|
llvm_add_library(MLIRPDLLParser STATIC
|
|
CodeComplete.cpp
|
|
Lexer.cpp
|
|
Parser.cpp
|
|
|
|
DISABLE_LLVM_LINK_LLVM_DYLIB
|
|
|
|
LINK_COMPONENTS
|
|
Support
|
|
TableGen
|
|
|
|
LINK_LIBS PUBLIC
|
|
MLIRPDLLAST
|
|
MLIRSupport
|
|
MLIRTableGen
|
|
)
|