Skip to content

Commit

Permalink
refactor: generic symbol graph (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Nov 6, 2023
1 parent 1525108 commit 099c0a3
Show file tree
Hide file tree
Showing 42 changed files with 1,520 additions and 2,406 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name = "deno_graph"
all-features = true

[features]
type_tracing = ["deno_ast/transforms", "deno_ast/visit", "deno_ast/utils"]
symbols = ["deno_ast/transforms", "deno_ast/visit", "deno_ast/utils"]

[dependencies]
anyhow = "1.0.43"
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ mod ast;
mod graph;
mod module_specifier;

#[cfg(feature = "type_tracing")]
pub mod type_tracer;
#[cfg(feature = "symbols")]
pub mod symbols;

pub mod packages;
pub mod source;
Expand Down
Loading

0 comments on commit 099c0a3

Please sign in to comment.