We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cacdc46 commit 2b2613dCopy full SHA for 2b2613d
2 files changed
unified/extractor/BUILD.bazel
@@ -7,6 +7,7 @@ codeql_rust_binary(
7
name = "extractor",
8
srcs = glob(["src/**/*.rs"]),
9
aliases = aliases(),
10
+ compile_data = ["ast_types.yml"],
11
proc_macro_deps = all_crate_deps(
12
proc_macro = True,
13
),
unified/extractor/tree-sitter-swift/bindings/rust/build.rs
@@ -16,7 +16,9 @@ fn main() {
16
Some(&grammar_js),
17
tree_sitter_generate::ABI_VERSION_MAX,
18
None,
19
- None,
+ // Evaluate grammar.js with the embedded QuickJS runtime instead of
20
+ // spawning `node`, which isn't available inside Bazel's sandbox.
21
+ Some("native"),
22
true,
23
tree_sitter_generate::OptLevel::default(),
24
)
0 commit comments