repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/session/capabilities.rs
crates/ruff_server/src/session/capabilities.rs
use lsp_types::ClientCapabilities; use ruff_linter::display_settings; #[derive(Debug, Clone, PartialEq, Eq, Default)] #[expect(clippy::struct_excessive_bools)] pub(crate) struct ResolvedClientCapabilities { pub(crate) code_action_deferred_edit_resolution: bool, pub(crate) apply_edit: bool, pub(crate) docum...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/session/request_queue.rs
crates/ruff_server/src/session/request_queue.rs
use crate::session::client::ClientResponseHandler; use lsp_server::RequestId; use rustc_hash::FxHashMap; use std::cell::{Cell, OnceCell, RefCell}; use std::fmt::Formatter; use std::sync::Arc; use std::sync::atomic::AtomicBool; use std::time::Instant; /// Tracks the pending requests between client and server. pub(crate...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/session/index/ruff_settings.rs
crates/ruff_server/src/session/index/ruff_settings.rs
use std::collections::BTreeMap; use std::ops::Deref; use std::path::{Path, PathBuf}; use std::sync::Arc; use std::sync::atomic::{AtomicBool, Ordering}; use anyhow::Context; use ignore::{WalkBuilder, WalkState}; use ruff_linter::settings::types::GlobPath; use ruff_linter::{settings::types::FilePattern, settings::types...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/schedule.rs
crates/ruff_server/src/server/schedule.rs
use std::num::NonZeroUsize; use crate::session::{Client, Session}; mod task; mod thread; pub(super) use task::{BackgroundSchedule, Task}; use self::{ task::{BackgroundTaskBuilder, SyncTask}, thread::ThreadPriority, }; /// The event loop thread is actually a secondary thread that we spawn from the /// _actu...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/connection.rs
crates/ruff_server/src/server/connection.rs
use lsp_server as lsp; pub type ConnectionSender = crossbeam::channel::Sender<lsp::Message>; /// A builder for `Connection` that handles LSP initialization. pub(crate) struct ConnectionInitializer { connection: lsp::Connection, } impl ConnectionInitializer { /// Create a new LSP server connection over stdin/...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api.rs
crates/ruff_server/src/server/api.rs
use std::panic::UnwindSafe; use anyhow::anyhow; use lsp_server::{self as server, RequestId}; use lsp_types::{notification::Notification, request::Request}; use notifications as notification; use requests as request; use crate::{ server::{ api::traits::{ BackgroundDocumentNotificationHandler, B...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/main_loop.rs
crates/ruff_server/src/server/main_loop.rs
use anyhow::anyhow; use crossbeam::select; use lsp_server::Message; use lsp_types::{ self as types, DidChangeWatchedFilesRegistrationOptions, FileSystemWatcher, notification::Notification as _, }; use crate::{ Server, server::{api, schedule}, session::Client, }; pub type MainLoopSender = crossbeam...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/diagnostics.rs
crates/ruff_server/src/server/api/diagnostics.rs
use crate::{ lint::DiagnosticsMap, session::{Client, DocumentQuery, DocumentSnapshot}, }; use super::LSPResult; pub(super) fn generate_diagnostics(snapshot: &DocumentSnapshot) -> DiagnosticsMap { if snapshot.client_settings().lint() { let document = snapshot.query(); crate::lint::check( ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/traits.rs
crates/ruff_server/src/server/api/traits.rs
//! Traits for handling requests and notifications from the LSP client. //! //! This module defines the trait abstractions used by the language server to handle incoming //! requests and notifications from clients. It provides a type-safe way to implement LSP handlers //! with different execution models (synchronous or...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications.rs
crates/ruff_server/src/server/api/notifications.rs
mod cancel; mod did_change; mod did_change_configuration; mod did_change_notebook; mod did_change_watched_files; mod did_change_workspace; mod did_close; mod did_close_notebook; mod did_open; mod did_open_notebook; use super::traits::{NotificationHandler, SyncNotificationHandler}; pub(super) use cancel::CancelNotific...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests.rs
crates/ruff_server/src/server/api/requests.rs
mod code_action; mod code_action_resolve; mod diagnostic; mod execute_command; mod format; mod format_range; mod hover; mod shutdown; use super::{ define_document_url, traits::{BackgroundDocumentRequestHandler, RequestHandler, SyncRequestHandler}, }; pub(super) use code_action::CodeActions; pub(super) use code...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/shutdown.rs
crates/ruff_server/src/server/api/requests/shutdown.rs
use crate::Session; use crate::server::api::traits::{RequestHandler, SyncRequestHandler}; use crate::session::Client; pub(crate) struct ShutdownHandler; impl RequestHandler for ShutdownHandler { type RequestType = lsp_types::request::Shutdown; } impl SyncRequestHandler for ShutdownHandler { fn run(session: &...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/code_action_resolve.rs
crates/ruff_server/src/server/api/requests/code_action_resolve.rs
use std::borrow::Cow; use lsp_server::ErrorCode; use lsp_types::{self as types, request as req}; use ruff_linter::codes::Rule; use crate::PositionEncoding; use crate::edit::WorkspaceEditTracker; use crate::fix::Fixes; use crate::server::Result; use crate::server::SupportedCodeAction; use crate::server::api::LSPResul...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/hover.rs
crates/ruff_server/src/server/api/requests/hover.rs
use crate::server::Result; use crate::session::{Client, DocumentSnapshot}; use anyhow::Context; use lsp_types::{self as types, request as req}; use regex::Regex; use ruff_linter::FixAvailability; use ruff_linter::registry::{Linter, Rule, RuleNamespace}; use ruff_source_file::OneIndexed; use std::fmt::Write; pub(crate)...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/execute_command.rs
crates/ruff_server/src/server/api/requests/execute_command.rs
use std::fmt::Write; use std::str::FromStr; use crate::edit::WorkspaceEditTracker; use crate::server::SupportedCommand; use crate::server::api::LSPResult; use crate::session::{Client, Session}; use crate::{DIAGNOSTIC_NAME, DocumentKey}; use crate::{edit::DocumentVersion, server}; use lsp_server::ErrorCode; use lsp_typ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/format_range.rs
crates/ruff_server/src/server/api/requests/format_range.rs
use anyhow::Context; use lsp_types::{self as types, Range, request as req}; use crate::edit::{RangeExt, ToRangeExt}; use crate::resolve::is_document_excluded_for_formatting; use crate::server::Result; use crate::server::api::LSPResult; use crate::session::{Client, DocumentQuery, DocumentSnapshot}; use crate::{Position...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/format.rs
crates/ruff_server/src/server/api/requests/format.rs
use anyhow::Context; use lsp_types::{self as types, request as req}; use types::TextEdit; use ruff_source_file::LineIndex; use crate::edit::{Replacement, ToRangeExt}; use crate::fix::Fixes; use crate::resolve::is_document_excluded_for_formatting; use crate::server::Result; use crate::server::api::LSPResult; use crate...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/code_action.rs
crates/ruff_server/src/server/api/requests/code_action.rs
use lsp_server::ErrorCode; use lsp_types::{self as types, request as req}; use rustc_hash::FxHashSet; use types::{CodeActionKind, CodeActionOrCommand}; use crate::DIAGNOSTIC_NAME; use crate::edit::WorkspaceEditTracker; use crate::lint::{DiagnosticFix, fixes_for_diagnostics}; use crate::server::Result; use crate::serve...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/requests/diagnostic.rs
crates/ruff_server/src/server/api/requests/diagnostic.rs
use crate::server::api::diagnostics::generate_diagnostics; use crate::session::DocumentSnapshot; use crate::{server::Result, session::Client}; use lsp_types::{self as types, request as req}; use types::{ DocumentDiagnosticReportResult, FullDocumentDiagnosticReport, RelatedFullDocumentDiagnosticReport, }; pub(c...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_change_configuration.rs
crates/ruff_server/src/server/api/notifications/did_change_configuration.rs
use crate::server::Result; use crate::session::{Client, Session}; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidChangeConfiguration; impl super::NotificationHandler for DidChangeConfiguration { type NotificationType = notif::DidChangeConfiguration; } impl super::SyncNotificat...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_open_notebook.rs
crates/ruff_server/src/server/api/notifications/did_open_notebook.rs
use crate::edit::NotebookDocument; use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::publish_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_server::ErrorCode; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidOp...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_close_notebook.rs
crates/ruff_server/src/server/api/notifications/did_close_notebook.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::session::{Client, Session}; use lsp_types::notification as notif; use lsp_types::{self as types, NotebookDocumentIdentifier}; pub(crate) struct DidCloseNotebook; impl super::NotificationHandler for DidCloseNotebook { type NotificationType = ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/cancel.rs
crates/ruff_server/src/server/api/notifications/cancel.rs
use lsp_server::RequestId; use lsp_types::CancelParams; use lsp_types::notification::Cancel; use crate::server::Result; use crate::server::api::traits::{NotificationHandler, SyncNotificationHandler}; use crate::session::{Client, Session}; pub(crate) struct CancelNotificationHandler; impl NotificationHandler for Canc...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_open.rs
crates/ruff_server/src/server/api/notifications/did_open.rs
use crate::TextDocument; use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::publish_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidOpen; impl super::NotificationHandler ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_change_notebook.rs
crates/ruff_server/src/server/api/notifications/did_change_notebook.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::publish_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_server::ErrorCode; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidChangeNotebook; impl super::Notifica...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_change.rs
crates/ruff_server/src/server/api/notifications/did_change.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::publish_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_server::ErrorCode; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidChange; impl super::NotificationHand...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_change_watched_files.rs
crates/ruff_server/src/server/api/notifications/did_change_watched_files.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::publish_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidChangeWatchedFiles; impl super::NotificationHandler for DidChan...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_change_workspace.rs
crates/ruff_server/src/server/api/notifications/did_change_workspace.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::session::{Client, Session}; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidChangeWorkspace; impl super::NotificationHandler for DidChangeWorkspace { type NotificationType = notif::DidChangeWorkspaceFolders...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/api/notifications/did_close.rs
crates/ruff_server/src/server/api/notifications/did_close.rs
use crate::server::Result; use crate::server::api::LSPResult; use crate::server::api::diagnostics::clear_diagnostics_for_document; use crate::session::{Client, Session}; use lsp_types as types; use lsp_types::notification as notif; pub(crate) struct DidClose; impl super::NotificationHandler for DidClose { type No...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/schedule/task.rs
crates/ruff_server/src/server/schedule/task.rs
use lsp_server::RequestId; use serde::Serialize; use crate::session::{Client, Session}; type LocalFn = Box<dyn FnOnce(&mut Session, &Client)>; type BackgroundFn = Box<dyn FnOnce(&Client) + Send + 'static>; type BackgroundFnBuilder = Box<dyn FnOnce(&Session) -> BackgroundFn>; /// Describes how the task should be ru...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/schedule/thread.rs
crates/ruff_server/src/server/schedule/thread.rs
// +------------------------------------------------------------+ // | Code adopted from: | // | Repository: https://github.com/rust-lang/rust-analyzer.git | // | File: `crates/stdx/src/thread.rs` | // | Commit: 03b3cb6be9f21c082f4206b35c7fe7f291c94eaa ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/schedule/thread/priority.rs
crates/ruff_server/src/server/schedule/thread/priority.rs
// +------------------------------------------------------------+ // | Code adopted from: | // | Repository: https://github.com/rust-lang/rust-analyzer.git | // | File: `crates/stdx/src/thread/intent.rs` | // | Commit: 03b3cb6be9f21c082f4206b35c7fe7f291c94eaa ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/src/server/schedule/thread/pool.rs
crates/ruff_server/src/server/schedule/thread/pool.rs
// +------------------------------------------------------------+ // | Code adopted from: | // | Repository: https://github.com/rust-lang/rust-analyzer.git | // | File: `crates/stdx/src/thread/pool.rs` | // | Commit: 03b3cb6be9f21c082f4206b35c7fe7f291c94eaa ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/tests/notebook.rs
crates/ruff_server/tests/notebook.rs
use std::{ path::{Path, PathBuf}, str::FromStr, }; use lsp_types::{ ClientCapabilities, LSPObject, NotebookDocumentCellChange, NotebookDocumentChangeTextContent, Position, Range, TextDocumentContentChangeEvent, VersionedTextDocumentIdentifier, }; use ruff_notebook::SourceValue; use ruff_server::{Client...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_server/tests/document.rs
crates/ruff_server/tests/document.rs
const PANDAS_HTML_SRC: &str = include_str!("../resources/test/fixtures/pandas_html.py"); use lsp_types::{Position, Range, TextDocumentContentChangeEvent}; use ruff_server::{PositionEncoding, TextDocument}; #[test] fn delete_lines_pandas_html() { let mut document = TextDocument::new(PANDAS_HTML_SRC.to_string(), 1)...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/db.rs
crates/ty_project/src/db.rs
use std::fmt::Formatter; use std::panic::RefUnwindSafe; use std::sync::Arc; use std::{cmp, fmt}; pub use self::changes::ChangeResult; use crate::CollectReporter; use crate::metadata::settings::file_settings; use crate::{ProgressReporter, Project, ProjectMetadata}; use get_size2::StandardTracker; use ruff_db::Db as Sou...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/lib.rs
crates/ty_project/src/lib.rs
#![warn( clippy::disallowed_methods, reason = "Prefer System trait methods over std methods in ty crates" )] use crate::glob::{GlobFilterCheckMode, IncludeResult}; use crate::metadata::options::{OptionDiagnostic, ToSettingsError}; use crate::walk::{ProjectFilesFilter, ProjectFilesWalker}; #[cfg(feature = "testi...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/glob.rs
crates/ty_project/src/glob.rs
use ruff_db::system::SystemPath; pub(crate) use exclude::{ExcludeFilter, ExcludeFilterBuilder}; pub(crate) use include::{IncludeFilter, IncludeFilterBuilder}; pub(crate) use portable::{ AbsolutePortableGlobPattern, PortableGlobError, PortableGlobKind, PortableGlobPattern, }; mod exclude; mod include; mod portable...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/walk.rs
crates/ty_project/src/walk.rs
use crate::glob::IncludeExcludeFilter; use crate::{Db, GlobFilterCheckMode, IOErrorDiagnostic, IOErrorKind, IncludeResult, Project}; use ruff_db::files::{File, system_path_to_file}; use ruff_db::system::walk_directory::{ErrorKind, WalkDirectoryBuilder, WalkState}; use ruff_db::system::{SystemPath, SystemPathBuf}; use r...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/watch.rs
crates/ty_project/src/watch.rs
pub use project_watcher::ProjectWatcher; use ruff_db::system::{SystemPath, SystemPathBuf, SystemVirtualPathBuf}; pub use watcher::{EventHandler, Watcher, directory_watcher}; mod project_watcher; mod watcher; /// Classification of a file system change event. /// /// ## Renaming a path /// Renaming a path creates a [`C...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/files.rs
crates/ty_project/src/files.rs
use std::marker::PhantomData; use std::ops::Deref; use std::sync::Arc; use rustc_hash::FxHashSet; use salsa::Setter; use ruff_db::files::File; use crate::db::Db; use crate::{IOErrorDiagnostic, Project}; /// The indexed files of a project. /// /// The indexing happens lazily, but the files are then cached for subseq...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata.rs
crates/ty_project/src/metadata.rs
use configuration_file::{ConfigurationFile, ConfigurationFileError}; use ruff_db::system::{System, SystemPath, SystemPathBuf}; use ruff_db::vendored::VendoredFileSystem; use ruff_python_ast::name::Name; use std::sync::Arc; use thiserror::Error; use ty_combine::Combine; use ty_python_semantic::{MisconfigurationMode, Pro...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata/settings.rs
crates/ty_project/src/metadata/settings.rs
use std::sync::Arc; use ruff_db::files::File; use ty_combine::Combine; use ty_python_semantic::AnalysisSettings; use ty_python_semantic::lint::RuleSelection; use crate::metadata::options::{InnerOverrideOptions, OutputFormat}; use crate::{Db, glob::IncludeExcludeFilter}; /// The resolved [`super::Options`] for the pr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata/pyproject.rs
crates/ty_project/src/metadata/pyproject.rs
use crate::metadata::options::Options; use crate::metadata::value::{RangedValue, ValueSource, ValueSourceGuard}; use pep440_rs::{Version, VersionSpecifiers, release_specifiers_to_ranges}; use ruff_python_ast::PythonVersion; use serde::{Deserialize, Deserializer, Serialize}; use std::collections::Bound; use std::ops::De...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata/value.rs
crates/ty_project/src/metadata/value.rs
use crate::Db; use crate::glob::{ AbsolutePortableGlobPattern, PortableGlobError, PortableGlobKind, PortableGlobPattern, }; use ruff_db::system::{System, SystemPath, SystemPathBuf}; use ruff_macros::Combine; use ruff_text_size::{TextRange, TextSize}; use serde::{Deserialize, Deserializer}; use std::cell::RefCell; u...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata/options.rs
crates/ty_project/src/metadata/options.rs
use crate::Db; use crate::glob::{ExcludeFilter, IncludeExcludeFilter, IncludeFilter, PortableGlobKind}; use crate::metadata::settings::{OverrideSettings, SrcSettings}; use super::settings::{Override, Settings, TerminalSettings}; use crate::metadata::value::{ RangedValue, RelativeGlobPattern, RelativePathBuf, Value...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/metadata/configuration_file.rs
crates/ty_project/src/metadata/configuration_file.rs
use std::sync::Arc; use ruff_db::system::{System, SystemPath, SystemPathBuf}; use thiserror::Error; use crate::metadata::value::ValueSource; use super::options::{Options, TyTomlError}; /// A `ty.toml` configuration file with the options it contains. pub(crate) struct ConfigurationFile { path: SystemPathBuf, ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/db/changes.rs
crates/ty_project/src/db/changes.rs
use crate::db::{Db, ProjectDatabase}; use crate::metadata::options::ProjectOptionsOverrides; use crate::watch::{ChangeEvent, CreatedKind, DeletedKind}; use crate::{Project, ProjectMetadata}; use std::collections::BTreeSet; use crate::walk::ProjectFilesWalker; use ruff_db::Db as _; use ruff_db::file_revision::FileRevis...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/glob/include.rs
crates/ty_project/src/glob/include.rs
use globset::{Glob, GlobBuilder, GlobSet, GlobSetBuilder}; use regex_automata::dfa; use regex_automata::dfa::Automaton; use ruff_db::system::SystemPath; use std::fmt::Formatter; use std::path::{MAIN_SEPARATOR, MAIN_SEPARATOR_STR}; use tracing::warn; use crate::glob::portable::AbsolutePortableGlobPattern; /// Chosen a...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/glob/portable.rs
crates/ty_project/src/glob/portable.rs
//! Cross-language glob syntax from //! [PEP 639](https://packaging.python.org/en/latest/specifications/glob-patterns/). //! //! The glob syntax matches the `uv` variant of uv's `uv-globfilter` crate. //! We intentionally use the same syntax to give users a consistent experience //! across our tools. //! //! [Source](h...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/glob/exclude.rs
crates/ty_project/src/glob/exclude.rs
//! Exclude filter supporting gitignore-like globs. //! //! * `src` excludes a file or directory named `src` anywhere in the path. //! * `/src/` excludes a directory named `src` at the root of the path. //! * `/src` excludes a directory or file named `src` at the root of the path. //! * `/src/**` excludes all files and...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/watch/project_watcher.rs
crates/ty_project/src/watch/project_watcher.rs
use std::fmt::{Formatter, Write}; use std::hash::Hasher; use tracing::info; use ruff_cache::{CacheKey, CacheKeyHasher}; use ruff_db::system::{SystemPath, SystemPathBuf}; use ty_module_resolver::system_module_search_paths; use crate::db::{Db, ProjectDatabase}; use crate::watch::Watcher; /// Wrapper around a [`Watche...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_project/src/watch/watcher.rs
crates/ty_project/src/watch/watcher.rs
#![allow( clippy::disallowed_methods, reason = "This implementation is specific to real file systems." )] use notify::event::{CreateKind, MetadataKind, ModifyKind, RemoveKind, RenameMode}; use notify::{EventKind, RecommendedWatcher, RecursiveMode, Watcher as _, recommended_watcher}; use ruff_db::system::{Syst...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_codegen/src/lib.rs
crates/ruff_python_codegen/src/lib.rs
pub use generator::{Generator, Mode}; use ruff_python_parser::{ParseError, parse_module}; pub use stylist::{Indentation, Stylist}; mod generator; mod stylist; /// Run round-trip source code generation on a given Python code. pub fn round_trip(code: &str) -> Result<String, ParseError> { let parsed = parse_module(c...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_codegen/src/generator.rs
crates/ruff_python_codegen/src/generator.rs
//! Generate Python source code from an abstract syntax tree (AST). use std::fmt::Write; use std::ops::Deref; use ruff_python_ast::str::Quote; use ruff_python_ast::{ self as ast, Alias, AnyStringFlags, ArgOrKeyword, BoolOp, BytesLiteralFlags, CmpOp, Comprehension, ConversionFlag, DebugText, ExceptHandler, Exp...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_codegen/src/stylist.rs
crates/ruff_python_codegen/src/stylist.rs
//! Detect code style from Python source code. use std::borrow::Cow; use std::cell::OnceCell; use std::ops::Deref; use ruff_python_ast::str::Quote; use ruff_python_ast::token::{Token, TokenKind, Tokens}; use ruff_source_file::{LineEnding, LineRanges, find_newline}; use ruff_text_size::Ranged; #[derive(Debug, Clone)]...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/relocate.rs
crates/ruff_python_ast/src/relocate.rs
use ruff_text_size::TextRange; use crate::visitor::transformer::{Transformer, walk_expr, walk_keyword}; use crate::{self as ast}; use crate::{Expr, Keyword}; /// Change an expression's location (recursively) to match a desired, fixed /// range. pub fn relocate_expr(expr: &mut Expr, range: TextRange) { Relocator {...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/node_index.rs
crates/ruff_python_ast/src/node_index.rs
use std::num::NonZeroU32; use std::sync::atomic::{AtomicU32, Ordering}; /// An AST node that has an index. pub trait HasNodeIndex { /// Returns the [`AtomicNodeIndex`] for this node. fn node_index(&self) -> &AtomicNodeIndex; } impl<T> HasNodeIndex for &T where T: HasNodeIndex, { fn node_index(&self) -...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/node.rs
crates/ruff_python_ast/src/node.rs
use ruff_text_size::Ranged; use crate::visitor::source_order::SourceOrderVisitor; use crate::{ self as ast, Alias, AnyNodeRef, AnyParameterRef, ArgOrKeyword, MatchCase, PatternArguments, PatternKeyword, }; impl ast::ElifElseClause { pub(crate) fn visit_source_order<'a, V>(&'a self, visitor: &mut V) wh...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/visitor.rs
crates/ruff_python_ast/src/visitor.rs
//! AST visitor trait and walk functions. pub mod source_order; pub mod transformer; use crate::{ self as ast, Alias, AnyParameterRef, Arguments, BoolOp, BytesLiteral, CmpOp, Comprehension, Decorator, ElifElseClause, ExceptHandler, Expr, ExprContext, FString, FStringPart, InterpolatedStringElement, Keywor...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/lib.rs
crates/ruff_python_ast/src/lib.rs
use std::ffi::OsStr; use std::path::Path; pub use expression::*; pub use generated::*; pub use int::*; pub use node_index::*; pub use nodes::*; pub use operator_precedence::*; pub use python_version::*; pub mod comparable; pub mod docstrings; mod expression; pub mod find_node; mod generated; pub mod helpers; pub mod ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/python_version.rs
crates/ruff_python_ast/src/python_version.rs
use std::{fmt, str::FromStr}; /// Representation of a Python version. /// /// N.B. This does not necessarily represent a Python version that we actually support. #[derive(Debug, Clone, Copy, Eq, PartialEq, Ord, PartialOrd, Hash)] #[cfg_attr(feature = "cache", derive(ruff_macros::CacheKey))] #[cfg_attr(feature = "get-s...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/stmt_if.rs
crates/ruff_python_ast/src/stmt_if.rs
use std::iter; use ruff_python_trivia::{SimpleTokenKind, SimpleTokenizer}; use ruff_text_size::{Ranged, TextRange}; use crate::{ElifElseClause, Expr, Stmt, StmtIf}; /// Return the `Range` of the first `Elif` or `Else` token in an `If` statement. pub fn elif_else_range(clause: &ElifElseClause, contents: &str) -> Opti...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/helpers.rs
crates/ruff_python_ast/src/helpers.rs
use std::borrow::Cow; use std::path::Path; use rustc_hash::FxHashMap; use ruff_python_trivia::{SimpleTokenKind, SimpleTokenizer, indentation_at_offset}; use ruff_source_file::LineRanges; use ruff_text_size::{Ranged, TextLen, TextRange, TextSize}; use crate::name::{Name, QualifiedName, QualifiedNameBuilder}; use crat...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/find_node.rs
crates/ruff_python_ast/src/find_node.rs
use crate::AnyNodeRef; use crate::visitor::source_order::{SourceOrderVisitor, TraversalSignal, walk_node}; use ruff_text_size::{Ranged, TextRange}; use std::fmt; use std::fmt::Formatter; /// Returns the node with a minimal range that fully contains `range`. /// /// If `range` is empty and falls within a parser *synthe...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/comparable.rs
crates/ruff_python_ast/src/comparable.rs
//! An equivalent object hierarchy to the `RustPython` AST hierarchy, but with the //! ability to compare expressions for equality (via [`Eq`] and [`Hash`]). //! //! Two [`ComparableExpr`]s are considered equal if the underlying AST nodes have the //! same shape, ignoring trivia (e.g., parentheses, comments, and whites...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/whitespace.rs
crates/ruff_python_ast/src/whitespace.rs
use ruff_python_trivia::{PythonWhitespace, indentation_at_offset, is_python_whitespace}; use ruff_source_file::{LineRanges, UniversalNewlineIterator}; use ruff_text_size::{Ranged, TextRange, TextSize}; use crate::Stmt; /// Extract the leading indentation from a line. #[inline] pub fn indentation<'a, T>(source: &'a st...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/identifier.rs
crates/ruff_python_ast/src/identifier.rs
//! Extract [`TextRange`] information from AST nodes. //! //! For example, given: //! ```python //! try: //! ... //! except Exception as e: //! ... //! ``` //! //! This module can be used to identify the [`TextRange`] of the `except` token. use crate::{self as ast, Alias, ExceptHandler, Parameter, ParameterWit...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/types.rs
crates/ruff_python_ast/src/types.rs
use crate::{Expr, Stmt}; #[derive(Clone)] pub enum Node<'a> { Stmt(&'a Stmt), Expr(&'a Expr), }
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/expression.rs
crates/ruff_python_ast/src/expression.rs
use std::iter::FusedIterator; use ruff_text_size::{Ranged, TextRange}; use crate::{ self as ast, AnyNodeRef, AnyStringFlags, Expr, ExprBytesLiteral, ExprFString, ExprRef, ExprStringLiteral, ExprTString, StringFlags, }; impl<'a> From<&'a Box<Expr>> for ExprRef<'a> { fn from(value: &'a Box<Expr>) -> Self {...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/str_prefix.rs
crates/ruff_python_ast/src/str_prefix.rs
use ruff_text_size::TextSize; use std::fmt; /// Enumerations of the valid prefixes a string literal can have. /// /// Bytestrings and f-strings are excluded from this enumeration, /// as they are represented by different AST nodes. #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, is_macro::Is)] pub enum StringLitera...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/parenthesize.rs
crates/ruff_python_ast/src/parenthesize.rs
use ruff_python_trivia::{BackwardsTokenizer, CommentRanges, SimpleTokenKind, SimpleTokenizer}; use ruff_text_size::{Ranged, TextLen, TextRange}; use crate::AnyNodeRef; use crate::ExprRef; /// Returns an iterator over the ranges of the optional parentheses surrounding an expression. /// /// E.g. for `((f()))` with `f(...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/operator_precedence.rs
crates/ruff_python_ast/src/operator_precedence.rs
use crate::{BoolOp, Expr, ExprRef, Operator, UnaryOp}; /// Represents the precedence levels for Python expressions. /// Variants at the top have lower precedence and variants at the bottom have /// higher precedence. /// /// See: <https://docs.python.org/3/reference/expressions.html#operator-precedence> #[derive(Debug...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/nodes.rs
crates/ruff_python_ast/src/nodes.rs
#![allow(clippy::derive_partial_eq_without_eq)] use crate::AtomicNodeIndex; use crate::generated::{ ExprBytesLiteral, ExprDict, ExprFString, ExprList, ExprName, ExprSet, ExprStringLiteral, ExprTString, ExprTuple, PatternMatchAs, PatternMatchOr, StmtClassDef, }; use std::borrow::Cow; use std::fmt; use std::fmt:...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/statement_visitor.rs
crates/ruff_python_ast/src/statement_visitor.rs
//! Specialized AST visitor trait and walk functions that only visit statements. use crate::{self as ast, ElifElseClause, ExceptHandler, MatchCase, Stmt}; /// A trait for AST visitors that only need to visit statements. pub trait StatementVisitor<'a> { fn visit_body(&mut self, body: &'a [Stmt]) { walk_bod...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/docstrings.rs
crates/ruff_python_ast/src/docstrings.rs
//! Utilities for parsing Python docstrings. /// Extract the leading words from a line of text within a Python docstring. pub fn leading_words(line: &str) -> &str { let line = line.trim(); line.find(|char: char| !char.is_alphanumeric() && !char.is_whitespace()) .map_or(line, |index| &line[..index]) } ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/name.rs
crates/ruff_python_ast/src/name.rs
use std::borrow::{Borrow, Cow}; use std::fmt::{Debug, Display, Formatter, Write}; use std::hash::{Hash, Hasher}; use std::ops::Deref; use crate::Expr; use crate::generated::ExprName; #[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deseriali...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/script.rs
crates/ruff_python_ast/src/script.rs
use std::sync::LazyLock; use memchr::memmem::Finder; static FINDER: LazyLock<Finder> = LazyLock::new(|| Finder::new(b"# /// script")); /// PEP 723 metadata as parsed from a `script` comment block. /// /// See: <https://peps.python.org/pep-0723/> /// /// Vendored from: <https://github.com/astral-sh/uv/blob/debe67ffdb...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/int.rs
crates/ruff_python_ast/src/int.rs
use std::fmt::Debug; use std::str::FromStr; /// A Python integer literal. Represents both small (fits in an `i64`) and large integers. #[derive(Clone, PartialEq, Eq, Hash)] #[cfg_attr(feature = "get-size", derive(get_size2::GetSize))] pub struct Int(Number); impl FromStr for Int { type Err = std::num::ParseIntErr...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/traversal.rs
crates/ruff_python_ast/src/traversal.rs
//! Utilities for manually traversing a Python AST. use crate::{self as ast, AnyNodeRef, ExceptHandler, Stmt}; /// Given a [`Stmt`] and its parent, return the [`ast::Suite`] that contains the [`Stmt`]. pub fn suite<'a>( stmt: impl Into<AnyNodeRef<'a>>, parent: impl Into<AnyNodeRef<'a>>, ) -> Option<EnclosingSu...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/str.rs
crates/ruff_python_ast/src/str.rs
use aho_corasick::{AhoCorasick, AhoCorasickKind, Anchored, Input, MatchKind, StartKind}; use std::fmt; use std::sync::LazyLock; use ruff_text_size::{TextLen, TextRange}; /// Enumeration of the two kinds of quotes that can be used /// for Python string/f/t-string/bytestring literals #[derive(Debug, Default, Copy, Clon...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/generated.rs
crates/ruff_python_ast/src/generated.rs
// This is a generated file. Don't modify it by hand! // Run `crates/ruff_python_ast/generate.py` to re-generate the file. use crate::name::Name; use crate::visitor::source_order::SourceOrderVisitor; /// See also [mod](https://docs.python.org/3/library/ast.html#ast.mod) #[derive(Clone, Debug, PartialEq)] #[cfg_attr(f...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
true
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/token.rs
crates/ruff_python_ast/src/token.rs
//! Token kinds for Python source code created by the lexer and consumed by the `ruff_python_parser`. //! //! This module defines the tokens that the lexer recognizes. The tokens are //! loosely based on the token definitions found in the [CPython source]. //! //! [CPython source]: https://github.com/python/cpython/blo...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/visitor/source_order.rs
crates/ruff_python_ast/src/visitor/source_order.rs
use crate::{ Alias, Arguments, BoolOp, BytesLiteral, CmpOp, Comprehension, Decorator, ElifElseClause, ExceptHandler, Expr, FString, InterpolatedStringElement, Keyword, MatchCase, Mod, Operator, Parameter, ParameterWithDefault, Parameters, Pattern, PatternArguments, PatternKeyword, Singleton, Stmt, Strin...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/visitor/transformer.rs
crates/ruff_python_ast/src/visitor/transformer.rs
use crate::{ self as ast, Alias, Arguments, BoolOp, BytesLiteral, CmpOp, Comprehension, Decorator, ElifElseClause, ExceptHandler, Expr, ExprContext, FString, InterpolatedStringElement, Keyword, MatchCase, Operator, Parameter, Parameters, Pattern, PatternArguments, PatternKeyword, Stmt, StringLiteral, TS...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/token/tokens.rs
crates/ruff_python_ast/src/token/tokens.rs
use std::{iter::FusedIterator, ops::Deref}; use super::{Token, TokenKind}; use ruff_python_trivia::CommentRanges; use ruff_text_size::{Ranged as _, TextRange, TextSize}; /// Tokens represents a vector of lexed [`Token`]. #[derive(Debug, Clone, PartialEq, Eq)] #[cfg_attr(feature = "get-size", derive(get_size2::GetSize...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_python_ast/src/token/parentheses.rs
crates/ruff_python_ast/src/token/parentheses.rs
use ruff_text_size::{Ranged, TextLen, TextRange}; use super::{TokenKind, Tokens}; use crate::{AnyNodeRef, ExprRef}; /// Returns an iterator over the ranges of the optional parentheses surrounding an expression. /// /// E.g. for `((f()))` with `f()` as expression, the iterator returns the ranges (1, 6) and (0, 7). ///...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ty_completion_eval/src/main.rs
crates/ty_completion_eval/src/main.rs
/*! A simple command line tool for running a completion evaluation. See `crates/ty_completion_eval/README.md` for examples and more docs. */ use std::io::Write; use std::process::ExitCode; use std::sync::LazyLock; use anyhow::{Context, anyhow}; use clap::Parser; use regex::bytes::Regex; use ruff_db::files::system_p...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
astral-sh/ruff
https://github.com/astral-sh/ruff/blob/8464aca795bc3580ca15fcb52b21616939cea9a9/crates/ruff_options_metadata/src/lib.rs
crates/ruff_options_metadata/src/lib.rs
use std::fmt::{Debug, Display, Formatter}; /// Visits [`OptionsMetadata`]. /// /// An instance of [`Visit`] represents the logic for inspecting an object's options metadata. pub trait Visit { /// Visits an [`OptionField`] value named `name`. fn record_field(&mut self, name: &str, field: OptionField); /// ...
rust
MIT
8464aca795bc3580ca15fcb52b21616939cea9a9
2026-01-04T15:31:59.413821Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/tools/crate-hierarchy-viz/src/main.rs
tools/crate-hierarchy-viz/src/main.rs
use anyhow::{Context, Result, anyhow}; use clap::{Parser, ValueEnum}; use serde::Deserialize; use std::collections::{HashMap, HashSet}; use std::fs; use std::path::PathBuf; use std::process::Command; #[derive(Debug, Clone, ValueEnum)] enum OutputFormat { /// Output DOT format (GraphViz) Dot, /// Output PNG image (r...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/build.rs
editor/build.rs
use std::env; use std::process::Command; const GRAPHITE_RELEASE_SERIES: &str = "Alpha 4"; fn main() { // Instruct Cargo to rerun this build script if any of these environment variables change. println!("cargo:rerun-if-env-changed=GRAPHITE_GIT_COMMIT_DATE"); println!("cargo:rerun-if-env-changed=GRAPHITE_GIT_COMMIT_...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/consts.rs
editor/src/consts.rs
// GRAPH pub const GRID_SIZE: u32 = 24; pub const EXPORTS_TO_TOP_EDGE_PIXEL_GAP: u32 = 72; pub const EXPORTS_TO_RIGHT_EDGE_PIXEL_GAP: u32 = 120; pub const IMPORTS_TO_TOP_EDGE_PIXEL_GAP: u32 = 72; pub const IMPORTS_TO_LEFT_EDGE_PIXEL_GAP: u32 = 120; // VIEWPORT pub const VIEWPORT_ZOOM_WHEEL_RATE: f64 = (1. / 600.) * 3....
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/utility_types.rs
editor/src/utility_types.rs
#[derive(Debug)] pub struct MessageData { name: String, fields: Vec<(String, usize)>, path: &'static str, } impl MessageData { pub fn new(name: String, fields: Vec<(String, usize)>, path: &'static str) -> MessageData { MessageData { name, fields, path } } pub fn name(&self) -> &str { &self.name } pub fn ...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/lib.rs
editor/src/lib.rs
extern crate graphite_proc_macros; // `macro_use` puts these macros into scope for all descendant code files #[macro_use] mod macros; mod generate_ts_types; #[macro_use] extern crate log; pub mod application; pub mod consts; pub mod dispatcher; pub mod messages; pub mod node_graph_executor; #[cfg(test)] pub mod test_...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/node_graph_executor.rs
editor/src/node_graph_executor.rs
use crate::messages::frontend::utility_types::{ExportBounds, FileType}; use crate::messages::prelude::*; use glam::{DAffine2, DVec2, UVec2}; use graph_craft::document::value::{RenderOutput, TaggedValue}; use graph_craft::document::{DocumentNode, DocumentNodeImplementation, NodeId, NodeInput}; use graph_craft::proto::Gr...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/test_utils.rs
editor/src/test_utils.rs
use crate::application::Editor; use crate::application::set_uuid_seed; use crate::messages::input_mapper::utility_types::input_keyboard::ModifierKeys; use crate::messages::input_mapper::utility_types::input_mouse::{EditorMouseState, MouseKeys, ScrollDelta, ViewportPosition}; use crate::messages::portfolio::utility_type...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/dispatcher.rs
editor/src/dispatcher.rs
use crate::messages::debug::utility_types::MessageLoggingVerbosity; use crate::messages::defer::DeferMessageContext; use crate::messages::dialog::DialogMessageContext; use crate::messages::layout::layout_message_handler::LayoutMessageContext; use crate::messages::preferences::preferences_message_handler::PreferencesMes...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/application.rs
editor/src/application.rs
use crate::dispatcher::Dispatcher; use crate::messages::prelude::*; pub use graphene_std::uuid::*; // TODO: serialize with serde to save the current editor state pub struct Editor { pub dispatcher: Dispatcher, } impl Editor { /// Construct the editor. /// Remember to provide a random seed with `editor::set_uuid_se...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/macros.rs
editor/src/macros.rs
/// Syntax sugar for initializing an `ActionList` /// /// # Example /// /// ```ignore /// actions!(DocumentMessage::Undo, DocumentMessage::Redo); /// ``` /// /// expands to: /// ```ignore /// vec![vec![DocumentMessage::Undo, DocumentMessage::Redo]]; /// ``` /// /// and /// ```ignore /// actions!(DocumentMessage; /// ...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false
GraphiteEditor/Graphite
https://github.com/GraphiteEditor/Graphite/blob/42440c0d0bcf5735b05d8a9e5bd27187f74b1589/editor/src/generate_ts_types.rs
editor/src/generate_ts_types.rs
/// Running this test will generate a `types.ts` file at the root of the repo, /// containing every type annotated with `specta::Type` // #[cfg(all(test, feature = "specta-export"))] #[ignore] #[test] fn generate_ts_types() { // TODO: Un-comment this out when we figure out how to reenable the "typescript` Specta featu...
rust
Apache-2.0
42440c0d0bcf5735b05d8a9e5bd27187f74b1589
2026-01-04T15:38:29.103662Z
false