├── .github └── workflows │ ├── build-vscode-extension.yml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── lsp-types │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── call_hierarchy.rs │ │ ├── code_action.rs │ │ ├── code_lens.rs │ │ ├── color.rs │ │ ├── completion.rs │ │ ├── document_diagnostic.rs │ │ ├── document_highlight.rs │ │ ├── document_link.rs │ │ ├── document_symbols.rs │ │ ├── error_codes.rs │ │ ├── file_operations.rs │ │ ├── folding_range.rs │ │ ├── formatting.rs │ │ ├── hover.rs │ │ ├── inlay_hint.rs │ │ ├── inline_completion.rs │ │ ├── inline_value.rs │ │ ├── lib.rs │ │ ├── linked_editing.rs │ │ ├── lsif.rs │ │ ├── moniker.rs │ │ ├── notebook.rs │ │ ├── notification.rs │ │ ├── progress.rs │ │ ├── references.rs │ │ ├── rename.rs │ │ ├── request.rs │ │ ├── selection_range.rs │ │ ├── semantic_tokens.rs │ │ ├── signature_help.rs │ │ ├── trace.rs │ │ ├── type_hierarchy.rs │ │ ├── window.rs │ │ ├── workspace_diagnostic.rs │ │ ├── workspace_folders.rs │ │ └── workspace_symbols.rs │ └── tests │ │ ├── lsif.rs │ │ └── tsc-unix.lsif ├── ruff_index │ ├── Cargo.toml │ └── src │ │ ├── idx.rs │ │ ├── lib.rs │ │ ├── serde_impls.rs │ │ ├── slice.rs │ │ └── vec.rs ├── ruff_macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── newtype_index.rs ├── ruff_python_resolver │ ├── Cargo.toml │ ├── resources │ │ └── test │ │ │ └── airflow │ │ │ ├── README.md │ │ │ ├── airflow │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ └── common │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mark_tasks.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── functools.py │ │ │ │ └── functools.pyi │ │ │ ├── jobs │ │ │ │ ├── __init__.py │ │ │ │ └── scheduler_job_runner.py │ │ │ └── providers │ │ │ │ └── google │ │ │ │ ├── __init__.py │ │ │ │ └── cloud │ │ │ │ ├── __init__.py │ │ │ │ └── hooks │ │ │ │ ├── __init__.py │ │ │ │ └── gcs.py │ │ │ └── venv │ │ │ └── lib │ │ │ └── python3.11 │ │ │ └── site-packages │ │ │ ├── _watchdog_fsevents.cpython-311-darwin.so │ │ │ ├── orjson │ │ │ ├── __init__.py │ │ │ ├── __init__.pyi │ │ │ ├── orjson.cpython-311-darwin.so │ │ │ └── py.typed │ │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ └── orm │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dependency.py │ │ │ └── query.py │ └── src │ │ ├── cache.rs │ │ ├── config.rs │ │ ├── execution_environment.rs │ │ ├── host.rs │ │ ├── implicit_imports.rs │ │ ├── import_result.rs │ │ ├── lib.rs │ │ ├── module_descriptor.rs │ │ ├── native_module.rs │ │ ├── py_typed.rs │ │ ├── python_platform.rs │ │ ├── python_version.rs │ │ ├── resolver.rs │ │ ├── search.rs │ │ └── snapshots │ │ ├── ruff_python_resolver__tests__airflow_explicit_native_module.snap │ │ ├── ruff_python_resolver__tests__airflow_first_party.snap │ │ ├── ruff_python_resolver__tests__airflow_implicit_native_module.snap │ │ ├── ruff_python_resolver__tests__airflow_namespace_package.snap │ │ ├── ruff_python_resolver__tests__airflow_standard_library.snap │ │ ├── ruff_python_resolver__tests__airflow_stub_file.snap │ │ └── ruff_python_resolver__tests__airflow_third_party.snap ├── ruff_source_file │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── line_index.rs │ │ ├── locator.rs │ │ └── newlines.rs ├── ruff_text_size │ ├── Cargo.toml │ ├── src │ │ ├── lib.rs │ │ ├── range.rs │ │ ├── serde_impls.rs │ │ ├── size.rs │ │ └── traits.rs │ └── tests │ │ ├── auto_traits.rs │ │ ├── constructors.rs │ │ ├── indexing.rs │ │ ├── main.rs │ │ └── serde.rs ├── sith_benchmark │ ├── Cargo.toml │ ├── README.md │ ├── benches │ │ ├── indexer.rs │ │ ├── lexer.rs │ │ ├── parser.rs │ │ └── semantic_table_builder.rs │ └── src │ │ ├── criterion.rs │ │ └── lib.rs ├── sith_lsp │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── sith_python_ast │ ├── Cargo.toml │ └── src │ │ ├── float.rs │ │ ├── int.rs │ │ ├── lib.rs │ │ ├── name.rs │ │ ├── node.rs │ │ ├── nodes.rs │ │ ├── statement_visitor.rs │ │ ├── str_prefix.rs │ │ ├── types.rs │ │ ├── visitor.rs │ │ └── visitor │ │ ├── source_order.rs │ │ └── transformer.rs ├── sith_python_ast_utils │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── nodes.rs ├── sith_python_parser │ ├── Cargo.toml │ ├── resources │ │ ├── .editorconfig │ │ ├── inline │ │ │ ├── err │ │ │ │ ├── ann_assign_stmt_invalid_annotation.py │ │ │ │ ├── ann_assign_stmt_invalid_target.py │ │ │ │ ├── ann_assign_stmt_invalid_value.py │ │ │ │ ├── ann_assign_stmt_missing_rhs.py │ │ │ │ ├── ann_assign_stmt_type_alias_annotation.py │ │ │ │ ├── assert_empty_msg.py │ │ │ │ ├── assert_empty_test.py │ │ │ │ ├── assert_invalid_msg_expr.py │ │ │ │ ├── assert_invalid_test_expr.py │ │ │ │ ├── assign_stmt_invalid_target.py │ │ │ │ ├── assign_stmt_invalid_value_expr.py │ │ │ │ ├── assign_stmt_keyword_target.py │ │ │ │ ├── assign_stmt_missing_rhs.py │ │ │ │ ├── async_unexpected_token.py │ │ │ │ ├── aug_assign_stmt_invalid_target.py │ │ │ │ ├── aug_assign_stmt_invalid_value.py │ │ │ │ ├── aug_assign_stmt_missing_rhs.py │ │ │ │ ├── case_expect_indented_block.py │ │ │ │ ├── class_def_empty_body.py │ │ │ │ ├── class_def_missing_name.py │ │ │ │ ├── class_def_unclosed_type_param_list.py │ │ │ │ ├── clause_expect_indented_block.py │ │ │ │ ├── clause_expect_single_statement.py │ │ │ │ ├── comma_separated_missing_comma.py │ │ │ │ ├── comma_separated_missing_comma_between_elements.py │ │ │ │ ├── comma_separated_missing_element_between_commas.py │ │ │ │ ├── comma_separated_missing_first_element.py │ │ │ │ ├── comprehension_missing_for_after_async.py │ │ │ │ ├── decorator_invalid_expression.py │ │ │ │ ├── decorator_missing_expression.py │ │ │ │ ├── decorator_missing_newline.py │ │ │ │ ├── decorator_unexpected_token.py │ │ │ │ ├── del_incomplete_target.py │ │ │ │ ├── del_stmt_empty.py │ │ │ │ ├── dotted_name_multiple_dots.py │ │ │ │ ├── except_stmt_invalid_expression.py │ │ │ │ ├── except_stmt_missing_as_name.py │ │ │ │ ├── except_stmt_missing_exception.py │ │ │ │ ├── except_stmt_missing_exception_and_as_name.py │ │ │ │ ├── except_stmt_unparenthesized_tuple.py │ │ │ │ ├── f_string_empty_expression.py │ │ │ │ ├── f_string_invalid_conversion_flag_name_tok.py │ │ │ │ ├── f_string_invalid_conversion_flag_other_tok.py │ │ │ │ ├── f_string_invalid_starred_expr.py │ │ │ │ ├── f_string_lambda_without_parentheses.py │ │ │ │ ├── f_string_unclosed_lbrace.py │ │ │ │ ├── f_string_unclosed_lbrace_in_format_spec.py │ │ │ │ ├── for_stmt_invalid_iter_expr.py │ │ │ │ ├── for_stmt_invalid_target.py │ │ │ │ ├── for_stmt_invalid_target_binary_expr.py │ │ │ │ ├── for_stmt_invalid_target_in_keyword.py │ │ │ │ ├── for_stmt_missing_in_keyword.py │ │ │ │ ├── for_stmt_missing_iter.py │ │ │ │ ├── for_stmt_missing_target.py │ │ │ │ ├── from_import_dotted_names.py │ │ │ │ ├── from_import_empty_names.py │ │ │ │ ├── from_import_missing_module.py │ │ │ │ ├── from_import_missing_rpar.py │ │ │ │ ├── from_import_star_with_other_names.py │ │ │ │ ├── from_import_unparenthesized_trailing_comma.py │ │ │ │ ├── function_def_empty_body.py │ │ │ │ ├── function_def_invalid_return_expr.py │ │ │ │ ├── function_def_missing_identifier.py │ │ │ │ ├── function_def_missing_return_type.py │ │ │ │ ├── function_def_unclosed_parameter_list.py │ │ │ │ ├── function_def_unclosed_type_param_list.py │ │ │ │ ├── function_def_unparenthesized_return_types.py │ │ │ │ ├── global_stmt_empty.py │ │ │ │ ├── global_stmt_expression.py │ │ │ │ ├── global_stmt_trailing_comma.py │ │ │ │ ├── if_stmt_elif_missing_colon.py │ │ │ │ ├── if_stmt_empty_body.py │ │ │ │ ├── if_stmt_invalid_elif_test_expr.py │ │ │ │ ├── if_stmt_invalid_test_expr.py │ │ │ │ ├── if_stmt_missing_colon.py │ │ │ │ ├── if_stmt_missing_test.py │ │ │ │ ├── if_stmt_misspelled_elif.py │ │ │ │ ├── implicitly_concatenated_unterminated_string.py │ │ │ │ ├── implicitly_concatenated_unterminated_string_multiline.py │ │ │ │ ├── import_alias_missing_asname.py │ │ │ │ ├── import_stmt_empty.py │ │ │ │ ├── import_stmt_parenthesized_names.py │ │ │ │ ├── import_stmt_star_import.py │ │ │ │ ├── import_stmt_trailing_comma.py │ │ │ │ ├── invalid_byte_literal.py │ │ │ │ ├── invalid_del_target.py │ │ │ │ ├── invalid_fstring_literal_element.py │ │ │ │ ├── invalid_string_literal.py │ │ │ │ ├── lambda_body_with_starred_expr.py │ │ │ │ ├── lambda_body_with_yield_expr.py │ │ │ │ ├── match_classify_as_keyword.py │ │ │ │ ├── match_classify_as_keyword_or_identifier.py │ │ │ │ ├── match_expected_colon.py │ │ │ │ ├── match_stmt_expect_indented_block.py │ │ │ │ ├── match_stmt_expected_case_block.py │ │ │ │ ├── match_stmt_invalid_guard_expr.py │ │ │ │ ├── match_stmt_invalid_subject_expr.py │ │ │ │ ├── match_stmt_missing_guard_expr.py │ │ │ │ ├── match_stmt_missing_pattern.py │ │ │ │ ├── match_stmt_no_newline_before_case.py │ │ │ │ ├── match_stmt_single_starred_subject.py │ │ │ │ ├── mixed_bytes_and_non_bytes_literals.py │ │ │ │ ├── multiple_clauses_on_same_line.py │ │ │ │ ├── node_range_with_gaps.py │ │ │ │ ├── nonlocal_stmt_empty.py │ │ │ │ ├── nonlocal_stmt_expression.py │ │ │ │ ├── nonlocal_stmt_trailing_comma.py │ │ │ │ ├── param_missing_annotation.py │ │ │ │ ├── param_missing_default.py │ │ │ │ ├── param_with_invalid_annotation.py │ │ │ │ ├── param_with_invalid_default.py │ │ │ │ ├── param_with_invalid_star_annotation.py │ │ │ │ ├── params_duplicate_names.py │ │ │ │ ├── params_expected_after_star_separator.py │ │ │ │ ├── params_kwarg_after_star_separator.py │ │ │ │ ├── params_multiple_kwargs.py │ │ │ │ ├── params_multiple_slash_separator.py │ │ │ │ ├── params_multiple_star_separator.py │ │ │ │ ├── params_multiple_varargs.py │ │ │ │ ├── params_no_arg_before_slash.py │ │ │ │ ├── params_non_default_after_default.py │ │ │ │ ├── params_star_after_slash.py │ │ │ │ ├── params_star_separator_after_star_param.py │ │ │ │ ├── params_var_keyword_with_default.py │ │ │ │ ├── params_var_positional_with_default.py │ │ │ │ ├── raise_stmt_invalid_cause.py │ │ │ │ ├── raise_stmt_invalid_exc.py │ │ │ │ ├── raise_stmt_unparenthesized_tuple_cause.py │ │ │ │ ├── raise_stmt_unparenthesized_tuple_exc.py │ │ │ │ ├── return_stmt_invalid_expr.py │ │ │ │ ├── simple_and_compound_stmt_on_same_line.py │ │ │ │ ├── simple_and_compound_stmt_on_same_line_in_block.py │ │ │ │ ├── simple_stmts_on_same_line.py │ │ │ │ ├── simple_stmts_on_same_line_in_block.py │ │ │ │ ├── try_stmt_invalid_order.py │ │ │ │ ├── try_stmt_missing_except_finally.py │ │ │ │ ├── try_stmt_misspelled_except.py │ │ │ │ ├── type_alias_incomplete_stmt.py │ │ │ │ ├── type_alias_invalid_value_expr.py │ │ │ │ ├── type_param_invalid_bound_expr.py │ │ │ │ ├── type_param_missing_bound.py │ │ │ │ ├── type_param_param_spec_bound.py │ │ │ │ ├── type_param_param_spec_invalid_default_expr.py │ │ │ │ ├── type_param_param_spec_missing_default.py │ │ │ │ ├── type_param_type_var_invalid_default_expr.py │ │ │ │ ├── type_param_type_var_missing_default.py │ │ │ │ ├── type_param_type_var_tuple_bound.py │ │ │ │ ├── type_param_type_var_tuple_invalid_default_expr.py │ │ │ │ ├── type_param_type_var_tuple_missing_default.py │ │ │ │ ├── type_params_empty.py │ │ │ │ ├── unterminated_fstring_newline_recovery.py │ │ │ │ ├── while_stmt_invalid_test_expr.py │ │ │ │ ├── while_stmt_missing_colon.py │ │ │ │ ├── while_stmt_missing_test.py │ │ │ │ ├── with_items_parenthesized_missing_colon.py │ │ │ │ └── with_items_parenthesized_missing_comma.py │ │ │ └── ok │ │ │ │ ├── ambiguous_lpar_with_items_binary_expr.py │ │ │ │ ├── ambiguous_lpar_with_items_if_expr.py │ │ │ │ ├── ann_assign_stmt_simple_target.py │ │ │ │ ├── assign_targets_terminator.py │ │ │ │ ├── async_for_statement.py │ │ │ │ ├── async_function_definition.py │ │ │ │ ├── async_with_statement.py │ │ │ │ ├── class_def_arguments.py │ │ │ │ ├── comma_separated_regular_list_terminator.py │ │ │ │ ├── decorator_async_function.py │ │ │ │ ├── del_targets_terminator.py │ │ │ │ ├── dotted_name_normalized_spaces.py │ │ │ │ ├── except_stmt_as_name_soft_keyword.py │ │ │ │ ├── for_in_target_valid_expr.py │ │ │ │ ├── from_import_no_space.py │ │ │ │ ├── from_import_soft_keyword_module_name.py │ │ │ │ ├── from_import_stmt_terminator.py │ │ │ │ ├── fstring_format_spec_terminator.py │ │ │ │ ├── function_def_parameter_range.py │ │ │ │ ├── function_def_parenthesized_return_types.py │ │ │ │ ├── function_def_valid_return_expr.py │ │ │ │ ├── global_stmt.py │ │ │ │ ├── import_as_name_soft_keyword.py │ │ │ │ ├── import_stmt_terminator.py │ │ │ │ ├── lambda_with_no_parameters.py │ │ │ │ ├── lambda_with_valid_body.py │ │ │ │ ├── match_as_pattern.py │ │ │ │ ├── match_as_pattern_soft_keyword.py │ │ │ │ ├── match_attr_pattern_soft_keyword.py │ │ │ │ ├── match_classify_as_identifier_1.py │ │ │ │ ├── match_classify_as_identifier_2.py │ │ │ │ ├── match_classify_as_keyword_1.py │ │ │ │ ├── match_classify_as_keyword_2.py │ │ │ │ ├── match_classify_as_keyword_or_identifier.py │ │ │ │ ├── match_sequence_pattern_parentheses_terminator.py │ │ │ │ ├── match_sequence_pattern_terminator.py │ │ │ │ ├── match_stmt_subject_expr.py │ │ │ │ ├── match_stmt_valid_guard_expr.py │ │ │ │ ├── nonlocal_stmt.py │ │ │ │ ├── param_with_annotation.py │ │ │ │ ├── param_with_default.py │ │ │ │ ├── param_with_star_annotation.py │ │ │ │ ├── params_non_default_after_star.py │ │ │ │ ├── params_seen_keyword_only_param_after_star.py │ │ │ │ ├── simple_stmts_in_block.py │ │ │ │ ├── simple_stmts_with_semicolons.py │ │ │ │ ├── type_param_param_spec.py │ │ │ │ ├── type_param_type_var.py │ │ │ │ └── type_param_type_var_tuple.py │ │ ├── invalid │ │ │ ├── expressions │ │ │ │ ├── arguments │ │ │ │ │ ├── double_starred.py │ │ │ │ │ ├── duplicate_keyword_arguments.py │ │ │ │ │ ├── invalid_expression.py │ │ │ │ │ ├── invalid_keyword_expression.py │ │ │ │ │ ├── invalid_order.py │ │ │ │ │ ├── missing_argument.py │ │ │ │ │ ├── missing_comma.py │ │ │ │ │ ├── missing_expression.py │ │ │ │ │ ├── starred.py │ │ │ │ │ ├── unclosed_0.py │ │ │ │ │ ├── unclosed_1.py │ │ │ │ │ └── unclosed_2.py │ │ │ │ ├── attribute │ │ │ │ │ ├── invalid_member.py │ │ │ │ │ ├── multiple_dots.py │ │ │ │ │ └── no_member.py │ │ │ │ ├── await │ │ │ │ │ ├── no_expression_0.py │ │ │ │ │ ├── no_expression_1.py │ │ │ │ │ └── recover.py │ │ │ │ ├── bin_op │ │ │ │ │ ├── invalid_rhs_expression.py │ │ │ │ │ ├── missing_lhs.py │ │ │ │ │ ├── missing_rhs_0.py │ │ │ │ │ ├── missing_rhs_1.py │ │ │ │ │ ├── multiple_ops.py │ │ │ │ │ ├── named_expression.py │ │ │ │ │ └── starred_expression.py │ │ │ │ ├── bool_op │ │ │ │ │ ├── invalid_rhs_expression.py │ │ │ │ │ ├── missing_lhs.py │ │ │ │ │ ├── missing_rhs.py │ │ │ │ │ ├── named_expression.py │ │ │ │ │ └── starred_expression.py │ │ │ │ ├── compare │ │ │ │ │ ├── invalid_order.py │ │ │ │ │ ├── invalid_rhs_expression.py │ │ │ │ │ ├── missing_lhs.py │ │ │ │ │ ├── missing_rhs_0.py │ │ │ │ │ ├── missing_rhs_1.py │ │ │ │ │ ├── missing_rhs_2.py │ │ │ │ │ ├── multiple_equals.py │ │ │ │ │ ├── named_expression.py │ │ │ │ │ └── starred_expression.py │ │ │ │ ├── dict │ │ │ │ │ ├── comprehension.py │ │ │ │ │ ├── double_star.py │ │ │ │ │ ├── double_star_comprehension.py │ │ │ │ │ ├── missing_closing_brace_0.py │ │ │ │ │ ├── missing_closing_brace_1.py │ │ │ │ │ ├── missing_closing_brace_2.py │ │ │ │ │ ├── named_expression_0.py │ │ │ │ │ ├── named_expression_1.py │ │ │ │ │ └── recover.py │ │ │ │ ├── emoji_identifiers.py │ │ │ │ ├── emoji_statement.py │ │ │ │ ├── if │ │ │ │ │ ├── missing_orelse_expr_0.py │ │ │ │ │ ├── missing_orelse_expr_1.py │ │ │ │ │ ├── missing_test_expr_0.py │ │ │ │ │ ├── missing_test_expr_1.py │ │ │ │ │ └── recover.py │ │ │ │ ├── lambda_default_parameters.py │ │ │ │ ├── lambda_duplicate_parameters.py │ │ │ │ ├── list │ │ │ │ │ ├── comprehension.py │ │ │ │ │ ├── missing_closing_bracket_0.py │ │ │ │ │ ├── missing_closing_bracket_1.py │ │ │ │ │ ├── missing_closing_bracket_2.py │ │ │ │ │ ├── missing_closing_bracket_3.py │ │ │ │ │ ├── recover.py │ │ │ │ │ └── star_expression_precedence.py │ │ │ │ ├── named │ │ │ │ │ ├── invalid_target.py │ │ │ │ │ ├── missing_expression_0.py │ │ │ │ │ ├── missing_expression_1.py │ │ │ │ │ ├── missing_expression_2.py │ │ │ │ │ ├── missing_expression_3.py │ │ │ │ │ └── missing_expression_4.py │ │ │ │ ├── parenthesized │ │ │ │ │ ├── generator.py │ │ │ │ │ ├── missing_closing_paren_0.py │ │ │ │ │ ├── missing_closing_paren_1.py │ │ │ │ │ ├── missing_closing_paren_2.py │ │ │ │ │ ├── missing_closing_paren_3.py │ │ │ │ │ ├── parenthesized.py │ │ │ │ │ ├── tuple.py │ │ │ │ │ └── tuple_starred_expr.py │ │ │ │ ├── set │ │ │ │ │ ├── comprehension.py │ │ │ │ │ ├── missing_closing_curly_brace_0.py │ │ │ │ │ ├── missing_closing_curly_brace_1.py │ │ │ │ │ ├── missing_closing_curly_brace_2.py │ │ │ │ │ ├── missing_closing_curly_brace_3.py │ │ │ │ │ ├── recover.py │ │ │ │ │ └── star_expression_precedence.py │ │ │ │ ├── subscript │ │ │ │ │ ├── invalid_slice_element.py │ │ │ │ │ ├── unclosed_slice_0.py │ │ │ │ │ └── unclosed_slice_1.py │ │ │ │ ├── unary.py │ │ │ │ ├── unary │ │ │ │ │ ├── named_expression.py │ │ │ │ │ ├── no_expression_0.py │ │ │ │ │ └── no_expression_1.py │ │ │ │ ├── yield │ │ │ │ │ ├── named_expression.py │ │ │ │ │ └── star_expression.py │ │ │ │ └── yield_from │ │ │ │ │ ├── starred_expression.py │ │ │ │ │ └── unparenthesized.py │ │ │ ├── re_lex_logical_token.py │ │ │ ├── re_lex_logical_token_mac_eol.py │ │ │ ├── re_lex_logical_token_windows_eol.py │ │ │ ├── re_lexing │ │ │ │ ├── fstring_format_spec_1.py │ │ │ │ ├── line_continuation_1.py │ │ │ │ ├── line_continuation_windows_eol.py │ │ │ │ ├── triple_quoted_fstring_1.py │ │ │ │ ├── triple_quoted_fstring_2.py │ │ │ │ └── triple_quoted_fstring_3.py │ │ │ └── statements │ │ │ │ ├── function_type_parameters.py │ │ │ │ ├── if_extra_closing_parentheses.py │ │ │ │ ├── if_extra_indent.py │ │ │ │ ├── invalid_assignment_targets.py │ │ │ │ ├── invalid_augmented_assignment_target.py │ │ │ │ ├── match │ │ │ │ ├── as_pattern_0.py │ │ │ │ ├── as_pattern_1.py │ │ │ │ ├── as_pattern_2.py │ │ │ │ ├── as_pattern_3.py │ │ │ │ ├── as_pattern_4.py │ │ │ │ ├── invalid_class_pattern.py │ │ │ │ ├── invalid_lhs_or_rhs_pattern.py │ │ │ │ ├── invalid_mapping_pattern.py │ │ │ │ ├── star_pattern_usage.py │ │ │ │ └── unary_add_usage.py │ │ │ │ └── with │ │ │ │ ├── ambiguous_lpar_with_items.py │ │ │ │ ├── empty_with_items.py │ │ │ │ ├── unclosed_ambiguous_lpar.py │ │ │ │ ├── unclosed_ambiguous_lpar_eof.py │ │ │ │ └── unparenthesized_with_items.py │ │ └── valid │ │ │ ├── expressions │ │ │ ├── arguments.py │ │ │ ├── attribute.py │ │ │ ├── await.py │ │ │ ├── bin_op.py │ │ │ ├── bool_op.py │ │ │ ├── call.py │ │ │ ├── compare.py │ │ │ ├── dictionary.py │ │ │ ├── dictionary_comprehension.py │ │ │ ├── f_string.py │ │ │ ├── generator.py │ │ │ ├── if.py │ │ │ ├── lambda.py │ │ │ ├── list.py │ │ │ ├── list_comprehension.py │ │ │ ├── name.py │ │ │ ├── named.py │ │ │ ├── number_literal.py │ │ │ ├── parenthesized.py │ │ │ ├── set.py │ │ │ ├── set_comprehension.py │ │ │ ├── slice.py │ │ │ ├── starred.py │ │ │ ├── string.py │ │ │ ├── subscript.py │ │ │ ├── tuple.py │ │ │ ├── unary_op.py │ │ │ ├── yield.py │ │ │ └── yield_from.py │ │ │ ├── other │ │ │ ├── atom.py │ │ │ └── decorator.py │ │ │ └── statement │ │ │ ├── ambiguous_lpar_with_items.py │ │ │ ├── annotated_assignment.py │ │ │ ├── assert.py │ │ │ ├── assignment.py │ │ │ ├── augmented_assignment.py │ │ │ ├── class.py │ │ │ ├── delete.py │ │ │ ├── for.py │ │ │ ├── from_import.py │ │ │ ├── function.py │ │ │ ├── if.py │ │ │ ├── import.py │ │ │ ├── match.py │ │ │ ├── raise.py │ │ │ ├── return.py │ │ │ ├── simple.py │ │ │ ├── try.py │ │ │ ├── type.py │ │ │ ├── while.py │ │ │ └── with.py │ ├── src │ │ ├── error.rs │ │ ├── lexer.rs │ │ ├── lexer │ │ │ ├── cursor.rs │ │ │ ├── fstring.rs │ │ │ └── indentation.rs │ │ ├── lib.rs │ │ ├── parser │ │ │ ├── expression.rs │ │ │ ├── helpers.rs │ │ │ ├── mod.rs │ │ │ ├── pattern.rs │ │ │ ├── progress.rs │ │ │ ├── recovery.rs │ │ │ ├── snapshots │ │ │ │ ├── python_parser__parser__tests__expr_mode_invalid_syntax1.snap │ │ │ │ ├── python_parser__parser__tests__expr_mode_invalid_syntax2.snap │ │ │ │ ├── python_parser__parser__tests__expr_mode_invalid_syntax3.snap │ │ │ │ ├── python_parser__parser__tests__expr_mode_valid_syntax.snap │ │ │ │ ├── python_parser__parser__tests__ipython_escape_commands.snap │ │ │ │ ├── python_parser__parser__tests__unicode_aliases.snap │ │ │ │ ├── sith_python_parser__parser__tests__expr_mode_invalid_syntax1.snap │ │ │ │ ├── sith_python_parser__parser__tests__expr_mode_invalid_syntax2.snap │ │ │ │ ├── sith_python_parser__parser__tests__expr_mode_invalid_syntax3.snap │ │ │ │ ├── sith_python_parser__parser__tests__expr_mode_valid_syntax.snap │ │ │ │ ├── sith_python_parser__parser__tests__ipython_escape_commands.snap │ │ │ │ └── sith_python_parser__parser__tests__unicode_aliases.snap │ │ │ ├── statement.rs │ │ │ ├── tests.rs │ │ │ └── tests │ │ │ │ ├── context.rs │ │ │ │ ├── function.rs │ │ │ │ ├── invalid_assignments.rs │ │ │ │ ├── parser.rs │ │ │ │ ├── snapshots │ │ │ │ ├── python_parser__parser__tests__context__tests__ann_assign_name.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_attribute.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_for.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_list.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_list_comp.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_name.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_named_expr.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_set_comp.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_starred.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_subscript.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_tuple.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__assign_with.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__aug_assign_attribute.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__aug_assign_name.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__aug_assign_subscript.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__del_attribute.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__del_name.snap │ │ │ │ ├── python_parser__parser__tests__context__tests__del_subscript.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_kw_only_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_kw_only_args_with_defaults.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_no_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_no_args_with_ranges.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_and_kw_only_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults_and_varargs.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults_and_varargs_and_kwargs.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_args_with_defaults.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__function_pos_args_with_ranges.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_kw_only_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_kw_only_args_with_defaults.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_no_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_pos_and_kw_only_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_pos_args.snap │ │ │ │ ├── python_parser__parser__tests__function__tests__lambda_pos_args_with_defaults.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_assignment_expr.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_attribute_normal.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_attribute_weird.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_ipy_escape_command.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_list.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_name.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_slice_normal.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_slice_weird.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_starred.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_subscript_normal.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_subscript_weird.snap │ │ │ │ ├── python_parser__parser__tests__invalid_assignments__tests__ok_tuple.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__p2.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_ann_assign_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_assign_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_async_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_attribute_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_aug_assign_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_await_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_binary_exprs.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_bool_op_exprs.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_call_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_class_def_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_compare_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_decorators.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_dict_comp_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_dict_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_empty_fstring.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_for_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_fstring.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_func_def_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_generator_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_if_else_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_if_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_lambda_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_list_comp_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_list_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_match_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_named_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_parenthesized_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_set_comp_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_set_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_simple_stmts.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_starred_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_string_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_subscript_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_try_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_tuple_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_type_alias_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_type_params.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_unary_exprs.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_while_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_with_stmt.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_yield_expr.snap │ │ │ │ ├── python_parser__parser__tests__parser__tests__parse_yield_from_expr.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__decorator_ranges.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__dict_unpacking.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__fstrings.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__fstrings_with_unicode.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__generator_expression_argument.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__ipython_escape_commands.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__match.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__match_as_identifier.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__named_expression.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__numeric_literals.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__numeric_literals_attribute_access.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parenthesized_with_statement.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_bool_op_and.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_bool_op_or.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_class.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_class_generic_types.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_dict_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_double_list_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_empty.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_f_string.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_function_definition.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_generator_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_if_elif_else.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_if_else_generator_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_kwargs.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_lambda.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_lambda_no_args.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_list_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_named_expression_generator_comprehension.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_print_2.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_print_hello.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_string.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_tuples.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__parse_type_declaration.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__patma.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__slice.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__star_index.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__try.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__try_star.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__type_as_identifier.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__unicode_aliases.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__variadic_generics.snap │ │ │ │ ├── python_parser__parser__tests__suite__tests__with_statement.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__ann_assign_name.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_attribute.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_for.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_list.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_list_comp.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_name.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_named_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_set_comp.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_starred.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_subscript.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_tuple.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__assign_with.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__aug_assign_attribute.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__aug_assign_name.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__aug_assign_subscript.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__del_attribute.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__del_name.snap │ │ │ │ ├── ruff_python_parser__parser__tests__context__tests__del_subscript.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_kw_only_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_kw_only_args_with_defaults.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_no_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_no_args_with_ranges.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_and_kw_only_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults_and_varargs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_and_kw_only_args_with_defaults_and_varargs_and_kwargs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_args_with_defaults.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__function_pos_args_with_ranges.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_kw_only_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_kw_only_args_with_defaults.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_no_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_pos_and_kw_only_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_pos_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__function__tests__lambda_pos_args_with_defaults.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_assignment_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_attribute_normal.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_attribute_weird.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_ipy_escape_command.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_list.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_name.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_slice_normal.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_slice_weird.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_starred.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_subscript_normal.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_subscript_weird.snap │ │ │ │ ├── ruff_python_parser__parser__tests__invalid_assignments__tests__ok_tuple.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_ann_assign_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_assign_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_async_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_attribute_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_aug_assign_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_await_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_binary_exprs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_bool_op_exprs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_call_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_class_def_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_compare_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_decorators.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_dict_comp_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_dict_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_empty_fstring.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_for_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_fstring.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_func_def_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_generator_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_if_else_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_if_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_lambda_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_list_comp_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_list_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_match_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_named_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_parenthesized_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_set_comp_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_set_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_simple_stmts.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_starred_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_string_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_subscript_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_try_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_tuple_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_type_alias_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_type_params.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_unary_exprs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_while_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_with_stmt.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_yield_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__parser__tests__parse_yield_from_expr.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__decorator_ranges.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__dict_unpacking.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__fstrings.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__fstrings_with_unicode.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__generator_expression_argument.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__ipython_escape_commands.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__match.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__match_as_identifier.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__named_expression.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__numeric_literals.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__numeric_literals_attribute_access.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parenthesized_with_statement.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_bool_op_and.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_bool_op_or.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_class.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_class_generic_types.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_dict_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_double_list_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_empty.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_f_string.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_function_definition.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_generator_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_if_elif_else.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_if_else_generator_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_kwargs.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_lambda.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_lambda_no_args.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_list_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_named_expression_generator_comprehension.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_print_2.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_print_hello.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_string.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_tuples.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__parse_type_declaration.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__patma.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__slice.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__star_index.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__try.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__try_star.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__type_as_identifier.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__unicode_aliases.snap │ │ │ │ ├── ruff_python_parser__parser__tests__suite__tests__variadic_generics.snap │ │ │ │ └── ruff_python_parser__parser__tests__suite__tests__with_statement.snap │ │ │ │ └── suite.rs │ │ ├── snapshots │ │ │ ├── python_parser__lexer__tests__assignment.snap │ │ │ ├── python_parser__lexer__tests__bom.snap │ │ │ ├── python_parser__lexer__tests__bom_with_offset.snap │ │ │ ├── python_parser__lexer__tests__bom_with_offset_edge.snap │ │ │ ├── python_parser__lexer__tests__comment_until_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__comment_until_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__comment_until_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__dedent_after_whitespace.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__double_dedent_with_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__emoji_identifier.snap │ │ │ ├── python_parser__lexer__tests__empty_fstrings.snap │ │ │ ├── python_parser__lexer__tests__empty_ipython_escape_command.snap │ │ │ ├── python_parser__lexer__tests__escape_unicode_name.snap │ │ │ ├── python_parser__lexer__tests__fstring.snap │ │ │ ├── python_parser__lexer__tests__fstring_comments.snap │ │ │ ├── python_parser__lexer__tests__fstring_conversion.snap │ │ │ ├── python_parser__lexer__tests__fstring_escape.snap │ │ │ ├── python_parser__lexer__tests__fstring_escape_braces.snap │ │ │ ├── python_parser__lexer__tests__fstring_escape_raw.snap │ │ │ ├── python_parser__lexer__tests__fstring_expression_multiline.snap │ │ │ ├── python_parser__lexer__tests__fstring_multiline.snap │ │ │ ├── python_parser__lexer__tests__fstring_named_unicode.snap │ │ │ ├── python_parser__lexer__tests__fstring_named_unicode_raw.snap │ │ │ ├── python_parser__lexer__tests__fstring_nested.snap │ │ │ ├── python_parser__lexer__tests__fstring_parentheses.snap │ │ │ ├── python_parser__lexer__tests__fstring_prefix.snap │ │ │ ├── python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_format_spec.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_ipy_escape_command.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_lambda_expression.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_multiline_format_spec.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_named_expression.snap │ │ │ ├── python_parser__lexer__tests__fstring_with_nul_char.snap │ │ │ ├── python_parser__lexer__tests__indentation_with_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__indentation_with_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__indentation_with_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__invalid_leading_zero_big.snap │ │ │ ├── python_parser__lexer__tests__invalid_leading_zero_small.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_assignment.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_indentation.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap │ │ │ ├── python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap │ │ │ ├── python_parser__lexer__tests__ipython_help_end_escape_command.snap │ │ │ ├── python_parser__lexer__tests__line_comment_empty.snap │ │ │ ├── python_parser__lexer__tests__line_comment_long.snap │ │ │ ├── python_parser__lexer__tests__line_comment_single_whitespace.snap │ │ │ ├── python_parser__lexer__tests__line_comment_whitespace.snap │ │ │ ├── python_parser__lexer__tests__logical_newline_line_comment.snap │ │ │ ├── python_parser__lexer__tests__match_softkeyword_in_notebook.snap │ │ │ ├── python_parser__lexer__tests__newline_in_brackets_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__newline_in_brackets_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__newline_in_brackets_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap │ │ │ ├── python_parser__lexer__tests__numbers.snap │ │ │ ├── python_parser__lexer__tests__operators.snap │ │ │ ├── python_parser__lexer__tests__string.snap │ │ │ ├── python_parser__lexer__tests__string_continuation_with_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__string_continuation_with_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__string_continuation_with_windows_eol.snap │ │ │ ├── python_parser__lexer__tests__tet_too_low_dedent.snap │ │ │ ├── python_parser__lexer__tests__triple_quoted_mac_eol.snap │ │ │ ├── python_parser__lexer__tests__triple_quoted_unix_eol.snap │ │ │ ├── python_parser__lexer__tests__triple_quoted_windows_eol.snap │ │ │ ├── python_parser__string__tests__backspace_alias.snap │ │ │ ├── python_parser__string__tests__bell_alias.snap │ │ │ ├── python_parser__string__tests__carriage_return_alias.snap │ │ │ ├── python_parser__string__tests__character_tabulation_with_justification_alias.snap │ │ │ ├── python_parser__string__tests__delete_alias.snap │ │ │ ├── python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap │ │ │ ├── python_parser__string__tests__double_quoted_byte.snap │ │ │ ├── python_parser__string__tests__escape_alias.snap │ │ │ ├── python_parser__string__tests__escape_char_in_byte_literal.snap │ │ │ ├── python_parser__string__tests__escape_octet.snap │ │ │ ├── python_parser__string__tests__form_feed_alias.snap │ │ │ ├── python_parser__string__tests__fstring_constant_range.snap │ │ │ ├── python_parser__string__tests__fstring_escaped_character.snap │ │ │ ├── python_parser__string__tests__fstring_escaped_newline.snap │ │ │ ├── python_parser__string__tests__fstring_line_continuation.snap │ │ │ ├── python_parser__string__tests__fstring_parse_self_documenting_base.snap │ │ │ ├── python_parser__string__tests__fstring_parse_self_documenting_base_more.snap │ │ │ ├── python_parser__string__tests__fstring_parse_self_documenting_format.snap │ │ │ ├── python_parser__string__tests__fstring_unescaped_newline.snap │ │ │ ├── python_parser__string__tests__hts_alias.snap │ │ │ ├── python_parser__string__tests__invalid_byte_literal_error.snap │ │ │ ├── python_parser__string__tests__invalid_unicode_literal.snap │ │ │ ├── python_parser__string__tests__invalid_unicode_name_error.snap │ │ │ ├── python_parser__string__tests__missing_unicode_lbrace_error.snap │ │ │ ├── python_parser__string__tests__missing_unicode_rbrace_error.snap │ │ │ ├── python_parser__string__tests__parse_empty_fstring.snap │ │ │ ├── python_parser__string__tests__parse_f_string_concat_1.snap │ │ │ ├── python_parser__string__tests__parse_f_string_concat_2.snap │ │ │ ├── python_parser__string__tests__parse_f_string_concat_3.snap │ │ │ ├── python_parser__string__tests__parse_f_string_concat_4.snap │ │ │ ├── python_parser__string__tests__parse_fstring.snap │ │ │ ├── python_parser__string__tests__parse_fstring_equals.snap │ │ │ ├── python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap │ │ │ ├── python_parser__string__tests__parse_fstring_nested_spec.snap │ │ │ ├── python_parser__string__tests__parse_fstring_nested_string_spec.snap │ │ │ ├── python_parser__string__tests__parse_fstring_not_equals.snap │ │ │ ├── python_parser__string__tests__parse_fstring_not_nested_spec.snap │ │ │ ├── python_parser__string__tests__parse_fstring_self_doc_prec_space.snap │ │ │ ├── python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap │ │ │ ├── python_parser__string__tests__parse_fstring_yield_expr.snap │ │ │ ├── python_parser__string__tests__parse_string_concat.snap │ │ │ ├── python_parser__string__tests__parse_string_triple_quotes_with_kind.snap │ │ │ ├── python_parser__string__tests__parse_u_f_string_concat_1.snap │ │ │ ├── python_parser__string__tests__parse_u_f_string_concat_2.snap │ │ │ ├── python_parser__string__tests__parse_u_string_concat_1.snap │ │ │ ├── python_parser__string__tests__parse_u_string_concat_2.snap │ │ │ ├── python_parser__string__tests__raw_byte_literal_1.snap │ │ │ ├── python_parser__string__tests__raw_byte_literal_2.snap │ │ │ ├── python_parser__string__tests__raw_fstring.snap │ │ │ ├── python_parser__string__tests__single_quoted_byte.snap │ │ │ ├── python_parser__string__tests__string_parser_escaped_mac_eol.snap │ │ │ ├── python_parser__string__tests__string_parser_escaped_unix_eol.snap │ │ │ ├── python_parser__string__tests__string_parser_escaped_windows_eol.snap │ │ │ ├── python_parser__string__tests__triple_quoted_raw_fstring.snap │ │ │ ├── ruff_python_parser__lexer__tests__assignment.snap │ │ │ ├── ruff_python_parser__lexer__tests__bom.snap │ │ │ ├── ruff_python_parser__lexer__tests__bom_with_offset.snap │ │ │ ├── ruff_python_parser__lexer__tests__bom_with_offset_edge.snap │ │ │ ├── ruff_python_parser__lexer__tests__comment_until_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__comment_until_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__comment_until_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__dedent_after_whitespace.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__double_dedent_with_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__emoji_identifier.snap │ │ │ ├── ruff_python_parser__lexer__tests__empty_fstrings.snap │ │ │ ├── ruff_python_parser__lexer__tests__empty_ipython_escape_command.snap │ │ │ ├── ruff_python_parser__lexer__tests__escape_unicode_name.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_comments.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_conversion.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_escape.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_escape_braces.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_escape_raw.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_expression_multiline.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_multiline.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_named_unicode.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_named_unicode_raw.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_nested.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_parentheses.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_prefix.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_format_spec.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_lambda_expression.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_named_expression.snap │ │ │ ├── ruff_python_parser__lexer__tests__fstring_with_nul_char.snap │ │ │ ├── ruff_python_parser__lexer__tests__indentation_with_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__indentation_with_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__indentation_with_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__invalid_leading_zero_big.snap │ │ │ ├── ruff_python_parser__lexer__tests__invalid_leading_zero_small.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_assignment.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_indentation.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap │ │ │ ├── ruff_python_parser__lexer__tests__ipython_help_end_escape_command.snap │ │ │ ├── ruff_python_parser__lexer__tests__line_comment_empty.snap │ │ │ ├── ruff_python_parser__lexer__tests__line_comment_long.snap │ │ │ ├── ruff_python_parser__lexer__tests__line_comment_single_whitespace.snap │ │ │ ├── ruff_python_parser__lexer__tests__line_comment_whitespace.snap │ │ │ ├── ruff_python_parser__lexer__tests__logical_newline_line_comment.snap │ │ │ ├── ruff_python_parser__lexer__tests__match_softkeyword_in_notebook.snap │ │ │ ├── ruff_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap │ │ │ ├── ruff_python_parser__lexer__tests__numbers.snap │ │ │ ├── ruff_python_parser__lexer__tests__operators.snap │ │ │ ├── ruff_python_parser__lexer__tests__string.snap │ │ │ ├── ruff_python_parser__lexer__tests__string_continuation_with_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__string_continuation_with_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__string_continuation_with_windows_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__tet_too_low_dedent.snap │ │ │ ├── ruff_python_parser__lexer__tests__triple_quoted_mac_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__triple_quoted_unix_eol.snap │ │ │ ├── ruff_python_parser__lexer__tests__triple_quoted_windows_eol.snap │ │ │ ├── ruff_python_parser__string__tests__backspace_alias.snap │ │ │ ├── ruff_python_parser__string__tests__bell_alias.snap │ │ │ ├── ruff_python_parser__string__tests__carriage_return_alias.snap │ │ │ ├── ruff_python_parser__string__tests__character_tabulation_with_justification_alias.snap │ │ │ ├── ruff_python_parser__string__tests__delete_alias.snap │ │ │ ├── ruff_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap │ │ │ ├── ruff_python_parser__string__tests__double_quoted_byte.snap │ │ │ ├── ruff_python_parser__string__tests__escape_alias.snap │ │ │ ├── ruff_python_parser__string__tests__escape_char_in_byte_literal.snap │ │ │ ├── ruff_python_parser__string__tests__escape_octet.snap │ │ │ ├── ruff_python_parser__string__tests__form_feed_alias.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_constant_range.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_escaped_character.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_escaped_newline.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_line_continuation.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_parse_self_documenting_base.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_parse_self_documenting_format.snap │ │ │ ├── ruff_python_parser__string__tests__fstring_unescaped_newline.snap │ │ │ ├── ruff_python_parser__string__tests__hts_alias.snap │ │ │ ├── ruff_python_parser__string__tests__invalid_byte_literal_error.snap │ │ │ ├── ruff_python_parser__string__tests__invalid_unicode_literal.snap │ │ │ ├── ruff_python_parser__string__tests__invalid_unicode_name_error.snap │ │ │ ├── ruff_python_parser__string__tests__missing_unicode_lbrace_error.snap │ │ │ ├── ruff_python_parser__string__tests__missing_unicode_rbrace_error.snap │ │ │ ├── ruff_python_parser__string__tests__parse_empty_fstring.snap │ │ │ ├── ruff_python_parser__string__tests__parse_f_string_concat_1.snap │ │ │ ├── ruff_python_parser__string__tests__parse_f_string_concat_2.snap │ │ │ ├── ruff_python_parser__string__tests__parse_f_string_concat_3.snap │ │ │ ├── ruff_python_parser__string__tests__parse_f_string_concat_4.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_equals.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_nested_spec.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_nested_string_spec.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_not_equals.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_not_nested_spec.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap │ │ │ ├── ruff_python_parser__string__tests__parse_fstring_yield_expr.snap │ │ │ ├── ruff_python_parser__string__tests__parse_string_concat.snap │ │ │ ├── ruff_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap │ │ │ ├── ruff_python_parser__string__tests__parse_u_f_string_concat_1.snap │ │ │ ├── ruff_python_parser__string__tests__parse_u_f_string_concat_2.snap │ │ │ ├── ruff_python_parser__string__tests__parse_u_string_concat_1.snap │ │ │ ├── ruff_python_parser__string__tests__parse_u_string_concat_2.snap │ │ │ ├── ruff_python_parser__string__tests__raw_byte_literal_1.snap │ │ │ ├── ruff_python_parser__string__tests__raw_byte_literal_2.snap │ │ │ ├── ruff_python_parser__string__tests__raw_fstring.snap │ │ │ ├── ruff_python_parser__string__tests__single_quoted_byte.snap │ │ │ ├── ruff_python_parser__string__tests__string_parser_escaped_mac_eol.snap │ │ │ ├── ruff_python_parser__string__tests__string_parser_escaped_unix_eol.snap │ │ │ ├── ruff_python_parser__string__tests__string_parser_escaped_windows_eol.snap │ │ │ ├── ruff_python_parser__string__tests__triple_quoted_raw_fstring.snap │ │ │ ├── sith_python_parser__lexer__tests__assignment.snap │ │ │ ├── sith_python_parser__lexer__tests__bom.snap │ │ │ ├── sith_python_parser__lexer__tests__bom_with_offset.snap │ │ │ ├── sith_python_parser__lexer__tests__bom_with_offset_edge.snap │ │ │ ├── sith_python_parser__lexer__tests__comment_until_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__comment_until_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__comment_until_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__dedent_after_whitespace.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_tabs_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_tabs_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_tabs_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__double_dedent_with_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__emoji_identifier.snap │ │ │ ├── sith_python_parser__lexer__tests__empty_fstrings.snap │ │ │ ├── sith_python_parser__lexer__tests__empty_ipython_escape_command.snap │ │ │ ├── sith_python_parser__lexer__tests__escape_unicode_name.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_comments.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_conversion.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_escape.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_escape_braces.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_escape_raw.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_expression_multiline.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_multiline.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_named_unicode.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_named_unicode_raw.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_nested.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_parentheses.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_prefix.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_single_quote_escape_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_single_quote_escape_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_single_quote_escape_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_format_spec.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_ipy_escape_command.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_lambda_expression.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_multiline_format_spec.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_named_expression.snap │ │ │ ├── sith_python_parser__lexer__tests__fstring_with_nul_char.snap │ │ │ ├── sith_python_parser__lexer__tests__indentation_with_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__indentation_with_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__indentation_with_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__invalid_leading_zero_big.snap │ │ │ ├── sith_python_parser__lexer__tests__invalid_leading_zero_small.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_assignment.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_indentation.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_mac_eol_and_eof.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_unix_eol_and_eof.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_escape_command_line_continuation_with_windows_eol_and_eof.snap │ │ │ ├── sith_python_parser__lexer__tests__ipython_help_end_escape_command.snap │ │ │ ├── sith_python_parser__lexer__tests__line_comment_empty.snap │ │ │ ├── sith_python_parser__lexer__tests__line_comment_long.snap │ │ │ ├── sith_python_parser__lexer__tests__line_comment_single_whitespace.snap │ │ │ ├── sith_python_parser__lexer__tests__line_comment_whitespace.snap │ │ │ ├── sith_python_parser__lexer__tests__logical_newline_line_comment.snap │ │ │ ├── sith_python_parser__lexer__tests__match_softkeyword_in_notebook.snap │ │ │ ├── sith_python_parser__lexer__tests__newline_in_brackets_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__newline_in_brackets_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__newline_in_brackets_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__non_logical_newline_in_string_continuation.snap │ │ │ ├── sith_python_parser__lexer__tests__numbers.snap │ │ │ ├── sith_python_parser__lexer__tests__operators.snap │ │ │ ├── sith_python_parser__lexer__tests__string.snap │ │ │ ├── sith_python_parser__lexer__tests__string_continuation_with_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__string_continuation_with_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__string_continuation_with_windows_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__tet_too_low_dedent.snap │ │ │ ├── sith_python_parser__lexer__tests__triple_quoted_mac_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__triple_quoted_unix_eol.snap │ │ │ ├── sith_python_parser__lexer__tests__triple_quoted_windows_eol.snap │ │ │ ├── sith_python_parser__string__tests__backspace_alias.snap │ │ │ ├── sith_python_parser__string__tests__bell_alias.snap │ │ │ ├── sith_python_parser__string__tests__carriage_return_alias.snap │ │ │ ├── sith_python_parser__string__tests__character_tabulation_with_justification_alias.snap │ │ │ ├── sith_python_parser__string__tests__delete_alias.snap │ │ │ ├── sith_python_parser__string__tests__dont_panic_on_8_in_octal_escape.snap │ │ │ ├── sith_python_parser__string__tests__double_quoted_byte.snap │ │ │ ├── sith_python_parser__string__tests__escape_alias.snap │ │ │ ├── sith_python_parser__string__tests__escape_char_in_byte_literal.snap │ │ │ ├── sith_python_parser__string__tests__escape_octet.snap │ │ │ ├── sith_python_parser__string__tests__form_feed_alias.snap │ │ │ ├── sith_python_parser__string__tests__fstring_constant_range.snap │ │ │ ├── sith_python_parser__string__tests__fstring_escaped_character.snap │ │ │ ├── sith_python_parser__string__tests__fstring_escaped_newline.snap │ │ │ ├── sith_python_parser__string__tests__fstring_line_continuation.snap │ │ │ ├── sith_python_parser__string__tests__fstring_parse_self_documenting_base.snap │ │ │ ├── sith_python_parser__string__tests__fstring_parse_self_documenting_base_more.snap │ │ │ ├── sith_python_parser__string__tests__fstring_parse_self_documenting_format.snap │ │ │ ├── sith_python_parser__string__tests__fstring_unescaped_newline.snap │ │ │ ├── sith_python_parser__string__tests__hts_alias.snap │ │ │ ├── sith_python_parser__string__tests__invalid_byte_literal_error.snap │ │ │ ├── sith_python_parser__string__tests__invalid_unicode_literal.snap │ │ │ ├── sith_python_parser__string__tests__invalid_unicode_name_error.snap │ │ │ ├── sith_python_parser__string__tests__missing_unicode_lbrace_error.snap │ │ │ ├── sith_python_parser__string__tests__missing_unicode_rbrace_error.snap │ │ │ ├── sith_python_parser__string__tests__parse_empty_fstring.snap │ │ │ ├── sith_python_parser__string__tests__parse_f_string_concat_1.snap │ │ │ ├── sith_python_parser__string__tests__parse_f_string_concat_2.snap │ │ │ ├── sith_python_parser__string__tests__parse_f_string_concat_3.snap │ │ │ ├── sith_python_parser__string__tests__parse_f_string_concat_4.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_equals.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_nested_concatenation_string_spec.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_nested_spec.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_nested_string_spec.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_not_equals.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_not_nested_spec.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_self_doc_prec_space.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_self_doc_trailing_space.snap │ │ │ ├── sith_python_parser__string__tests__parse_fstring_yield_expr.snap │ │ │ ├── sith_python_parser__string__tests__parse_string_concat.snap │ │ │ ├── sith_python_parser__string__tests__parse_string_triple_quotes_with_kind.snap │ │ │ ├── sith_python_parser__string__tests__parse_u_f_string_concat_1.snap │ │ │ ├── sith_python_parser__string__tests__parse_u_f_string_concat_2.snap │ │ │ ├── sith_python_parser__string__tests__parse_u_string_concat_1.snap │ │ │ ├── sith_python_parser__string__tests__parse_u_string_concat_2.snap │ │ │ ├── sith_python_parser__string__tests__raw_byte_literal_1.snap │ │ │ ├── sith_python_parser__string__tests__raw_byte_literal_2.snap │ │ │ ├── sith_python_parser__string__tests__raw_fstring.snap │ │ │ ├── sith_python_parser__string__tests__single_quoted_byte.snap │ │ │ ├── sith_python_parser__string__tests__string_parser_escaped_mac_eol.snap │ │ │ ├── sith_python_parser__string__tests__string_parser_escaped_unix_eol.snap │ │ │ ├── sith_python_parser__string__tests__string_parser_escaped_windows_eol.snap │ │ │ └── sith_python_parser__string__tests__triple_quoted_raw_fstring.snap │ │ ├── string.rs │ │ ├── token.rs │ │ ├── token_set.rs │ │ └── token_source.rs │ └── tests │ │ ├── fixtures.rs │ │ ├── generate_inline_tests.rs │ │ └── snapshots │ │ ├── invalid_syntax@ann_assign_stmt_invalid_annotation.py.snap │ │ ├── invalid_syntax@ann_assign_stmt_invalid_target.py.snap │ │ ├── invalid_syntax@ann_assign_stmt_invalid_value.py.snap │ │ ├── invalid_syntax@ann_assign_stmt_missing_rhs.py.snap │ │ ├── invalid_syntax@ann_assign_stmt_type_alias_annotation.py.snap │ │ ├── invalid_syntax@assert_empty_msg.py.snap │ │ ├── invalid_syntax@assert_empty_test.py.snap │ │ ├── invalid_syntax@assert_invalid_msg_expr.py.snap │ │ ├── invalid_syntax@assert_invalid_test_expr.py.snap │ │ ├── invalid_syntax@assign_stmt_invalid_target.py.snap │ │ ├── invalid_syntax@assign_stmt_invalid_value_expr.py.snap │ │ ├── invalid_syntax@assign_stmt_keyword_target.py.snap │ │ ├── invalid_syntax@assign_stmt_missing_rhs.py.snap │ │ ├── invalid_syntax@async_unexpected_token.py.snap │ │ ├── invalid_syntax@aug_assign_stmt_invalid_target.py.snap │ │ ├── invalid_syntax@aug_assign_stmt_invalid_value.py.snap │ │ ├── invalid_syntax@aug_assign_stmt_missing_rhs.py.snap │ │ ├── invalid_syntax@case_expect_indented_block.py.snap │ │ ├── invalid_syntax@class_def_empty_body.py.snap │ │ ├── invalid_syntax@class_def_missing_name.py.snap │ │ ├── invalid_syntax@class_def_unclosed_type_param_list.py.snap │ │ ├── invalid_syntax@clause_expect_indented_block.py.snap │ │ ├── invalid_syntax@clause_expect_single_statement.py.snap │ │ ├── invalid_syntax@comma_separated_missing_comma.py.snap │ │ ├── invalid_syntax@comma_separated_missing_comma_between_elements.py.snap │ │ ├── invalid_syntax@comma_separated_missing_element_between_commas.py.snap │ │ ├── invalid_syntax@comma_separated_missing_first_element.py.snap │ │ ├── invalid_syntax@comprehension_missing_for_after_async.py.snap │ │ ├── invalid_syntax@decorator_invalid_expression.py.snap │ │ ├── invalid_syntax@decorator_missing_expression.py.snap │ │ ├── invalid_syntax@decorator_missing_newline.py.snap │ │ ├── invalid_syntax@decorator_unexpected_token.py.snap │ │ ├── invalid_syntax@del_incomplete_target.py.snap │ │ ├── invalid_syntax@del_stmt_empty.py.snap │ │ ├── invalid_syntax@dotted_name_multiple_dots.py.snap │ │ ├── invalid_syntax@except_stmt_invalid_expression.py.snap │ │ ├── invalid_syntax@except_stmt_missing_as_name.py.snap │ │ ├── invalid_syntax@except_stmt_missing_exception.py.snap │ │ ├── invalid_syntax@except_stmt_missing_exception_and_as_name.py.snap │ │ ├── invalid_syntax@except_stmt_unparenthesized_tuple.py.snap │ │ ├── invalid_syntax@expressions__arguments__double_starred.py.snap │ │ ├── invalid_syntax@expressions__arguments__duplicate_keyword_arguments.py.snap │ │ ├── invalid_syntax@expressions__arguments__invalid_expression.py.snap │ │ ├── invalid_syntax@expressions__arguments__invalid_keyword_expression.py.snap │ │ ├── invalid_syntax@expressions__arguments__invalid_order.py.snap │ │ ├── invalid_syntax@expressions__arguments__missing_argument.py.snap │ │ ├── invalid_syntax@expressions__arguments__missing_comma.py.snap │ │ ├── invalid_syntax@expressions__arguments__missing_expression.py.snap │ │ ├── invalid_syntax@expressions__arguments__starred.py.snap │ │ ├── invalid_syntax@expressions__arguments__unclosed_0.py.snap │ │ ├── invalid_syntax@expressions__arguments__unclosed_1.py.snap │ │ ├── invalid_syntax@expressions__arguments__unclosed_2.py.snap │ │ ├── invalid_syntax@expressions__attribute__invalid_member.py.snap │ │ ├── invalid_syntax@expressions__attribute__multiple_dots.py.snap │ │ ├── invalid_syntax@expressions__attribute__no_member.py.snap │ │ ├── invalid_syntax@expressions__await__no_expression_0.py.snap │ │ ├── invalid_syntax@expressions__await__no_expression_1.py.snap │ │ ├── invalid_syntax@expressions__await__recover.py.snap │ │ ├── invalid_syntax@expressions__bin_op__invalid_rhs_expression.py.snap │ │ ├── invalid_syntax@expressions__bin_op__missing_lhs.py.snap │ │ ├── invalid_syntax@expressions__bin_op__missing_rhs_0.py.snap │ │ ├── invalid_syntax@expressions__bin_op__missing_rhs_1.py.snap │ │ ├── invalid_syntax@expressions__bin_op__multiple_ops.py.snap │ │ ├── invalid_syntax@expressions__bin_op__named_expression.py.snap │ │ ├── invalid_syntax@expressions__bin_op__starred_expression.py.snap │ │ ├── invalid_syntax@expressions__bool_op__invalid_rhs_expression.py.snap │ │ ├── invalid_syntax@expressions__bool_op__missing_lhs.py.snap │ │ ├── invalid_syntax@expressions__bool_op__missing_rhs.py.snap │ │ ├── invalid_syntax@expressions__bool_op__named_expression.py.snap │ │ ├── invalid_syntax@expressions__bool_op__starred_expression.py.snap │ │ ├── invalid_syntax@expressions__compare__invalid_order.py.snap │ │ ├── invalid_syntax@expressions__compare__invalid_rhs_expression.py.snap │ │ ├── invalid_syntax@expressions__compare__missing_lhs.py.snap │ │ ├── invalid_syntax@expressions__compare__missing_rhs_0.py.snap │ │ ├── invalid_syntax@expressions__compare__missing_rhs_1.py.snap │ │ ├── invalid_syntax@expressions__compare__missing_rhs_2.py.snap │ │ ├── invalid_syntax@expressions__compare__multiple_equals.py.snap │ │ ├── invalid_syntax@expressions__compare__named_expression.py.snap │ │ ├── invalid_syntax@expressions__compare__starred_expression.py.snap │ │ ├── invalid_syntax@expressions__dict__comprehension.py.snap │ │ ├── invalid_syntax@expressions__dict__double_star.py.snap │ │ ├── invalid_syntax@expressions__dict__double_star_comprehension.py.snap │ │ ├── invalid_syntax@expressions__dict__missing_closing_brace_0.py.snap │ │ ├── invalid_syntax@expressions__dict__missing_closing_brace_1.py.snap │ │ ├── invalid_syntax@expressions__dict__missing_closing_brace_2.py.snap │ │ ├── invalid_syntax@expressions__dict__named_expression_0.py.snap │ │ ├── invalid_syntax@expressions__dict__named_expression_1.py.snap │ │ ├── invalid_syntax@expressions__dict__recover.py.snap │ │ ├── invalid_syntax@expressions__emoji_identifiers.py.snap │ │ ├── invalid_syntax@expressions__emoji_statement.py.snap │ │ ├── invalid_syntax@expressions__if__missing_orelse_expr_0.py.snap │ │ ├── invalid_syntax@expressions__if__missing_orelse_expr_1.py.snap │ │ ├── invalid_syntax@expressions__if__missing_test_expr_0.py.snap │ │ ├── invalid_syntax@expressions__if__missing_test_expr_1.py.snap │ │ ├── invalid_syntax@expressions__if__recover.py.snap │ │ ├── invalid_syntax@expressions__lambda_default_parameters.py.snap │ │ ├── invalid_syntax@expressions__lambda_duplicate_parameters.py.snap │ │ ├── invalid_syntax@expressions__list__comprehension.py.snap │ │ ├── invalid_syntax@expressions__list__missing_closing_bracket_0.py.snap │ │ ├── invalid_syntax@expressions__list__missing_closing_bracket_1.py.snap │ │ ├── invalid_syntax@expressions__list__missing_closing_bracket_2.py.snap │ │ ├── invalid_syntax@expressions__list__missing_closing_bracket_3.py.snap │ │ ├── invalid_syntax@expressions__list__recover.py.snap │ │ ├── invalid_syntax@expressions__list__star_expression_precedence.py.snap │ │ ├── invalid_syntax@expressions__named__invalid_target.py.snap │ │ ├── invalid_syntax@expressions__named__missing_expression_0.py.snap │ │ ├── invalid_syntax@expressions__named__missing_expression_1.py.snap │ │ ├── invalid_syntax@expressions__named__missing_expression_2.py.snap │ │ ├── invalid_syntax@expressions__named__missing_expression_3.py.snap │ │ ├── invalid_syntax@expressions__named__missing_expression_4.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__generator.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__missing_closing_paren_0.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__missing_closing_paren_1.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__missing_closing_paren_2.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__missing_closing_paren_3.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__parenthesized.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__tuple.py.snap │ │ ├── invalid_syntax@expressions__parenthesized__tuple_starred_expr.py.snap │ │ ├── invalid_syntax@expressions__set__comprehension.py.snap │ │ ├── invalid_syntax@expressions__set__missing_closing_curly_brace_0.py.snap │ │ ├── invalid_syntax@expressions__set__missing_closing_curly_brace_1.py.snap │ │ ├── invalid_syntax@expressions__set__missing_closing_curly_brace_2.py.snap │ │ ├── invalid_syntax@expressions__set__missing_closing_curly_brace_3.py.snap │ │ ├── invalid_syntax@expressions__set__recover.py.snap │ │ ├── invalid_syntax@expressions__set__star_expression_precedence.py.snap │ │ ├── invalid_syntax@expressions__subscript__invalid_slice_element.py.snap │ │ ├── invalid_syntax@expressions__subscript__unclosed_slice_0.py.snap │ │ ├── invalid_syntax@expressions__subscript__unclosed_slice_1.py.snap │ │ ├── invalid_syntax@expressions__unary.py.snap │ │ ├── invalid_syntax@expressions__unary__named_expression.py.snap │ │ ├── invalid_syntax@expressions__unary__no_expression_0.py.snap │ │ ├── invalid_syntax@expressions__unary__no_expression_1.py.snap │ │ ├── invalid_syntax@expressions__yield__named_expression.py.snap │ │ ├── invalid_syntax@expressions__yield__star_expression.py.snap │ │ ├── invalid_syntax@expressions__yield_from__starred_expression.py.snap │ │ ├── invalid_syntax@expressions__yield_from__unparenthesized.py.snap │ │ ├── invalid_syntax@f_string_empty_expression.py.snap │ │ ├── invalid_syntax@f_string_invalid_conversion_flag_name_tok.py.snap │ │ ├── invalid_syntax@f_string_invalid_conversion_flag_other_tok.py.snap │ │ ├── invalid_syntax@f_string_invalid_starred_expr.py.snap │ │ ├── invalid_syntax@f_string_lambda_without_parentheses.py.snap │ │ ├── invalid_syntax@f_string_unclosed_lbrace.py.snap │ │ ├── invalid_syntax@f_string_unclosed_lbrace_in_format_spec.py.snap │ │ ├── invalid_syntax@for_stmt_invalid_iter_expr.py.snap │ │ ├── invalid_syntax@for_stmt_invalid_target.py.snap │ │ ├── invalid_syntax@for_stmt_invalid_target_binary_expr.py.snap │ │ ├── invalid_syntax@for_stmt_invalid_target_in_keyword.py.snap │ │ ├── invalid_syntax@for_stmt_missing_in_keyword.py.snap │ │ ├── invalid_syntax@for_stmt_missing_iter.py.snap │ │ ├── invalid_syntax@for_stmt_missing_target.py.snap │ │ ├── invalid_syntax@from_import_dotted_names.py.snap │ │ ├── invalid_syntax@from_import_empty_names.py.snap │ │ ├── invalid_syntax@from_import_missing_module.py.snap │ │ ├── invalid_syntax@from_import_missing_rpar.py.snap │ │ ├── invalid_syntax@from_import_star_with_other_names.py.snap │ │ ├── invalid_syntax@from_import_unparenthesized_trailing_comma.py.snap │ │ ├── invalid_syntax@function_def_empty_body.py.snap │ │ ├── invalid_syntax@function_def_invalid_return_expr.py.snap │ │ ├── invalid_syntax@function_def_missing_identifier.py.snap │ │ ├── invalid_syntax@function_def_missing_return_type.py.snap │ │ ├── invalid_syntax@function_def_unclosed_parameter_list.py.snap │ │ ├── invalid_syntax@function_def_unclosed_type_param_list.py.snap │ │ ├── invalid_syntax@function_def_unparenthesized_return_types.py.snap │ │ ├── invalid_syntax@global_stmt_empty.py.snap │ │ ├── invalid_syntax@global_stmt_expression.py.snap │ │ ├── invalid_syntax@global_stmt_trailing_comma.py.snap │ │ ├── invalid_syntax@if_stmt_elif_missing_colon.py.snap │ │ ├── invalid_syntax@if_stmt_empty_body.py.snap │ │ ├── invalid_syntax@if_stmt_invalid_elif_test_expr.py.snap │ │ ├── invalid_syntax@if_stmt_invalid_test_expr.py.snap │ │ ├── invalid_syntax@if_stmt_missing_colon.py.snap │ │ ├── invalid_syntax@if_stmt_missing_test.py.snap │ │ ├── invalid_syntax@if_stmt_misspelled_elif.py.snap │ │ ├── invalid_syntax@implicitly_concatenated_unterminated_string.py.snap │ │ ├── invalid_syntax@implicitly_concatenated_unterminated_string_multiline.py.snap │ │ ├── invalid_syntax@import_alias_missing_asname.py.snap │ │ ├── invalid_syntax@import_stmt_empty.py.snap │ │ ├── invalid_syntax@import_stmt_parenthesized_names.py.snap │ │ ├── invalid_syntax@import_stmt_star_import.py.snap │ │ ├── invalid_syntax@import_stmt_trailing_comma.py.snap │ │ ├── invalid_syntax@invalid_byte_literal.py.snap │ │ ├── invalid_syntax@invalid_del_target.py.snap │ │ ├── invalid_syntax@invalid_fstring_literal_element.py.snap │ │ ├── invalid_syntax@invalid_string_literal.py.snap │ │ ├── invalid_syntax@lambda_body_with_starred_expr.py.snap │ │ ├── invalid_syntax@lambda_body_with_yield_expr.py.snap │ │ ├── invalid_syntax@match_classify_as_keyword.py.snap │ │ ├── invalid_syntax@match_classify_as_keyword_or_identifier.py.snap │ │ ├── invalid_syntax@match_expected_colon.py.snap │ │ ├── invalid_syntax@match_stmt_expect_indented_block.py.snap │ │ ├── invalid_syntax@match_stmt_expected_case_block.py.snap │ │ ├── invalid_syntax@match_stmt_invalid_guard_expr.py.snap │ │ ├── invalid_syntax@match_stmt_invalid_subject_expr.py.snap │ │ ├── invalid_syntax@match_stmt_missing_guard_expr.py.snap │ │ ├── invalid_syntax@match_stmt_missing_pattern.py.snap │ │ ├── invalid_syntax@match_stmt_no_newline_before_case.py.snap │ │ ├── invalid_syntax@match_stmt_single_starred_subject.py.snap │ │ ├── invalid_syntax@mixed_bytes_and_non_bytes_literals.py.snap │ │ ├── invalid_syntax@multiple_clauses_on_same_line.py.snap │ │ ├── invalid_syntax@node_range_with_gaps.py.snap │ │ ├── invalid_syntax@nonlocal_stmt_empty.py.snap │ │ ├── invalid_syntax@nonlocal_stmt_expression.py.snap │ │ ├── invalid_syntax@nonlocal_stmt_trailing_comma.py.snap │ │ ├── invalid_syntax@param_missing_annotation.py.snap │ │ ├── invalid_syntax@param_missing_default.py.snap │ │ ├── invalid_syntax@param_with_invalid_annotation.py.snap │ │ ├── invalid_syntax@param_with_invalid_default.py.snap │ │ ├── invalid_syntax@param_with_invalid_star_annotation.py.snap │ │ ├── invalid_syntax@params_duplicate_names.py.snap │ │ ├── invalid_syntax@params_expected_after_star_separator.py.snap │ │ ├── invalid_syntax@params_kwarg_after_star_separator.py.snap │ │ ├── invalid_syntax@params_multiple_kwargs.py.snap │ │ ├── invalid_syntax@params_multiple_slash_separator.py.snap │ │ ├── invalid_syntax@params_multiple_star_separator.py.snap │ │ ├── invalid_syntax@params_multiple_varargs.py.snap │ │ ├── invalid_syntax@params_no_arg_before_slash.py.snap │ │ ├── invalid_syntax@params_non_default_after_default.py.snap │ │ ├── invalid_syntax@params_star_after_slash.py.snap │ │ ├── invalid_syntax@params_star_separator_after_star_param.py.snap │ │ ├── invalid_syntax@params_var_keyword_with_default.py.snap │ │ ├── invalid_syntax@params_var_positional_with_default.py.snap │ │ ├── invalid_syntax@raise_stmt_invalid_cause.py.snap │ │ ├── invalid_syntax@raise_stmt_invalid_exc.py.snap │ │ ├── invalid_syntax@raise_stmt_unparenthesized_tuple_cause.py.snap │ │ ├── invalid_syntax@raise_stmt_unparenthesized_tuple_exc.py.snap │ │ ├── invalid_syntax@re_lex_logical_token.py.snap │ │ ├── invalid_syntax@re_lex_logical_token_mac_eol.py.snap │ │ ├── invalid_syntax@re_lex_logical_token_windows_eol.py.snap │ │ ├── invalid_syntax@re_lexing__fstring_format_spec_1.py.snap │ │ ├── invalid_syntax@re_lexing__line_continuation_1.py.snap │ │ ├── invalid_syntax@re_lexing__line_continuation_windows_eol.py.snap │ │ ├── invalid_syntax@re_lexing__triple_quoted_fstring_1.py.snap │ │ ├── invalid_syntax@re_lexing__triple_quoted_fstring_2.py.snap │ │ ├── invalid_syntax@re_lexing__triple_quoted_fstring_3.py.snap │ │ ├── invalid_syntax@return_stmt_invalid_expr.py.snap │ │ ├── invalid_syntax@simple_and_compound_stmt_on_same_line.py.snap │ │ ├── invalid_syntax@simple_and_compound_stmt_on_same_line_in_block.py.snap │ │ ├── invalid_syntax@simple_stmts_on_same_line.py.snap │ │ ├── invalid_syntax@simple_stmts_on_same_line_in_block.py.snap │ │ ├── invalid_syntax@statements__function_type_parameters.py.snap │ │ ├── invalid_syntax@statements__if_extra_closing_parentheses.py.snap │ │ ├── invalid_syntax@statements__if_extra_indent.py.snap │ │ ├── invalid_syntax@statements__invalid_assignment_targets.py.snap │ │ ├── invalid_syntax@statements__invalid_augmented_assignment_target.py.snap │ │ ├── invalid_syntax@statements__match__as_pattern_0.py.snap │ │ ├── invalid_syntax@statements__match__as_pattern_1.py.snap │ │ ├── invalid_syntax@statements__match__as_pattern_2.py.snap │ │ ├── invalid_syntax@statements__match__as_pattern_3.py.snap │ │ ├── invalid_syntax@statements__match__as_pattern_4.py.snap │ │ ├── invalid_syntax@statements__match__invalid_class_pattern.py.snap │ │ ├── invalid_syntax@statements__match__invalid_lhs_or_rhs_pattern.py.snap │ │ ├── invalid_syntax@statements__match__invalid_mapping_pattern.py.snap │ │ ├── invalid_syntax@statements__match__star_pattern_usage.py.snap │ │ ├── invalid_syntax@statements__match__unary_add_usage.py.snap │ │ ├── invalid_syntax@statements__with__ambiguous_lpar_with_items.py.snap │ │ ├── invalid_syntax@statements__with__empty_with_items.py.snap │ │ ├── invalid_syntax@statements__with__unclosed_ambiguous_lpar.py.snap │ │ ├── invalid_syntax@statements__with__unclosed_ambiguous_lpar_eof.py.snap │ │ ├── invalid_syntax@statements__with__unparenthesized_with_items.py.snap │ │ ├── invalid_syntax@try_stmt_invalid_order.py.snap │ │ ├── invalid_syntax@try_stmt_missing_except_finally.py.snap │ │ ├── invalid_syntax@try_stmt_misspelled_except.py.snap │ │ ├── invalid_syntax@type_alias_incomplete_stmt.py.snap │ │ ├── invalid_syntax@type_alias_invalid_value_expr.py.snap │ │ ├── invalid_syntax@type_param_invalid_bound_expr.py.snap │ │ ├── invalid_syntax@type_param_missing_bound.py.snap │ │ ├── invalid_syntax@type_param_param_spec_bound.py.snap │ │ ├── invalid_syntax@type_param_param_spec_invalid_default_expr.py.snap │ │ ├── invalid_syntax@type_param_param_spec_missing_default.py.snap │ │ ├── invalid_syntax@type_param_type_var_invalid_default_expr.py.snap │ │ ├── invalid_syntax@type_param_type_var_missing_default.py.snap │ │ ├── invalid_syntax@type_param_type_var_tuple_bound.py.snap │ │ ├── invalid_syntax@type_param_type_var_tuple_invalid_default_expr.py.snap │ │ ├── invalid_syntax@type_param_type_var_tuple_missing_default.py.snap │ │ ├── invalid_syntax@type_params_empty.py.snap │ │ ├── invalid_syntax@unterminated_fstring_newline_recovery.py.snap │ │ ├── invalid_syntax@while_stmt_invalid_test_expr.py.snap │ │ ├── invalid_syntax@while_stmt_missing_colon.py.snap │ │ ├── invalid_syntax@while_stmt_missing_test.py.snap │ │ ├── invalid_syntax@with_items_parenthesized_missing_colon.py.snap │ │ ├── invalid_syntax@with_items_parenthesized_missing_comma.py.snap │ │ ├── valid_syntax@ambiguous_lpar_with_items_binary_expr.py.snap │ │ ├── valid_syntax@ambiguous_lpar_with_items_if_expr.py.snap │ │ ├── valid_syntax@ann_assign_stmt_simple_target.py.snap │ │ ├── valid_syntax@assign_targets_terminator.py.snap │ │ ├── valid_syntax@async_for_statement.py.snap │ │ ├── valid_syntax@async_function_definition.py.snap │ │ ├── valid_syntax@async_with_statement.py.snap │ │ ├── valid_syntax@class_def_arguments.py.snap │ │ ├── valid_syntax@comma_separated_regular_list_terminator.py.snap │ │ ├── valid_syntax@decorator_async_function.py.snap │ │ ├── valid_syntax@del_targets_terminator.py.snap │ │ ├── valid_syntax@dotted_name_normalized_spaces.py.snap │ │ ├── valid_syntax@except_stmt_as_name_soft_keyword.py.snap │ │ ├── valid_syntax@expressions__arguments.py.snap │ │ ├── valid_syntax@expressions__attribute.py.snap │ │ ├── valid_syntax@expressions__await.py.snap │ │ ├── valid_syntax@expressions__bin_op.py.snap │ │ ├── valid_syntax@expressions__bool_op.py.snap │ │ ├── valid_syntax@expressions__call.py.snap │ │ ├── valid_syntax@expressions__compare.py.snap │ │ ├── valid_syntax@expressions__dictionary.py.snap │ │ ├── valid_syntax@expressions__dictionary_comprehension.py.snap │ │ ├── valid_syntax@expressions__f_string.py.snap │ │ ├── valid_syntax@expressions__generator.py.snap │ │ ├── valid_syntax@expressions__if.py.snap │ │ ├── valid_syntax@expressions__lambda.py.snap │ │ ├── valid_syntax@expressions__list.py.snap │ │ ├── valid_syntax@expressions__list_comprehension.py.snap │ │ ├── valid_syntax@expressions__name.py.snap │ │ ├── valid_syntax@expressions__named.py.snap │ │ ├── valid_syntax@expressions__number_literal.py.snap │ │ ├── valid_syntax@expressions__parenthesized.py.snap │ │ ├── valid_syntax@expressions__set.py.snap │ │ ├── valid_syntax@expressions__set_comprehension.py.snap │ │ ├── valid_syntax@expressions__slice.py.snap │ │ ├── valid_syntax@expressions__starred.py.snap │ │ ├── valid_syntax@expressions__string.py.snap │ │ ├── valid_syntax@expressions__subscript.py.snap │ │ ├── valid_syntax@expressions__tuple.py.snap │ │ ├── valid_syntax@expressions__unary_op.py.snap │ │ ├── valid_syntax@expressions__yield.py.snap │ │ ├── valid_syntax@expressions__yield_from.py.snap │ │ ├── valid_syntax@for_in_target_valid_expr.py.snap │ │ ├── valid_syntax@from_import_no_space.py.snap │ │ ├── valid_syntax@from_import_soft_keyword_module_name.py.snap │ │ ├── valid_syntax@from_import_stmt_terminator.py.snap │ │ ├── valid_syntax@fstring_format_spec_terminator.py.snap │ │ ├── valid_syntax@function_def_parameter_range.py.snap │ │ ├── valid_syntax@function_def_parenthesized_return_types.py.snap │ │ ├── valid_syntax@function_def_valid_return_expr.py.snap │ │ ├── valid_syntax@global_stmt.py.snap │ │ ├── valid_syntax@import_as_name_soft_keyword.py.snap │ │ ├── valid_syntax@import_stmt_terminator.py.snap │ │ ├── valid_syntax@lambda_with_no_parameters.py.snap │ │ ├── valid_syntax@lambda_with_valid_body.py.snap │ │ ├── valid_syntax@match_as_pattern.py.snap │ │ ├── valid_syntax@match_as_pattern_soft_keyword.py.snap │ │ ├── valid_syntax@match_attr_pattern_soft_keyword.py.snap │ │ ├── valid_syntax@match_classify_as_identifier_1.py.snap │ │ ├── valid_syntax@match_classify_as_identifier_2.py.snap │ │ ├── valid_syntax@match_classify_as_keyword_1.py.snap │ │ ├── valid_syntax@match_classify_as_keyword_2.py.snap │ │ ├── valid_syntax@match_classify_as_keyword_or_identifier.py.snap │ │ ├── valid_syntax@match_sequence_pattern_parentheses_terminator.py.snap │ │ ├── valid_syntax@match_sequence_pattern_terminator.py.snap │ │ ├── valid_syntax@match_stmt_subject_expr.py.snap │ │ ├── valid_syntax@match_stmt_valid_guard_expr.py.snap │ │ ├── valid_syntax@nonlocal_stmt.py.snap │ │ ├── valid_syntax@other__atom.py.snap │ │ ├── valid_syntax@other__decorator.py.snap │ │ ├── valid_syntax@param_with_annotation.py.snap │ │ ├── valid_syntax@param_with_default.py.snap │ │ ├── valid_syntax@param_with_star_annotation.py.snap │ │ ├── valid_syntax@params_non_default_after_star.py.snap │ │ ├── valid_syntax@params_seen_keyword_only_param_after_star.py.snap │ │ ├── valid_syntax@simple_stmts_in_block.py.snap │ │ ├── valid_syntax@simple_stmts_with_semicolons.py.snap │ │ ├── valid_syntax@statement__ambiguous_lpar_with_items.py.snap │ │ ├── valid_syntax@statement__annotated_assignment.py.snap │ │ ├── valid_syntax@statement__assert.py.snap │ │ ├── valid_syntax@statement__assignment.py.snap │ │ ├── valid_syntax@statement__augmented_assignment.py.snap │ │ ├── valid_syntax@statement__class.py.snap │ │ ├── valid_syntax@statement__delete.py.snap │ │ ├── valid_syntax@statement__for.py.snap │ │ ├── valid_syntax@statement__from_import.py.snap │ │ ├── valid_syntax@statement__function.py.snap │ │ ├── valid_syntax@statement__if.py.snap │ │ ├── valid_syntax@statement__import.py.snap │ │ ├── valid_syntax@statement__match.py.snap │ │ ├── valid_syntax@statement__raise.py.snap │ │ ├── valid_syntax@statement__return.py.snap │ │ ├── valid_syntax@statement__simple.py.snap │ │ ├── valid_syntax@statement__try.py.snap │ │ ├── valid_syntax@statement__type.py.snap │ │ ├── valid_syntax@statement__while.py.snap │ │ ├── valid_syntax@statement__with.py.snap │ │ ├── valid_syntax@type_param_param_spec.py.snap │ │ ├── valid_syntax@type_param_type_var.py.snap │ │ └── valid_syntax@type_param_type_var_tuple.py.snap ├── sith_python_utils │ ├── Cargo.toml │ └── src │ │ ├── interpreter.rs │ │ ├── lib.rs │ │ └── nodes.rs ├── sith_semantic_model │ ├── Cargo.toml │ ├── resources │ │ └── tests │ │ │ └── fixtures │ │ │ ├── foo │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ └── baz │ │ │ │ ├── __init__.py │ │ │ │ └── test.py │ │ │ ├── foobar.py │ │ │ └── small_project │ │ │ ├── requirements.txt │ │ │ └── tim │ │ │ ├── __init__.py │ │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── dependencies.py │ │ │ ├── routes │ │ │ │ ├── __init__.py │ │ │ │ ├── items.py │ │ │ │ ├── login.py │ │ │ │ └── users.py │ │ │ └── security.py │ │ │ ├── core │ │ │ ├── __init__.py │ │ │ └── config.py │ │ │ ├── db │ │ │ ├── __init__.py │ │ │ └── crud.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── item.py │ │ │ └── user.py │ │ │ └── schemas │ │ │ ├── __init__.py │ │ │ ├── item.py │ │ │ ├── token.py │ │ │ ├── user.py │ │ │ └── utils.py │ └── src │ │ ├── builtins.rs │ │ ├── db.rs │ │ ├── declaration.rs │ │ ├── indexer.rs │ │ ├── lib.rs │ │ ├── mro.rs │ │ ├── scope.rs │ │ ├── symbol.rs │ │ ├── symbol_table.rs │ │ ├── type_inference.rs │ │ └── util.rs ├── sith_server │ ├── Cargo.toml │ ├── resources │ │ └── test │ │ │ └── fixtures │ │ │ ├── pandas_html.py │ │ │ └── settings │ │ │ ├── empty.json │ │ │ ├── global_only.json │ │ │ └── vs_code_initialization_options.json │ ├── src │ │ ├── edit.rs │ │ ├── edit │ │ │ ├── convert.rs │ │ │ ├── document.rs │ │ │ ├── fix.rs │ │ │ └── replacement.rs │ │ ├── lib.rs │ │ ├── message.rs │ │ ├── server.rs │ │ ├── server │ │ │ ├── api.rs │ │ │ ├── api │ │ │ │ ├── diagnostics.rs │ │ │ │ ├── notifications.rs │ │ │ │ ├── notifications │ │ │ │ │ ├── cancel.rs │ │ │ │ │ ├── did_change.rs │ │ │ │ │ ├── did_change_configuration.rs │ │ │ │ │ ├── did_change_workspace.rs │ │ │ │ │ ├── did_close.rs │ │ │ │ │ ├── did_open.rs │ │ │ │ │ └── set_trace.rs │ │ │ │ ├── requests.rs │ │ │ │ ├── requests │ │ │ │ │ ├── code_action.rs │ │ │ │ │ ├── code_action_resolve.rs │ │ │ │ │ ├── completion.rs │ │ │ │ │ ├── completion │ │ │ │ │ │ └── resolve.rs │ │ │ │ │ ├── diagnostic.rs │ │ │ │ │ ├── document_highlight.rs │ │ │ │ │ ├── document_symbol.rs │ │ │ │ │ ├── execute_command.rs │ │ │ │ │ ├── format.rs │ │ │ │ │ ├── goto_definition.rs │ │ │ │ │ ├── hover.rs │ │ │ │ │ ├── prepare_rename.rs │ │ │ │ │ ├── references.rs │ │ │ │ │ ├── rename.rs │ │ │ │ │ └── signature_help.rs │ │ │ │ ├── tests │ │ │ │ │ ├── goto_definition.rs │ │ │ │ │ ├── lsp_client.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── references.rs │ │ │ │ │ └── snapshots │ │ │ │ │ │ ├── sith_server__server__api__tests__goto_definition__goto_class_attribute_definition.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__goto_definition__goto_definition_across_files.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__goto_definition__goto_definition_builtin_typeshed.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__goto_definition__goto_definition_same_file.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__goto_definition__goto_module_attribute_definition.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__references__class_attribute_reference.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__references__local_variable_reference.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__references__module_attribute_reference.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__references__no_references_found.snap │ │ │ │ │ │ ├── sith_server__server__api__tests__references__references_across_files.snap │ │ │ │ │ │ └── sith_server__server__api__tests__references__references_same_file.snap │ │ │ │ └── traits.rs │ │ │ ├── client.rs │ │ │ ├── connection.rs │ │ │ ├── schedule.rs │ │ │ └── schedule │ │ │ │ ├── task.rs │ │ │ │ ├── thread.rs │ │ │ │ └── thread │ │ │ │ ├── pool.rs │ │ │ │ └── priority.rs │ │ ├── session.rs │ │ ├── session │ │ │ ├── capabilities.rs │ │ │ ├── settings.rs │ │ │ ├── snapshots │ │ │ │ ├── sith_server__session__settings__tests__global_only_resolves_correctly.snap │ │ │ │ └── sith_server__session__settings__tests__vs_code_init_options_deserialize.snap │ │ │ └── workspace.rs │ │ ├── trace.rs │ │ ├── util.rs │ │ └── util │ │ │ └── ruff.rs │ └── tests │ │ ├── document.rs │ │ └── snapshots │ │ └── document__delete_lines_pandas_html.snap └── sith_vendored │ ├── Cargo.toml │ ├── build.rs │ ├── src │ └── lib.rs │ └── vendor │ └── typeshed │ ├── LICENSE │ ├── README.md │ ├── source_commit.txt │ └── stdlib │ ├── VERSIONS │ ├── __future__.pyi │ ├── __main__.pyi │ ├── _ast.pyi │ ├── _bisect.pyi │ ├── _bootlocale.pyi │ ├── _codecs.pyi │ ├── _collections_abc.pyi │ ├── _compat_pickle.pyi │ ├── _compression.pyi │ ├── _csv.pyi │ ├── _ctypes.pyi │ ├── _curses.pyi │ ├── _decimal.pyi │ ├── _dummy_thread.pyi │ ├── _dummy_threading.pyi │ ├── _heapq.pyi │ ├── _imp.pyi │ ├── _json.pyi │ ├── _locale.pyi │ ├── _lsprof.pyi │ ├── _markupbase.pyi │ ├── _msi.pyi │ ├── _operator.pyi │ ├── _osx_support.pyi │ ├── _posixsubprocess.pyi │ ├── _py_abc.pyi │ ├── _pydecimal.pyi │ ├── _random.pyi │ ├── _sitebuiltins.pyi │ ├── _socket.pyi │ ├── _stat.pyi │ ├── _thread.pyi │ ├── _threading_local.pyi │ ├── _tkinter.pyi │ ├── _tracemalloc.pyi │ ├── _typeshed │ ├── README.md │ ├── __init__.pyi │ ├── dbapi.pyi │ ├── importlib.pyi │ ├── wsgi.pyi │ └── xml.pyi │ ├── _warnings.pyi │ ├── _weakref.pyi │ ├── _weakrefset.pyi │ ├── _winapi.pyi │ ├── abc.pyi │ ├── aifc.pyi │ ├── antigravity.pyi │ ├── argparse.pyi │ ├── array.pyi │ ├── ast.pyi │ ├── asynchat.pyi │ ├── asyncio │ ├── __init__.pyi │ ├── base_events.pyi │ ├── base_futures.pyi │ ├── base_subprocess.pyi │ ├── base_tasks.pyi │ ├── constants.pyi │ ├── coroutines.pyi │ ├── events.pyi │ ├── exceptions.pyi │ ├── format_helpers.pyi │ ├── futures.pyi │ ├── locks.pyi │ ├── log.pyi │ ├── mixins.pyi │ ├── proactor_events.pyi │ ├── protocols.pyi │ ├── queues.pyi │ ├── runners.pyi │ ├── selector_events.pyi │ ├── sslproto.pyi │ ├── staggered.pyi │ ├── streams.pyi │ ├── subprocess.pyi │ ├── taskgroups.pyi │ ├── tasks.pyi │ ├── threads.pyi │ ├── timeouts.pyi │ ├── transports.pyi │ ├── trsock.pyi │ ├── unix_events.pyi │ ├── windows_events.pyi │ └── windows_utils.pyi │ ├── asyncore.pyi │ ├── atexit.pyi │ ├── audioop.pyi │ ├── base64.pyi │ ├── bdb.pyi │ ├── binascii.pyi │ ├── binhex.pyi │ ├── bisect.pyi │ ├── builtins.pyi │ ├── bz2.pyi │ ├── cProfile.pyi │ ├── calendar.pyi │ ├── cgi.pyi │ ├── cgitb.pyi │ ├── chunk.pyi │ ├── cmath.pyi │ ├── cmd.pyi │ ├── code.pyi │ ├── codecs.pyi │ ├── codeop.pyi │ ├── collections │ ├── __init__.pyi │ └── abc.pyi │ ├── colorsys.pyi │ ├── compileall.pyi │ ├── concurrent │ ├── __init__.pyi │ └── futures │ │ ├── __init__.pyi │ │ ├── _base.pyi │ │ ├── process.pyi │ │ └── thread.pyi │ ├── configparser.pyi │ ├── contextlib.pyi │ ├── contextvars.pyi │ ├── copy.pyi │ ├── copyreg.pyi │ ├── crypt.pyi │ ├── csv.pyi │ ├── ctypes │ ├── __init__.pyi │ ├── _endian.pyi │ ├── util.pyi │ └── wintypes.pyi │ ├── curses │ ├── __init__.pyi │ ├── ascii.pyi │ ├── has_key.pyi │ ├── panel.pyi │ └── textpad.pyi │ ├── dataclasses.pyi │ ├── datetime.pyi │ ├── dbm │ ├── __init__.pyi │ ├── dumb.pyi │ ├── gnu.pyi │ └── ndbm.pyi │ ├── decimal.pyi │ ├── difflib.pyi │ ├── dis.pyi │ ├── distutils │ ├── __init__.pyi │ ├── archive_util.pyi │ ├── bcppcompiler.pyi │ ├── ccompiler.pyi │ ├── cmd.pyi │ ├── command │ │ ├── __init__.pyi │ │ ├── bdist.pyi │ │ ├── bdist_dumb.pyi │ │ ├── bdist_msi.pyi │ │ ├── bdist_packager.pyi │ │ ├── bdist_rpm.pyi │ │ ├── bdist_wininst.pyi │ │ ├── build.pyi │ │ ├── build_clib.pyi │ │ ├── build_ext.pyi │ │ ├── build_py.pyi │ │ ├── build_scripts.pyi │ │ ├── check.pyi │ │ ├── clean.pyi │ │ ├── config.pyi │ │ ├── install.pyi │ │ ├── install_data.pyi │ │ ├── install_egg_info.pyi │ │ ├── install_headers.pyi │ │ ├── install_lib.pyi │ │ ├── install_scripts.pyi │ │ ├── register.pyi │ │ ├── sdist.pyi │ │ └── upload.pyi │ ├── config.pyi │ ├── core.pyi │ ├── cygwinccompiler.pyi │ ├── debug.pyi │ ├── dep_util.pyi │ ├── dir_util.pyi │ ├── dist.pyi │ ├── errors.pyi │ ├── extension.pyi │ ├── fancy_getopt.pyi │ ├── file_util.pyi │ ├── filelist.pyi │ ├── log.pyi │ ├── msvccompiler.pyi │ ├── spawn.pyi │ ├── sysconfig.pyi │ ├── text_file.pyi │ ├── unixccompiler.pyi │ ├── util.pyi │ └── version.pyi │ ├── doctest.pyi │ ├── dummy_threading.pyi │ ├── email │ ├── __init__.pyi │ ├── _header_value_parser.pyi │ ├── _policybase.pyi │ ├── base64mime.pyi │ ├── charset.pyi │ ├── contentmanager.pyi │ ├── encoders.pyi │ ├── errors.pyi │ ├── feedparser.pyi │ ├── generator.pyi │ ├── header.pyi │ ├── headerregistry.pyi │ ├── iterators.pyi │ ├── message.pyi │ ├── mime │ │ ├── __init__.pyi │ │ ├── application.pyi │ │ ├── audio.pyi │ │ ├── base.pyi │ │ ├── image.pyi │ │ ├── message.pyi │ │ ├── multipart.pyi │ │ ├── nonmultipart.pyi │ │ └── text.pyi │ ├── parser.pyi │ ├── policy.pyi │ ├── quoprimime.pyi │ └── utils.pyi │ ├── encodings │ ├── __init__.pyi │ ├── utf_8.pyi │ └── utf_8_sig.pyi │ ├── ensurepip │ └── __init__.pyi │ ├── enum.pyi │ ├── errno.pyi │ ├── faulthandler.pyi │ ├── fcntl.pyi │ ├── filecmp.pyi │ ├── fileinput.pyi │ ├── fnmatch.pyi │ ├── formatter.pyi │ ├── fractions.pyi │ ├── ftplib.pyi │ ├── functools.pyi │ ├── gc.pyi │ ├── genericpath.pyi │ ├── getopt.pyi │ ├── getpass.pyi │ ├── gettext.pyi │ ├── glob.pyi │ ├── graphlib.pyi │ ├── grp.pyi │ ├── gzip.pyi │ ├── hashlib.pyi │ ├── heapq.pyi │ ├── hmac.pyi │ ├── html │ ├── __init__.pyi │ ├── entities.pyi │ └── parser.pyi │ ├── http │ ├── __init__.pyi │ ├── client.pyi │ ├── cookiejar.pyi │ ├── cookies.pyi │ └── server.pyi │ ├── imaplib.pyi │ ├── imghdr.pyi │ ├── imp.pyi │ ├── importlib │ ├── __init__.pyi │ ├── _abc.pyi │ ├── abc.pyi │ ├── machinery.pyi │ ├── metadata │ │ ├── __init__.pyi │ │ └── _meta.pyi │ ├── readers.pyi │ ├── resources │ │ ├── __init__.pyi │ │ ├── abc.pyi │ │ ├── readers.pyi │ │ └── simple.pyi │ ├── simple.pyi │ └── util.pyi │ ├── inspect.pyi │ ├── io.pyi │ ├── ipaddress.pyi │ ├── itertools.pyi │ ├── json │ ├── __init__.pyi │ ├── decoder.pyi │ ├── encoder.pyi │ └── tool.pyi │ ├── keyword.pyi │ ├── lib2to3 │ ├── __init__.pyi │ ├── btm_matcher.pyi │ ├── fixer_base.pyi │ ├── fixes │ │ ├── __init__.pyi │ │ ├── fix_apply.pyi │ │ ├── fix_asserts.pyi │ │ ├── fix_basestring.pyi │ │ ├── fix_buffer.pyi │ │ ├── fix_dict.pyi │ │ ├── fix_except.pyi │ │ ├── fix_exec.pyi │ │ ├── fix_execfile.pyi │ │ ├── fix_exitfunc.pyi │ │ ├── fix_filter.pyi │ │ ├── fix_funcattrs.pyi │ │ ├── fix_future.pyi │ │ ├── fix_getcwdu.pyi │ │ ├── fix_has_key.pyi │ │ ├── fix_idioms.pyi │ │ ├── fix_import.pyi │ │ ├── fix_imports.pyi │ │ ├── fix_imports2.pyi │ │ ├── fix_input.pyi │ │ ├── fix_intern.pyi │ │ ├── fix_isinstance.pyi │ │ ├── fix_itertools.pyi │ │ ├── fix_itertools_imports.pyi │ │ ├── fix_long.pyi │ │ ├── fix_map.pyi │ │ ├── fix_metaclass.pyi │ │ ├── fix_methodattrs.pyi │ │ ├── fix_ne.pyi │ │ ├── fix_next.pyi │ │ ├── fix_nonzero.pyi │ │ ├── fix_numliterals.pyi │ │ ├── fix_operator.pyi │ │ ├── fix_paren.pyi │ │ ├── fix_print.pyi │ │ ├── fix_raise.pyi │ │ ├── fix_raw_input.pyi │ │ ├── fix_reduce.pyi │ │ ├── fix_reload.pyi │ │ ├── fix_renames.pyi │ │ ├── fix_repr.pyi │ │ ├── fix_set_literal.pyi │ │ ├── fix_standarderror.pyi │ │ ├── fix_sys_exc.pyi │ │ ├── fix_throw.pyi │ │ ├── fix_tuple_params.pyi │ │ ├── fix_types.pyi │ │ ├── fix_unicode.pyi │ │ ├── fix_urllib.pyi │ │ ├── fix_ws_comma.pyi │ │ ├── fix_xrange.pyi │ │ ├── fix_xreadlines.pyi │ │ └── fix_zip.pyi │ ├── main.pyi │ ├── pgen2 │ │ ├── __init__.pyi │ │ ├── driver.pyi │ │ ├── grammar.pyi │ │ ├── literals.pyi │ │ ├── parse.pyi │ │ ├── pgen.pyi │ │ ├── token.pyi │ │ └── tokenize.pyi │ ├── pygram.pyi │ ├── pytree.pyi │ └── refactor.pyi │ ├── linecache.pyi │ ├── locale.pyi │ ├── logging │ ├── __init__.pyi │ ├── config.pyi │ └── handlers.pyi │ ├── lzma.pyi │ ├── mailbox.pyi │ ├── mailcap.pyi │ ├── marshal.pyi │ ├── math.pyi │ ├── mimetypes.pyi │ ├── mmap.pyi │ ├── modulefinder.pyi │ ├── msilib │ ├── __init__.pyi │ ├── schema.pyi │ ├── sequence.pyi │ └── text.pyi │ ├── msvcrt.pyi │ ├── multiprocessing │ ├── __init__.pyi │ ├── connection.pyi │ ├── context.pyi │ ├── dummy │ │ ├── __init__.pyi │ │ └── connection.pyi │ ├── forkserver.pyi │ ├── heap.pyi │ ├── managers.pyi │ ├── pool.pyi │ ├── popen_fork.pyi │ ├── popen_forkserver.pyi │ ├── popen_spawn_posix.pyi │ ├── popen_spawn_win32.pyi │ ├── process.pyi │ ├── queues.pyi │ ├── reduction.pyi │ ├── resource_sharer.pyi │ ├── resource_tracker.pyi │ ├── shared_memory.pyi │ ├── sharedctypes.pyi │ ├── spawn.pyi │ ├── synchronize.pyi │ └── util.pyi │ ├── netrc.pyi │ ├── nis.pyi │ ├── nntplib.pyi │ ├── nt.pyi │ ├── ntpath.pyi │ ├── nturl2path.pyi │ ├── numbers.pyi │ ├── opcode.pyi │ ├── operator.pyi │ ├── optparse.pyi │ ├── os │ ├── __init__.pyi │ └── path.pyi │ ├── ossaudiodev.pyi │ ├── parser.pyi │ ├── pathlib.pyi │ ├── pdb.pyi │ ├── pickle.pyi │ ├── pickletools.pyi │ ├── pipes.pyi │ ├── pkgutil.pyi │ ├── platform.pyi │ ├── plistlib.pyi │ ├── poplib.pyi │ ├── posix.pyi │ ├── posixpath.pyi │ ├── pprint.pyi │ ├── profile.pyi │ ├── pstats.pyi │ ├── pty.pyi │ ├── pwd.pyi │ ├── py_compile.pyi │ ├── pyclbr.pyi │ ├── pydoc.pyi │ ├── pydoc_data │ ├── __init__.pyi │ └── topics.pyi │ ├── pyexpat │ ├── __init__.pyi │ ├── errors.pyi │ └── model.pyi │ ├── queue.pyi │ ├── quopri.pyi │ ├── random.pyi │ ├── re.pyi │ ├── readline.pyi │ ├── reprlib.pyi │ ├── resource.pyi │ ├── rlcompleter.pyi │ ├── runpy.pyi │ ├── sched.pyi │ ├── secrets.pyi │ ├── select.pyi │ ├── selectors.pyi │ ├── shelve.pyi │ ├── shlex.pyi │ ├── shutil.pyi │ ├── signal.pyi │ ├── site.pyi │ ├── smtpd.pyi │ ├── smtplib.pyi │ ├── sndhdr.pyi │ ├── socket.pyi │ ├── socketserver.pyi │ ├── spwd.pyi │ ├── sqlite3 │ ├── __init__.pyi │ └── dbapi2.pyi │ ├── sre_compile.pyi │ ├── sre_constants.pyi │ ├── sre_parse.pyi │ ├── ssl.pyi │ ├── stat.pyi │ ├── statistics.pyi │ ├── string.pyi │ ├── stringprep.pyi │ ├── struct.pyi │ ├── subprocess.pyi │ ├── sunau.pyi │ ├── symbol.pyi │ ├── symtable.pyi │ ├── sys │ ├── __init__.pyi │ └── _monitoring.pyi │ ├── sysconfig.pyi │ ├── syslog.pyi │ ├── tabnanny.pyi │ ├── tarfile.pyi │ ├── telnetlib.pyi │ ├── tempfile.pyi │ ├── termios.pyi │ ├── textwrap.pyi │ ├── this.pyi │ ├── threading.pyi │ ├── time.pyi │ ├── timeit.pyi │ ├── tkinter │ ├── __init__.pyi │ ├── colorchooser.pyi │ ├── commondialog.pyi │ ├── constants.pyi │ ├── dialog.pyi │ ├── dnd.pyi │ ├── filedialog.pyi │ ├── font.pyi │ ├── messagebox.pyi │ ├── scrolledtext.pyi │ ├── simpledialog.pyi │ ├── tix.pyi │ └── ttk.pyi │ ├── token.pyi │ ├── tokenize.pyi │ ├── tomllib.pyi │ ├── trace.pyi │ ├── traceback.pyi │ ├── tracemalloc.pyi │ ├── tty.pyi │ ├── turtle.pyi │ ├── types.pyi │ ├── typing.pyi │ ├── typing_extensions.pyi │ ├── unicodedata.pyi │ ├── unittest │ ├── __init__.pyi │ ├── _log.pyi │ ├── async_case.pyi │ ├── case.pyi │ ├── loader.pyi │ ├── main.pyi │ ├── mock.pyi │ ├── result.pyi │ ├── runner.pyi │ ├── signals.pyi │ ├── suite.pyi │ └── util.pyi │ ├── urllib │ ├── __init__.pyi │ ├── error.pyi │ ├── parse.pyi │ ├── request.pyi │ ├── response.pyi │ └── robotparser.pyi │ ├── uu.pyi │ ├── uuid.pyi │ ├── warnings.pyi │ ├── wave.pyi │ ├── weakref.pyi │ ├── webbrowser.pyi │ ├── winreg.pyi │ ├── winsound.pyi │ ├── wsgiref │ ├── __init__.pyi │ ├── handlers.pyi │ ├── headers.pyi │ ├── simple_server.pyi │ ├── types.pyi │ ├── util.pyi │ └── validate.pyi │ ├── xdrlib.pyi │ ├── xml │ ├── __init__.pyi │ ├── dom │ │ ├── NodeFilter.pyi │ │ ├── __init__.pyi │ │ ├── domreg.pyi │ │ ├── expatbuilder.pyi │ │ ├── minicompat.pyi │ │ ├── minidom.pyi │ │ ├── pulldom.pyi │ │ └── xmlbuilder.pyi │ ├── etree │ │ ├── ElementInclude.pyi │ │ ├── ElementPath.pyi │ │ ├── ElementTree.pyi │ │ ├── __init__.pyi │ │ └── cElementTree.pyi │ ├── parsers │ │ ├── __init__.pyi │ │ └── expat │ │ │ ├── __init__.pyi │ │ │ ├── errors.pyi │ │ │ └── model.pyi │ └── sax │ │ ├── __init__.pyi │ │ ├── _exceptions.pyi │ │ ├── handler.pyi │ │ ├── saxutils.pyi │ │ └── xmlreader.pyi │ ├── xmlrpc │ ├── __init__.pyi │ ├── client.pyi │ └── server.pyi │ ├── xxlimited.pyi │ ├── zipapp.pyi │ ├── zipfile │ ├── __init__.pyi │ └── _path.pyi │ ├── zipimport.pyi │ ├── zlib.pyi │ └── zoneinfo │ └── __init__.pyi └── editors └── vscode ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── LICENSE ├── bundled └── tool │ └── find_binary_path.py ├── package-lock.json ├── package.json ├── src ├── extension.ts └── utils │ ├── commands.ts │ ├── constants.ts │ ├── fs.ts │ ├── logger.ts │ ├── settings.ts │ └── vscodeapi.ts └── tsconfig.json /.github/workflows/build-vscode-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/.github/workflows/build-vscode-extension.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/README.md -------------------------------------------------------------------------------- /crates/lsp-types/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/.gitignore -------------------------------------------------------------------------------- /crates/lsp-types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/CHANGELOG.md -------------------------------------------------------------------------------- /crates/lsp-types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/Cargo.toml -------------------------------------------------------------------------------- /crates/lsp-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/LICENSE -------------------------------------------------------------------------------- /crates/lsp-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/README.md -------------------------------------------------------------------------------- /crates/lsp-types/src/call_hierarchy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/call_hierarchy.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/code_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/code_action.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/code_lens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/code_lens.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/color.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/completion.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/document_diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/document_diagnostic.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/document_highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/document_highlight.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/document_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/document_link.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/document_symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/document_symbols.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/error_codes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/error_codes.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/file_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/file_operations.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/folding_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/folding_range.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/formatting.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/hover.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/inlay_hint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/inlay_hint.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/inline_completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/inline_completion.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/inline_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/inline_value.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/lib.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/linked_editing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/linked_editing.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/lsif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/lsif.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/moniker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/moniker.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/notebook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/notebook.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/notification.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/progress.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/references.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/rename.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/request.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/selection_range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/selection_range.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/semantic_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/semantic_tokens.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/signature_help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/signature_help.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/trace.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/type_hierarchy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/type_hierarchy.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/window.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/workspace_diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/workspace_diagnostic.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/workspace_folders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/workspace_folders.rs -------------------------------------------------------------------------------- /crates/lsp-types/src/workspace_symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/src/workspace_symbols.rs -------------------------------------------------------------------------------- /crates/lsp-types/tests/lsif.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/tests/lsif.rs -------------------------------------------------------------------------------- /crates/lsp-types/tests/tsc-unix.lsif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/lsp-types/tests/tsc-unix.lsif -------------------------------------------------------------------------------- /crates/ruff_index/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/Cargo.toml -------------------------------------------------------------------------------- /crates/ruff_index/src/idx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/src/idx.rs -------------------------------------------------------------------------------- /crates/ruff_index/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/src/lib.rs -------------------------------------------------------------------------------- /crates/ruff_index/src/serde_impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/src/serde_impls.rs -------------------------------------------------------------------------------- /crates/ruff_index/src/slice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/src/slice.rs -------------------------------------------------------------------------------- /crates/ruff_index/src/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_index/src/vec.rs -------------------------------------------------------------------------------- /crates/ruff_macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_macros/Cargo.toml -------------------------------------------------------------------------------- /crates/ruff_macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_macros/src/lib.rs -------------------------------------------------------------------------------- /crates/ruff_macros/src/newtype_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_macros/src/newtype_index.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/Cargo.toml -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/resources/test/airflow/README.md -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/api/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/api/common/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/providers/google/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/providers/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/airflow/providers/google/cloud/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/venv/lib/python3.11/site-packages/orjson/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/venv/lib/python3.11/site-packages/orjson/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/venv/lib/python3.11/site-packages/orjson/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/resources/test/airflow/venv/lib/python3.11/site-packages/sqlalchemy/orm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/cache.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/config.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/execution_environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/execution_environment.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/host.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/implicit_imports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/implicit_imports.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/import_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/import_result.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/lib.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/module_descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/module_descriptor.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/native_module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/native_module.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/py_typed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/py_typed.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/python_platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/python_platform.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/python_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/python_version.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/resolver.rs -------------------------------------------------------------------------------- /crates/ruff_python_resolver/src/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_python_resolver/src/search.rs -------------------------------------------------------------------------------- /crates/ruff_source_file/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_source_file/Cargo.toml -------------------------------------------------------------------------------- /crates/ruff_source_file/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_source_file/src/lib.rs -------------------------------------------------------------------------------- /crates/ruff_source_file/src/line_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_source_file/src/line_index.rs -------------------------------------------------------------------------------- /crates/ruff_source_file/src/locator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_source_file/src/locator.rs -------------------------------------------------------------------------------- /crates/ruff_source_file/src/newlines.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_source_file/src/newlines.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/Cargo.toml -------------------------------------------------------------------------------- /crates/ruff_text_size/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/src/lib.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/src/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/src/range.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/src/serde_impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/src/serde_impls.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/src/size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/src/size.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/src/traits.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/tests/auto_traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/tests/auto_traits.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/tests/constructors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/tests/constructors.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/tests/indexing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/tests/indexing.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/tests/main.rs -------------------------------------------------------------------------------- /crates/ruff_text_size/tests/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/ruff_text_size/tests/serde.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/README.md -------------------------------------------------------------------------------- /crates/sith_benchmark/benches/indexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/benches/indexer.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/benches/lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/benches/lexer.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/benches/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/benches/parser.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/benches/semantic_table_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/benches/semantic_table_builder.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/src/criterion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/src/criterion.rs -------------------------------------------------------------------------------- /crates/sith_benchmark/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_benchmark/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_lsp/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_lsp/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_lsp/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_lsp/src/main.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_python_ast/src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/float.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/int.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/int.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/name.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/node.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/nodes.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/statement_visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/statement_visitor.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/str_prefix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/str_prefix.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/types.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/visitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/visitor.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/visitor/source_order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/visitor/source_order.rs -------------------------------------------------------------------------------- /crates/sith_python_ast/src/visitor/transformer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast/src/visitor/transformer.rs -------------------------------------------------------------------------------- /crates/sith_python_ast_utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast_utils/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_python_ast_utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast_utils/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_python_ast_utils/src/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_ast_utils/src/nodes.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/.editorconfig -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/ann_assign_stmt_missing_rhs.py: -------------------------------------------------------------------------------- 1 | x: int = 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/assert_empty_msg.py: -------------------------------------------------------------------------------- 1 | assert x, 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/assert_empty_test.py: -------------------------------------------------------------------------------- 1 | assert 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/comma_separated_missing_comma.py: -------------------------------------------------------------------------------- 1 | call(**x := 1) 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/comma_separated_missing_element_between_commas.py: -------------------------------------------------------------------------------- 1 | [0, 1, , 2] 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/comma_separated_missing_first_element.py: -------------------------------------------------------------------------------- 1 | call(= 1) 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/decorator_unexpected_token.py: -------------------------------------------------------------------------------- 1 | @foo 2 | async with x: ... 3 | @foo 4 | x = 1 5 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/del_stmt_empty.py: -------------------------------------------------------------------------------- 1 | del 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/f_string_empty_expression.py: -------------------------------------------------------------------------------- 1 | f"{}" 2 | f"{ }" 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/f_string_invalid_conversion_flag_name_tok.py: -------------------------------------------------------------------------------- 1 | f"{x!z}" 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/f_string_lambda_without_parentheses.py: -------------------------------------------------------------------------------- 1 | f"{lambda x: x}" 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/for_stmt_missing_iter.py: -------------------------------------------------------------------------------- 1 | for x in: 2 | a = 1 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/for_stmt_missing_target.py: -------------------------------------------------------------------------------- 1 | for in x: ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/from_import_missing_module.py: -------------------------------------------------------------------------------- 1 | from 2 | from import x 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/function_def_missing_return_type.py: -------------------------------------------------------------------------------- 1 | def foo() -> : ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/function_def_unclosed_type_param_list.py: -------------------------------------------------------------------------------- 1 | def foo[T1, *T2(a, b): 2 | return a + b 3 | x = 10 4 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/global_stmt_empty.py: -------------------------------------------------------------------------------- 1 | global 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/global_stmt_expression.py: -------------------------------------------------------------------------------- 1 | global x + 1 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/if_stmt_empty_body.py: -------------------------------------------------------------------------------- 1 | if True: 2 | 1 + 1 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/if_stmt_missing_test.py: -------------------------------------------------------------------------------- 1 | if : ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/import_alias_missing_asname.py: -------------------------------------------------------------------------------- 1 | import x as 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/import_stmt_empty.py: -------------------------------------------------------------------------------- 1 | import 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_classify_as_keyword.py: -------------------------------------------------------------------------------- 1 | match yield foo: 2 | case _: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_classify_as_keyword_or_identifier.py: -------------------------------------------------------------------------------- 1 | match *foo: # Keyword 2 | case _: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_expected_colon.py: -------------------------------------------------------------------------------- 1 | match [1, 2] 2 | case _: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_stmt_expect_indented_block.py: -------------------------------------------------------------------------------- 1 | match foo: 2 | case _: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_stmt_missing_guard_expr.py: -------------------------------------------------------------------------------- 1 | match x: 2 | case y if: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_stmt_missing_pattern.py: -------------------------------------------------------------------------------- 1 | match x: 2 | case : ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_stmt_no_newline_before_case.py: -------------------------------------------------------------------------------- 1 | match foo: case _: ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/match_stmt_single_starred_subject.py: -------------------------------------------------------------------------------- 1 | match *foo: 2 | case _: ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/nonlocal_stmt_empty.py: -------------------------------------------------------------------------------- 1 | nonlocal 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/nonlocal_stmt_expression.py: -------------------------------------------------------------------------------- 1 | nonlocal x + 1 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/params_kwarg_after_star_separator.py: -------------------------------------------------------------------------------- 1 | def foo(*, **kwargs): ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/params_non_default_after_default.py: -------------------------------------------------------------------------------- 1 | def foo(a=10, b, c: int): ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/params_var_keyword_with_default.py: -------------------------------------------------------------------------------- 1 | def foo(a, **kwargs={'b': 1, 'c': 2}): ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/params_var_positional_with_default.py: -------------------------------------------------------------------------------- 1 | def foo(a, *args=(1, 2)): ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/err/simple_and_compound_stmt_on_same_line.py: -------------------------------------------------------------------------------- 1 | a; if b: pass; b 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/async_for_statement.py: -------------------------------------------------------------------------------- 1 | async for target in iter: ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/async_function_definition.py: -------------------------------------------------------------------------------- 1 | async def foo(): ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/async_with_statement.py: -------------------------------------------------------------------------------- 1 | async with item: ... 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/decorator_async_function.py: -------------------------------------------------------------------------------- 1 | @decorator 2 | async def foo(): ... 3 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/global_stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/inline/ok/global_stmt.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/lambda_with_no_parameters.py: -------------------------------------------------------------------------------- 1 | lambda: 1 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/match_as_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/inline/ok/match_as_pattern.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/match_classify_as_identifier_1.py: -------------------------------------------------------------------------------- 1 | match not in case 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/inline/ok/nonlocal_stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/inline/ok/nonlocal_stmt.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/arguments/missing_argument.py: -------------------------------------------------------------------------------- 1 | call(x,,y) -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/arguments/missing_comma.py: -------------------------------------------------------------------------------- 1 | call(x y) -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/arguments/unclosed_0.py: -------------------------------------------------------------------------------- 1 | call( 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/arguments/unclosed_1.py: -------------------------------------------------------------------------------- 1 | call(x 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/arguments/unclosed_2.py: -------------------------------------------------------------------------------- 1 | call(x, 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/attribute/invalid_member.py: -------------------------------------------------------------------------------- 1 | x.1 2 | x.1.0 3 | x.[0] 4 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/invalid_rhs_expression.py: -------------------------------------------------------------------------------- 1 | x + lambda y: y 2 | 3 | x - yield y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/missing_lhs.py: -------------------------------------------------------------------------------- 1 | / y 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/missing_rhs_0.py: -------------------------------------------------------------------------------- 1 | 0 + 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/missing_rhs_1.py: -------------------------------------------------------------------------------- 1 | 1 + 2 - 3 * 2 | 3 | 4 + 5 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/multiple_ops.py: -------------------------------------------------------------------------------- 1 | x++ 2 | 1 + 2 3 | x-- 4 | 1 - 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bin_op/starred_expression.py: -------------------------------------------------------------------------------- 1 | x + *y 2 | x ** *y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bool_op/invalid_rhs_expression.py: -------------------------------------------------------------------------------- 1 | x and lambda y: y 2 | 3 | x or yield y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bool_op/missing_lhs.py: -------------------------------------------------------------------------------- 1 | and y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bool_op/missing_rhs.py: -------------------------------------------------------------------------------- 1 | x and 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/bool_op/starred_expression.py: -------------------------------------------------------------------------------- 1 | x and *y 2 | x or *y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/compare/invalid_rhs_expression.py: -------------------------------------------------------------------------------- 1 | x not in lambda y: y 2 | 3 | x == yield y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/compare/missing_lhs.py: -------------------------------------------------------------------------------- 1 | > y 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/compare/missing_rhs_0.py: -------------------------------------------------------------------------------- 1 | x > 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/compare/missing_rhs_2.py: -------------------------------------------------------------------------------- 1 | x is not 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/dict/missing_closing_brace_0.py: -------------------------------------------------------------------------------- 1 | {x: 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/dict/missing_closing_brace_1.py: -------------------------------------------------------------------------------- 1 | {x: 2 | 3 | 1 + 2 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/dict/missing_closing_brace_2.py: -------------------------------------------------------------------------------- 1 | {x: 1, 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/emoji_statement.py: -------------------------------------------------------------------------------- 1 | 👍 2 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/lambda_default_parameters.py: -------------------------------------------------------------------------------- 1 | lambda a, b=20, c: 1 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/named/missing_expression_1.py: -------------------------------------------------------------------------------- 1 | # EOF after the `:=` token 2 | 3 | (x := -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/subscript/unclosed_slice_0.py: -------------------------------------------------------------------------------- 1 | x[: 2 | 3 | x + y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/subscript/unclosed_slice_1.py: -------------------------------------------------------------------------------- 1 | x[:: 2 | 3 | def foo(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/unary.py: -------------------------------------------------------------------------------- 1 | not x := 1 -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/unary/no_expression_0.py: -------------------------------------------------------------------------------- 1 | not 2 | 3 | x + y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/expressions/unary/no_expression_1.py: -------------------------------------------------------------------------------- 1 | + 2 | 3 | x + y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/re_lexing/line_continuation_1.py: -------------------------------------------------------------------------------- 1 | call(a, b, \\\ 2 | 3 | def bar(): 4 | pass 5 | -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/re_lexing/line_continuation_windows_eol.py: -------------------------------------------------------------------------------- 1 | call(a, b, # comment \ 2 | 3 | def bar(): 4 | pass -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar.py: -------------------------------------------------------------------------------- 1 | with (: 2 | 3 | x + y -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/invalid/statements/with/unclosed_ambiguous_lpar_eof.py: -------------------------------------------------------------------------------- 1 | with ( -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/await.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/await.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/bin_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/bin_op.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/bool_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/bool_op.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/call.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/compare.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/f_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/f_string.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/if.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/lambda.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/list.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/name.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/named.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/named.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/set.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/slice.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/starred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/starred.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/string.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/tuple.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/unary_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/unary_op.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/expressions/yield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/expressions/yield.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/other/atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/other/atom.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/other/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/other/decorator.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/assert.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/assignment.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/class.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/delete.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/for.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/function.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/if.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/import.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/match.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/raise.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/return.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/simple.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/try.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/type.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/while.py -------------------------------------------------------------------------------- /crates/sith_python_parser/resources/valid/statement/with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/resources/valid/statement/with.py -------------------------------------------------------------------------------- /crates/sith_python_parser/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/error.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/lexer.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/lexer/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/lexer/cursor.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/lexer/fstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/lexer/fstring.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/lexer/indentation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/lexer/indentation.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/expression.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/helpers.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/mod.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/pattern.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/progress.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/recovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/recovery.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/statement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/statement.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests/context.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests/function.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests/invalid_assignments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests/invalid_assignments.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests/parser.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/parser/tests/suite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/parser/tests/suite.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/string.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/token.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/token_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/token_set.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/src/token_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/src/token_source.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/tests/fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/tests/fixtures.rs -------------------------------------------------------------------------------- /crates/sith_python_parser/tests/generate_inline_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_parser/tests/generate_inline_tests.rs -------------------------------------------------------------------------------- /crates/sith_python_utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_utils/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_python_utils/src/interpreter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_utils/src/interpreter.rs -------------------------------------------------------------------------------- /crates/sith_python_utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_utils/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_python_utils/src/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_python_utils/src/nodes.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/foo/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/resources/tests/fixtures/foo/bar.py -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/foo/baz/__init__.py: -------------------------------------------------------------------------------- 1 | BAZ = 1 2 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/foo/baz/test.py: -------------------------------------------------------------------------------- 1 | TEST = 1 2 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/resources/tests/fixtures/foobar.py -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/small_project/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/small_project/tim/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.1.0' 2 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/small_project/tim/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/resources/tests/fixtures/small_project/tim/api/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/builtins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/builtins.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/db.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/declaration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/declaration.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/indexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/indexer.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/mro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/mro.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/scope.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/symbol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/symbol.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/symbol_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/symbol_table.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/type_inference.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/type_inference.rs -------------------------------------------------------------------------------- /crates/sith_semantic_model/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_semantic_model/src/util.rs -------------------------------------------------------------------------------- /crates/sith_server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_server/resources/test/fixtures/pandas_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/resources/test/fixtures/pandas_html.py -------------------------------------------------------------------------------- /crates/sith_server/resources/test/fixtures/settings/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /crates/sith_server/src/edit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/edit.rs -------------------------------------------------------------------------------- /crates/sith_server/src/edit/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/edit/convert.rs -------------------------------------------------------------------------------- /crates/sith_server/src/edit/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/edit/document.rs -------------------------------------------------------------------------------- /crates/sith_server/src/edit/fix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/edit/fix.rs -------------------------------------------------------------------------------- /crates/sith_server/src/edit/replacement.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/edit/replacement.rs -------------------------------------------------------------------------------- /crates/sith_server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_server/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/message.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/diagnostics.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications/cancel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications/cancel.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications/did_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications/did_change.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications/did_close.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications/did_close.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications/did_open.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications/did_open.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/notifications/set_trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/notifications/set_trace.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/code_action.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/code_action.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/code_action_resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/code_action_resolve.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/completion.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/completion/resolve.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/completion/resolve.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/diagnostic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/diagnostic.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/document_highlight.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/document_highlight.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/document_symbol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/document_symbol.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/execute_command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/execute_command.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/format.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/goto_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/goto_definition.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/hover.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/prepare_rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/prepare_rename.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/references.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/rename.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/requests/signature_help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/requests/signature_help.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/tests/goto_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/tests/goto_definition.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/tests/lsp_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/tests/lsp_client.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/tests/mod.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/tests/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/tests/references.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/api/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/api/traits.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/client.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/connection.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/schedule.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/schedule/task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/schedule/task.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/schedule/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/schedule/thread.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/schedule/thread/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/schedule/thread/pool.rs -------------------------------------------------------------------------------- /crates/sith_server/src/server/schedule/thread/priority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/server/schedule/thread/priority.rs -------------------------------------------------------------------------------- /crates/sith_server/src/session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/session.rs -------------------------------------------------------------------------------- /crates/sith_server/src/session/capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/session/capabilities.rs -------------------------------------------------------------------------------- /crates/sith_server/src/session/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/session/settings.rs -------------------------------------------------------------------------------- /crates/sith_server/src/session/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/session/workspace.rs -------------------------------------------------------------------------------- /crates/sith_server/src/trace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/trace.rs -------------------------------------------------------------------------------- /crates/sith_server/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/util.rs -------------------------------------------------------------------------------- /crates/sith_server/src/util/ruff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/src/util/ruff.rs -------------------------------------------------------------------------------- /crates/sith_server/tests/document.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_server/tests/document.rs -------------------------------------------------------------------------------- /crates/sith_vendored/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/Cargo.toml -------------------------------------------------------------------------------- /crates/sith_vendored/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/build.rs -------------------------------------------------------------------------------- /crates/sith_vendored/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/src/lib.rs -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/LICENSE -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/README.md -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/source_commit.txt: -------------------------------------------------------------------------------- 1 | 114409d49b43ba62a179ebb856fa70a5161f751e 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/VERSIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/VERSIONS -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/__future__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/__future__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/__main__.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_ast.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_ast.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_bisect.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_bisect.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_bootlocale.pyi: -------------------------------------------------------------------------------- 1 | def getpreferredencoding(do_setlocale: bool = True) -> str: ... 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_codecs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_codecs.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_collections_abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_collections_abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_compat_pickle.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_compat_pickle.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_compression.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_compression.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_csv.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_csv.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_ctypes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_ctypes.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_curses.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_curses.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_decimal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_decimal.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_dummy_thread.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_dummy_thread.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_dummy_threading.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_dummy_threading.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_heapq.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_heapq.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_imp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_imp.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_json.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_json.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_locale.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_locale.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_lsprof.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_lsprof.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_markupbase.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_markupbase.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_msi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_msi.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_operator.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_operator.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_osx_support.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_osx_support.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_posixsubprocess.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_posixsubprocess.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_py_abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_py_abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_pydecimal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_pydecimal.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_random.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_random.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_sitebuiltins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_sitebuiltins.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_socket.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_socket.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_stat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_stat.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_thread.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_thread.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_threading_local.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_threading_local.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_tkinter.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_tkinter.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_tracemalloc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_tracemalloc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/README.md -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/dbapi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/dbapi.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/wsgi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/wsgi.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/xml.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_typeshed/xml.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_warnings.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_warnings.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_weakref.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_weakref.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_weakrefset.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_weakrefset.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/_winapi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/_winapi.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/aifc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/aifc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/antigravity.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/antigravity.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/argparse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/argparse.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/array.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/array.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ast.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ast.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asynchat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asynchat.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/constants.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/constants.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/events.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/events.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/futures.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/futures.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/locks.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/locks.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/log.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/log.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/mixins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/mixins.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/protocols.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/protocols.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/queues.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/queues.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/runners.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/runners.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/sslproto.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/sslproto.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/staggered.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/staggered.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/streams.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/streams.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/tasks.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/tasks.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/threads.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/threads.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/timeouts.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/timeouts.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncio/trsock.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncio/trsock.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/asyncore.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/asyncore.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/atexit.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/atexit.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/audioop.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/audioop.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/base64.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/base64.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/bdb.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/bdb.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/binascii.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/binascii.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/binhex.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/binhex.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/bisect.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/bisect.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/builtins.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/builtins.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/bz2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/bz2.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/cProfile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/cProfile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/calendar.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/calendar.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/cgi.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/cgi.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/cgitb.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/cgitb.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/chunk.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/chunk.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/cmath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/cmath.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/cmd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/cmd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/code.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/code.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/codecs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/codecs.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/codeop.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/codeop.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/collections/abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/collections/abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/colorsys.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/colorsys.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/compileall.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/compileall.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/concurrent/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/configparser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/configparser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/contextlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/contextlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/contextvars.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/contextvars.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/copy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/copy.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/copyreg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/copyreg.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/crypt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/crypt.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/csv.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/csv.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ctypes/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ctypes/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ctypes/_endian.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ctypes/_endian.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ctypes/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ctypes/util.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ctypes/wintypes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ctypes/wintypes.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/curses/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/curses/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/curses/ascii.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/curses/ascii.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/curses/has_key.pyi: -------------------------------------------------------------------------------- 1 | def has_key(ch: int | str) -> bool: ... 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/curses/panel.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/curses/panel.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/curses/textpad.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/curses/textpad.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dataclasses.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dataclasses.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/datetime.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/datetime.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dbm/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dbm/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dbm/dumb.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dbm/dumb.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dbm/gnu.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dbm/gnu.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dbm/ndbm.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dbm/ndbm.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/decimal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/decimal.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/difflib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/difflib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dis.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dis.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/cmd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/cmd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/command/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/command/bdist_packager.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/config.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/config.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/core.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/core.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/debug.pyi: -------------------------------------------------------------------------------- 1 | DEBUG: bool | None 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/dist.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/dist.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/errors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/errors.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/log.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/log.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/spawn.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/spawn.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/util.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/distutils/version.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/distutils/version.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/doctest.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/doctest.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/dummy_threading.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/dummy_threading.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/_policybase.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/_policybase.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/base64mime.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/base64mime.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/charset.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/charset.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/encoders.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/encoders.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/errors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/errors.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/feedparser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/feedparser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/generator.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/generator.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/header.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/header.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/iterators.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/iterators.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/message.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/message.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/mime/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/mime/audio.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/mime/audio.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/mime/base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/mime/base.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/mime/image.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/mime/image.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/mime/text.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/mime/text.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/parser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/policy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/policy.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/quoprimime.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/quoprimime.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/email/utils.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/email/utils.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/encodings/utf_8.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/encodings/utf_8.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/enum.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/enum.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/errno.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/errno.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/faulthandler.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/faulthandler.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/fcntl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/fcntl.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/filecmp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/filecmp.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/fileinput.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/fileinput.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/fnmatch.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/fnmatch.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/formatter.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/formatter.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/fractions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/fractions.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ftplib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ftplib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/functools.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/functools.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/gc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/gc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/genericpath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/genericpath.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/getopt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/getopt.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/getpass.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/getpass.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/gettext.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/gettext.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/glob.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/glob.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/graphlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/graphlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/grp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/grp.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/gzip.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/gzip.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/hashlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/hashlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/heapq.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/heapq.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/hmac.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/hmac.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/html/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/html/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/html/entities.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/html/entities.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/html/parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/html/parser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/http/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/http/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/http/client.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/http/client.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/http/cookiejar.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/http/cookiejar.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/http/cookies.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/http/cookies.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/http/server.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/http/server.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/imaplib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/imaplib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/imghdr.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/imghdr.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/imp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/imp.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/importlib/_abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/importlib/_abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/importlib/abc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/importlib/abc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/importlib/readers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/importlib/readers.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/importlib/simple.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/importlib/simple.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/importlib/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/importlib/util.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/inspect.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/inspect.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/io.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/io.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ipaddress.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ipaddress.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/itertools.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/itertools.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/json/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/json/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/json/decoder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/json/decoder.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/json/encoder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/json/encoder.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/json/tool.pyi: -------------------------------------------------------------------------------- 1 | def main() -> None: ... 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/keyword.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/keyword.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/fixes/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/main.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/main.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/pygram.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/pygram.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/pytree.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/pytree.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/refactor.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/lib2to3/refactor.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/linecache.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/linecache.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/locale.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/locale.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/logging/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/logging/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/logging/config.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/logging/config.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/logging/handlers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/logging/handlers.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/lzma.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/lzma.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/mailbox.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/mailbox.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/mailcap.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/mailcap.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/marshal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/marshal.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/math.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/math.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/mimetypes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/mimetypes.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/mmap.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/mmap.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/modulefinder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/modulefinder.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/msilib/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/msilib/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/msilib/schema.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/msilib/schema.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/msilib/sequence.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/msilib/sequence.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/msilib/text.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/msilib/text.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/msvcrt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/msvcrt.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/netrc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/netrc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/nis.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/nis.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/nntplib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/nntplib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/nt.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/nt.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ntpath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ntpath.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/nturl2path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/nturl2path.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/numbers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/numbers.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/opcode.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/opcode.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/operator.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/operator.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/optparse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/optparse.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/os/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/os/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/os/path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/os/path.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ossaudiodev.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ossaudiodev.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/parser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/parser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pathlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pathlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pdb.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pdb.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pickle.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pickle.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pickletools.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pickletools.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pipes.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pipes.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pkgutil.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pkgutil.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/platform.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/platform.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/plistlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/plistlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/poplib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/poplib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/posix.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/posix.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/posixpath.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/posixpath.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pprint.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pprint.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/profile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/profile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pstats.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pstats.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pty.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pty.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pwd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pwd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/py_compile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/py_compile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pyclbr.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pyclbr.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pydoc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pydoc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pydoc_data/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pydoc_data/topics.pyi: -------------------------------------------------------------------------------- 1 | topics: dict[str, str] 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/errors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/errors.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/model.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/pyexpat/model.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/queue.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/queue.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/quopri.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/quopri.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/random.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/random.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/re.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/re.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/readline.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/readline.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/reprlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/reprlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/resource.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/resource.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/rlcompleter.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/rlcompleter.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/runpy.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/runpy.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sched.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sched.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/secrets.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/secrets.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/select.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/select.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/selectors.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/selectors.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/shelve.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/shelve.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/shlex.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/shlex.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/shutil.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/shutil.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/signal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/signal.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/site.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/site.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/smtpd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/smtpd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/smtplib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/smtplib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sndhdr.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sndhdr.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/socket.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/socket.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/socketserver.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/socketserver.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/spwd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/spwd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sqlite3/__init__.pyi: -------------------------------------------------------------------------------- 1 | from sqlite3.dbapi2 import * 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sqlite3/dbapi2.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sre_compile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sre_compile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sre_constants.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sre_constants.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sre_parse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sre_parse.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/ssl.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/ssl.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/stat.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/stat.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/statistics.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/statistics.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/string.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/string.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/stringprep.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/stringprep.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/struct.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/struct.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/subprocess.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/subprocess.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sunau.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sunau.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/symbol.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/symbol.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/symtable.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/symtable.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sys/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sys/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sys/_monitoring.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sys/_monitoring.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/sysconfig.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/sysconfig.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/syslog.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/syslog.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tabnanny.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tabnanny.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tarfile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tarfile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/telnetlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/telnetlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tempfile.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tempfile.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/termios.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/termios.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/textwrap.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/textwrap.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/this.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/this.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/threading.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/threading.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/time.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/time.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/timeit.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/timeit.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/constants.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/constants.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/dialog.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/dialog.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/dnd.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/dnd.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/font.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/font.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/tix.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/tix.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tkinter/ttk.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tkinter/ttk.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/token.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/token.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tokenize.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tokenize.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tomllib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tomllib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/trace.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/trace.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/traceback.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/traceback.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tracemalloc.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tracemalloc.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/tty.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/tty.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/turtle.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/turtle.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/types.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/typing.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/typing_extensions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/typing_extensions.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unicodedata.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unicodedata.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/_log.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/_log.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/case.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/case.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/loader.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/loader.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/main.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/main.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/mock.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/mock.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/result.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/result.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/runner.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/runner.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/signals.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/signals.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/suite.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/suite.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/unittest/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/unittest/util.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/urllib/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/urllib/error.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/urllib/error.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/urllib/parse.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/urllib/parse.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/urllib/request.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/urllib/request.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/urllib/response.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/urllib/response.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/uu.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/uu.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/uuid.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/uuid.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/warnings.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/warnings.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/wave.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/wave.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/weakref.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/weakref.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/webbrowser.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/webbrowser.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/winreg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/winreg.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/winsound.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/winsound.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/wsgiref/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/wsgiref/types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/wsgiref/types.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/wsgiref/util.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/wsgiref/util.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xdrlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xdrlib.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xml/__init__.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/dom/domreg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xml/dom/domreg.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/etree/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/etree/cElementTree.pyi: -------------------------------------------------------------------------------- 1 | from xml.etree.ElementTree import * 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/parsers/expat/__init__.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat import * 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/parsers/expat/errors.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.errors import * 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xml/parsers/expat/model.pyi: -------------------------------------------------------------------------------- 1 | from pyexpat.model import * 2 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xmlrpc/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xmlrpc/client.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xmlrpc/client.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xmlrpc/server.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xmlrpc/server.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/xxlimited.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/xxlimited.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/zipapp.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/zipapp.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/zipfile/_path.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/zipfile/_path.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/zipimport.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/zipimport.pyi -------------------------------------------------------------------------------- /crates/sith_vendored/vendor/typeshed/stdlib/zlib.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/crates/sith_vendored/vendor/typeshed/stdlib/zlib.pyi -------------------------------------------------------------------------------- /editors/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /editors/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /editors/vscode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/.vscode/tasks.json -------------------------------------------------------------------------------- /editors/vscode/.vscodeignore: -------------------------------------------------------------------------------- 1 | **/node_modules/ 2 | -------------------------------------------------------------------------------- /editors/vscode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/LICENSE -------------------------------------------------------------------------------- /editors/vscode/bundled/tool/find_binary_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/bundled/tool/find_binary_path.py -------------------------------------------------------------------------------- /editors/vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/package-lock.json -------------------------------------------------------------------------------- /editors/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/package.json -------------------------------------------------------------------------------- /editors/vscode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/extension.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/commands.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/constants.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/fs.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/logger.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/settings.ts -------------------------------------------------------------------------------- /editors/vscode/src/utils/vscodeapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/src/utils/vscodeapi.ts -------------------------------------------------------------------------------- /editors/vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaBatata101/sith-language-server/HEAD/editors/vscode/tsconfig.json --------------------------------------------------------------------------------