Files
swift-mirror/unittests/Syntax/CMakeLists.txt
Xi Ge 5a8053e7ef libSyntax: add getAbsoluteEndPosition() method to syntax nodes.
This implementation uses sibling's absolute start position to help
populate caches while getting the end position.
2018-05-01 12:06:41 -07:00

18 lines
367 B
CMake

add_swift_unittest(SwiftSyntaxTests
DeclSyntaxTests.cpp
ExprSyntaxTests.cpp
GenericSyntaxTests.cpp
RawSyntaxTests.cpp
StmtSyntaxTests.cpp
SyntaxCollectionTests.cpp
ThreadSafeCachingTests.cpp
TriviaTests.cpp
TypeSyntaxTests.cpp
UnknownSyntaxTests.cpp
AbsolutePositionTests.cpp
)
target_link_libraries(SwiftSyntaxTests
PRIVATE
swiftSyntax)