Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
690 changes: 289 additions & 401 deletions crates/ty_python_semantic/src/types.rs
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The diff of this file is less chatty if you hide whitespace

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/ty_python_semantic/src/types/call.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use super::context::InferContext;
use super::{CallableSignature, Signature, Signatures, Type};
use super::{Signature, Type};
use crate::Db;

mod arguments;
mod bind;
pub(super) use arguments::{Argument, CallArgumentTypes, CallArguments};
pub(super) use bind::{Bindings, CallableBinding};
pub(super) use bind::{Binding, Bindings, CallableBinding};

/// Wraps a [`Bindings`] for an unsuccessful call with information about why the call was
/// unsuccessful.
Expand Down
Loading
Loading