-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Migrate JS files to ESM - Don't inherit from DTD in XML - Add tree-sitter.json file - Update the bindings - Add release workflow
- Loading branch information
1 parent
809266e
commit fc4724e
Showing
60 changed files
with
9,611 additions
and
9,467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* text eol=lf | ||
* text=auto eol=lf | ||
|
||
**/src/*.json linguist-generated | ||
**/src/parser.c linguist-generated | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
|
||
project(tree-sitter-xml | ||
VERSION "0.7.0" | ||
DESCRIPTION "XML & DTD grammars for tree-sitter" | ||
HOMEPAGE_URL "https://github.com/tree-sitter-grammars/tree-sitter-xml" | ||
LANGUAGES C) | ||
|
||
option(BUILD_SHARED_LIBS "Build using shared libraries" ON) | ||
option(TREE_SITTER_REUSE_ALLOCATOR "Reuse the library allocator" OFF) | ||
|
||
set(TREE_SITTER_ABI_VERSION 14 CACHE STRING "Tree-sitter ABI version") | ||
if(NOT ${TREE_SITTER_ABI_VERSION} MATCHES "^[0-9]+$") | ||
unset(TREE_SITTER_ABI_VERSION CACHE) | ||
message(FATAL_ERROR "TREE_SITTER_ABI_VERSION must be an integer") | ||
endif() | ||
|
||
find_program(TREE_SITTER_CLI tree-sitter DOC "Tree-sitter CLI") | ||
|
||
include(GNUInstallDirs) | ||
|
||
macro(add_parser name) | ||
add_custom_command(OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" | ||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/src/grammar.json" | ||
COMMAND "${TREE_SITTER_CLI}" generate src/grammar.json | ||
--abi=${TREE_SITTER_ABI_VERSION} | ||
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | ||
COMMENT "Generating parser.c") | ||
|
||
add_library(tree-sitter-${name} | ||
"${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" | ||
"${CMAKE_CURRENT_SOURCE_DIR}/src/scanner.c") | ||
target_include_directories(tree-sitter-${name} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/src") | ||
|
||
target_compile_definitions(tree-sitter-${name} PRIVATE | ||
$<$<BOOL:${TREE_SITTER_REUSE_ALLOCATOR}>:TREE_SITTER_REUSE_ALLOCATOR> | ||
$<$<CONFIG:Debug>:TREE_SITTER_DEBUG>) | ||
|
||
set_target_properties(tree-sitter-${name} | ||
PROPERTIES | ||
C_STANDARD 11 | ||
POSITION_INDEPENDENT_CODE ON | ||
SOVERSION "${TREE_SITTER_ABI_VERSION}.${PROJECT_VERSION_MAJOR}" | ||
DEFINE_SYMBOL "") | ||
|
||
configure_file("${CMAKE_SOURCE_DIR}/bindings/c/tree-sitter-${name}.pc.in" | ||
"${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-${name}.pc" @ONLY) | ||
|
||
install(FILES "${CMAKE_SOURCE_DIR}/bindings/c/tree-sitter-${name}.h" | ||
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") | ||
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-${name}.pc" | ||
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") | ||
install(TARGETS tree-sitter-${name} | ||
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") | ||
endmacro() | ||
|
||
add_subdirectory(xml tree-sitter-xml) | ||
|
||
add_subdirectory(dtd tree-sitter-dtd) | ||
|
||
add_custom_target(test "${TREE_SITTER_CLI}" test | ||
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | ||
COMMENT "tree-sitter test") |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"object": { | ||
"pins": [ | ||
{ | ||
"package": "SwiftTreeSitter", | ||
"repositoryURL": "https://github.com/ChimeHQ/SwiftTreeSitter", | ||
"state": { | ||
"branch": null, | ||
"revision": "2599e95310b3159641469d8a21baf2d3d200e61f", | ||
"version": "0.8.0" | ||
} | ||
} | ||
] | ||
}, | ||
"version": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,46 @@ | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let excludes = [ | ||
"Cargo.toml", | ||
"Makefile", | ||
"binding.gyp", | ||
"bindings/go", | ||
"bindings/node", | ||
"bindings/python", | ||
"bindings/rust", | ||
"common/common.mak", | ||
"common/index.js", | ||
"package.json", | ||
"package-lock.json", | ||
"pyproject.toml", | ||
"setup.py", | ||
"test", | ||
".editorconfig", | ||
".github", | ||
".gitignore", | ||
".gitattributes", | ||
] | ||
|
||
let package = Package( | ||
name: "TreeSitterXML", | ||
products: [ | ||
.library(name: "TreeSitterXML", targets: ["TreeSitterXML", "TreeSitterDTD"]), | ||
], | ||
dependencies: [], | ||
dependencies: [ | ||
.package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), | ||
], | ||
targets: [ | ||
.target(name: "TreeSitterXML", | ||
path: ".", | ||
exclude: excludes + [ | ||
"bindings/swift/TreeSitterDTD", | ||
"xml/Makefile", | ||
"xml/grammar.js", | ||
"dtd", | ||
], | ||
sources: [ | ||
"xml/src/parser.c", | ||
"xml/src/scanner.c", | ||
], | ||
resources: [ | ||
.copy("queries/xml") | ||
], | ||
publicHeadersPath: "bindings/swift", | ||
publicHeadersPath: "bindings/swift/xml", | ||
cSettings: [.headerSearchPath("xml/src")]), | ||
.target(name: "TreeSitterDTD", | ||
path: ".", | ||
exclude: excludes + [ | ||
"bindings/swift/TreeSitterXML", | ||
"dtd/Makefile", | ||
"dtd/grammar.js", | ||
"xml", | ||
], | ||
sources: [ | ||
"dtd/src/parser.c", | ||
"dtd/src/scanner.c", | ||
], | ||
resources: [ | ||
.copy("queries/dtd") | ||
], | ||
publicHeadersPath: "bindings/swift", | ||
cSettings: [.headerSearchPath("dtd/src")]) | ||
publicHeadersPath: "bindings/swift/dtd", | ||
cSettings: [.headerSearchPath("dtd/src")]), | ||
.testTarget( | ||
name: "TreeSitterXMLTests", | ||
dependencies: [ | ||
"SwiftTreeSitter", | ||
"TreeSitterXML", | ||
"TreeSitterDTD", | ||
], | ||
path: "bindings/swift/TreeSitterXMLTests" | ||
) | ||
], | ||
cLanguageStandard: .c11 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
prefix=@PREFIX@ | ||
libdir=@LIBDIR@ | ||
includedir=@INCLUDEDIR@ | ||
prefix=@CMAKE_INSTALL_PREFIX@ | ||
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@ | ||
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@ | ||
|
||
Name: tree-sitter-dtd | ||
Description: DTD grammar for tree-sitter | ||
URL: @URL@ | ||
Version: @VERSION@ | ||
Requires: @REQUIRES@ | ||
Libs: -L${libdir} @ADDITIONAL_LIBS@ -ltree-sitter-dtd | ||
Description: @PROJECT_DESCRIPTION@ | ||
URL: @CMAKE_PROJECT_HOMEPAGE_URL@ | ||
Version: @CMAKE_PROJECT_VERSION@ | ||
Requires: @TS_REQUIRES@ | ||
Libs: -L${libdir} -ltree-sitter-dtd | ||
Cflags: -I${includedir} |
Oops, something went wrong.