Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d6d0645
Rust: Remove skip_path_resolution config variable (hardhoded to true).
geoffw0 Aug 26, 2025
456f560
Rust: Remove ResolvePaths enum and resolve_paths arguments up to Tran…
geoffw0 Aug 26, 2025
078fbc6
Rust: Remove resolve_paths from the translator.
geoffw0 Aug 26, 2025
dd00df7
Rust: Remove unused wiring.
geoffw0 Aug 26, 2025
bd5f863
Rust: Remove uncalled methods.
geoffw0 Aug 26, 2025
70600fe
Rust: Remove unused traits and things.
geoffw0 Aug 26, 2025
a8f7f74
Rust: Remove unused use decls.
geoffw0 Aug 26, 2025
3cd057f
Rust: Remove Resolvable from the schema.
geoffw0 Aug 26, 2025
c7947a0
Rust: Remove built-in methods from Addressable in the schema.
geoffw0 Aug 26, 2025
152ae1d
Rust: Codegen.
geoffw0 Aug 26, 2025
5d060d6
Rust: Remove leftover QL use of Resolvable.
geoffw0 Aug 26, 2025
1d815b1
Rust: Update test expectations.
geoffw0 Aug 26, 2025
a075ed5
Rust: Remove telemetry about extractor generated paths.
geoffw0 Aug 27, 2025
2e747bb
Merge branch 'main' into oldpaths1 (some generated files are left unm…
geoffw0 Aug 27, 2025
83df113
Rust: Codegen.
geoffw0 Aug 27, 2025
9efb6ea
Rust: Cargo fmt.
geoffw0 Aug 27, 2025
f838494
Rust: Remove empty impls.
geoffw0 Aug 27, 2025
194363c
Rust: Codegen.
geoffw0 Aug 27, 2025
1e46dd8
Rust: Remove redundant code.
geoffw0 Aug 28, 2025
e860600
Rust: Remove the canonical_path_disabled test entirely.
geoffw0 Aug 28, 2025
5d14ef5
Rust: Change note.
geoffw0 Aug 28, 2025
a6bdab1
Merge branch 'main' into oldpaths1
geoffw0 Aug 29, 2025
bdc1f17
Rust: Add upgrade and downgrade scripts (template).
geoffw0 Aug 29, 2025
d650d56
Rust: Implement upgrade and downgrade scripts.
geoffw0 Aug 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions rust/ast-generator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,6 @@ fn has_special_emission(type_name: &str) -> bool {
| "Struct"
| "Enum"
| "Union"
| "Trait"
| "Module"
| "Variant"
| "PathExpr"
| "RecordExpr"
| "PathPat"
| "RecordPat"
| "TupleStructPat"
| "MethodCallExpr"
| "PathSegment"
| "Const"
)
Expand Down
6 changes: 0 additions & 6 deletions rust/codeql-extractor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ options:
Collect flame graph data using the `tracing-flame` crate. To render a flame graph
or chart, run the `inferno-flamegraph` command. See also: https://crates.io/crates/tracing-flame
type: string
skip_path_resolution:
title: Skip path resolution
description: >
Skip path resolution. This is experimental, while we move path resolution from the extractor to the QL library.
type: string
pattern: "^(false|true)$"
extract_dependencies_as_source:
title: Extract dependencies as source code
description: >
Expand Down
Loading