Skip to content

Commit

Permalink
Implement Python static import parser.
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonforal committed Dec 18, 2024
1 parent 7c92f76 commit ebe69c3
Show file tree
Hide file tree
Showing 3 changed files with 514 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/static-analysis-kernel/src/analysis/languages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
// Copyright 2024 Datadog, Inc.

pub mod go;
pub mod python;

/// Returns the text that `node` spans.
///
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Unless explicitly stated otherwise all files in this repository are licensed under the Apache License, Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2024 Datadog, Inc.

mod imports;
pub use imports::*;
Loading

0 comments on commit ebe69c3

Please sign in to comment.