├── .cargo └── config.toml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── new-feature.md └── workflows │ ├── ci.yml │ ├── docs.yml │ ├── release-amxxpawn.yml │ └── release.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── crates ├── base-db │ ├── Cargo.toml │ └── src │ │ ├── change.rs │ │ ├── graph.rs │ │ ├── include.rs │ │ ├── input.rs │ │ └── lib.rs ├── completion-data │ ├── Cargo.toml │ ├── data │ │ └── events.json.gz │ └── src │ │ └── lib.rs ├── flycheck │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── spcomp.rs ├── hir-def │ ├── Cargo.toml │ └── src │ │ ├── ast_id_map.rs │ │ ├── body.rs │ │ ├── body │ │ ├── lower.rs │ │ └── scope.rs │ │ ├── child_by_source.rs │ │ ├── data.rs │ │ ├── db.rs │ │ ├── diagnostics.rs │ │ ├── dyn_map.rs │ │ ├── dyn_map │ │ └── keys.rs │ │ ├── hir.rs │ │ ├── hir │ │ └── type_ref.rs │ │ ├── infer.rs │ │ ├── item_tree.rs │ │ ├── item_tree │ │ ├── lower.rs │ │ └── pretty.rs │ │ ├── lib.rs │ │ ├── resolver.rs │ │ └── src.rs ├── hir │ ├── Cargo.toml │ └── src │ │ ├── db.rs │ │ ├── diagnostics.rs │ │ ├── from_id.rs │ │ ├── has_source.rs │ │ ├── lib.rs │ │ ├── semantics.rs │ │ ├── source_analyzer.rs │ │ └── source_to_def.rs ├── ide-db │ ├── Cargo.toml │ └── src │ │ ├── call_item.rs │ │ ├── documentation.rs │ │ ├── lib.rs │ │ ├── source_change.rs │ │ └── symbols.rs ├── ide-diagnostics │ ├── Cargo.toml │ └── src │ │ ├── handlers.rs │ │ ├── handlers │ │ ├── inactive_code.rs │ │ ├── incorrect_number_of_arguments.rs │ │ ├── invalid_use_of_this.rs │ │ ├── preprocessor_evaluation_error.rs │ │ ├── unresolved_constructor.rs │ │ ├── unresolved_field.rs │ │ ├── unresolved_include.rs │ │ ├── unresolved_inherit.rs │ │ ├── unresolved_macro.rs │ │ ├── unresolved_method_call.rs │ │ └── unresolved_named_arg.rs │ │ ├── lib.rs │ │ └── queries.rs ├── ide │ ├── Cargo.toml │ └── src │ │ ├── call_hierarchy.rs │ │ ├── completion.rs │ │ ├── completion │ │ ├── defaults.rs │ │ ├── documentation.rs │ │ ├── includes.rs │ │ └── item.rs │ │ ├── events.rs │ │ ├── goto_definition.rs │ │ ├── hover.rs │ │ ├── hover │ │ ├── actions.rs │ │ └── render.rs │ │ ├── lib.rs │ │ ├── markup.rs │ │ ├── prime_caches.rs │ │ ├── references.rs │ │ ├── rename.rs │ │ ├── signature_help.rs │ │ ├── status.rs │ │ ├── symbols.rs │ │ └── syntax_highlighting.rs ├── paths │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── preprocessor │ ├── Cargo.toml │ ├── benches │ │ └── bench_main.rs │ ├── src │ │ ├── buffer.rs │ │ ├── conditions.rs │ │ ├── db.rs │ │ ├── errors.rs │ │ ├── evaluator.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── offset.rs │ │ ├── preprocessor_operator.rs │ │ ├── result.rs │ │ ├── symbol.rs │ │ └── test.rs │ └── tests │ │ ├── main.rs │ │ └── snapshots │ │ ├── main__define_1-2.snap │ │ ├── main__define_1.snap │ │ ├── main__define_expansion_1-2.snap │ │ ├── main__define_expansion_1.snap │ │ ├── main__define_expansion_2-2.snap │ │ ├── main__define_expansion_2.snap │ │ ├── main__define_expansion_comment_1-2.snap │ │ ├── main__define_expansion_comment_1.snap │ │ ├── main__define_expansion_comment_2-2.snap │ │ ├── main__define_expansion_comment_2.snap │ │ ├── main__define_expansion_comment_3-2.snap │ │ ├── main__define_expansion_comment_3.snap │ │ ├── main__define_expansion_comment_4-2.snap │ │ ├── main__define_expansion_comment_4.snap │ │ ├── main__define_expansion_comment_5-2.snap │ │ ├── main__define_expansion_comment_5.snap │ │ ├── main__define_expansion_line_continuation_1-2.snap │ │ ├── main__define_expansion_line_continuation_1.snap │ │ ├── main__define_expansion_line_continuation_2-2.snap │ │ ├── main__define_expansion_line_continuation_2.snap │ │ ├── main__define_expansion_nested_1-2.snap │ │ ├── main__define_expansion_nested_1.snap │ │ ├── main__define_expansion_nested_2-2.snap │ │ ├── main__define_expansion_nested_2.snap │ │ ├── main__define_expansion_nested_3-2.snap │ │ ├── main__define_expansion_nested_3.snap │ │ ├── main__define_expansion_nested_4-2.snap │ │ ├── main__define_expansion_nested_4.snap │ │ ├── main__define_trailing_comment_1-2.snap │ │ ├── main__define_trailing_comment_1.snap │ │ ├── main__define_trailing_comment_3-2.snap │ │ ├── main__define_trailing_comment_3.snap │ │ ├── main__define_undef_1-2.snap │ │ ├── main__define_undef_1.snap │ │ ├── main__elseif_directive_expansion_1-2.snap │ │ ├── main__elseif_directive_expansion_1.snap │ │ ├── main__elseif_directive_expansion_2-2.snap │ │ ├── main__elseif_directive_expansion_2.snap │ │ ├── main__elseif_directive_expansion_3-2.snap │ │ ├── main__elseif_directive_expansion_3.snap │ │ ├── main__elseif_directive_expansion_4-2.snap │ │ ├── main__elseif_directive_expansion_4.snap │ │ ├── main__elseif_directive_expansion_5-2.snap │ │ ├── main__elseif_directive_expansion_5.snap │ │ ├── main__if_directive_defined-2.snap │ │ ├── main__if_directive_defined.snap │ │ ├── main__if_directive_defined_complex_1-2.snap │ │ ├── main__if_directive_defined_complex_1.snap │ │ ├── main__if_directive_defined_complex_2-2.snap │ │ ├── main__if_directive_defined_complex_2.snap │ │ ├── main__if_directive_defined_complex_3-2.snap │ │ ├── main__if_directive_defined_complex_3.snap │ │ ├── main__if_directive_defined_complex_4-2.snap │ │ ├── main__if_directive_defined_complex_4.snap │ │ ├── main__if_directive_defined_complex_5-2.snap │ │ ├── main__if_directive_defined_complex_5.snap │ │ ├── main__if_directive_defined_complex_6-2.snap │ │ ├── main__if_directive_defined_complex_6.snap │ │ ├── main__if_directive_defined_complex_7-2.snap │ │ ├── main__if_directive_defined_complex_7.snap │ │ ├── main__if_directive_defined_complex_8-2.snap │ │ ├── main__if_directive_defined_complex_8.snap │ │ ├── main__if_directive_expansion_1-2.snap │ │ ├── main__if_directive_expansion_1.snap │ │ ├── main__if_directive_expansion_2-2.snap │ │ ├── main__if_directive_expansion_2.snap │ │ ├── main__if_directive_expansion_3-2.snap │ │ ├── main__if_directive_expansion_3.snap │ │ ├── main__if_directive_nested_expansion_1-2.snap │ │ ├── main__if_directive_nested_expansion_1.snap │ │ ├── main__if_directive_nested_expansion_2-2.snap │ │ ├── main__if_directive_nested_expansion_2.snap │ │ ├── main__if_directive_nested_expansion_infinite_loop_1-2.snap │ │ ├── main__if_directive_nested_expansion_infinite_loop_1.snap │ │ ├── main__include_directive_1-2.snap │ │ ├── main__include_directive_1.snap │ │ ├── main__include_directive_2-2.snap │ │ ├── main__include_directive_2.snap │ │ ├── main__include_directive_3-2.snap │ │ ├── main__include_directive_3.snap │ │ ├── main__macro_expansion_1-2.snap │ │ ├── main__macro_expansion_1.snap │ │ ├── main__macro_expansion_2-2.snap │ │ ├── main__macro_expansion_2.snap │ │ ├── main__macro_expansion_3-2.snap │ │ ├── main__macro_expansion_3.snap │ │ ├── main__macro_expansion_4-2.snap │ │ ├── main__macro_expansion_4.snap │ │ ├── main__macro_expansion_5-2.snap │ │ ├── main__macro_expansion_5.snap │ │ ├── main__macro_expansion_6-2.snap │ │ ├── main__macro_expansion_6.snap │ │ ├── main__macro_expansion_7-2.snap │ │ ├── main__macro_expansion_7.snap │ │ ├── main__macro_no_expansion_1-2.snap │ │ ├── main__macro_no_expansion_1.snap │ │ ├── main__macro_no_expansion_2-2.snap │ │ ├── main__macro_no_expansion_2.snap │ │ ├── main__macro_no_expansion_3-2.snap │ │ ├── main__macro_no_expansion_3.snap │ │ ├── main__macro_no_expansion_4-2.snap │ │ ├── main__macro_no_expansion_4.snap │ │ ├── main__multiline_block_comment_1-2.snap │ │ ├── main__multiline_block_comment_1.snap │ │ ├── main__multiline_block_comment_2-2.snap │ │ ├── main__multiline_block_comment_2.snap │ │ ├── main__no_preprocessor_directives-2.snap │ │ ├── main__no_preprocessor_directives.snap │ │ ├── main__stringizing_1-2.snap │ │ ├── main__stringizing_1.snap │ │ ├── main__stringizing_2-2.snap │ │ ├── main__stringizing_2.snap │ │ ├── main__stringizing_3-2.snap │ │ ├── main__stringizing_3.snap │ │ ├── main__stringizing_4-2.snap │ │ └── main__stringizing_4.snap ├── profile │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── memory_usage.rs ├── sourcepawn-studio │ ├── Cargo.toml │ ├── benches │ │ └── bench_main.rs │ ├── src │ │ ├── capabilities.rs │ │ ├── client.rs │ │ ├── config.rs │ │ ├── diagnostics.rs │ │ ├── diagnostics │ │ │ └── to_proto.rs │ │ ├── dispatch.rs │ │ ├── fixture.rs │ │ ├── global_state.rs │ │ ├── handlers │ │ │ ├── notification.rs │ │ │ └── request.rs │ │ ├── lib.rs │ │ ├── line_index.rs │ │ ├── lsp.rs │ │ ├── lsp │ │ │ ├── ext.rs │ │ │ ├── from_proto.rs │ │ │ ├── semantic_tokens.rs │ │ │ ├── to_proto.rs │ │ │ └── utils.rs │ │ ├── main.rs │ │ ├── main_loop.rs │ │ ├── mem_docs.rs │ │ ├── op_queue.rs │ │ ├── progress.rs │ │ ├── reload.rs │ │ ├── task_pool.rs │ │ └── version.rs │ ├── test_data │ │ ├── sourcemod.zip │ │ └── surftimer.zip │ └── tests │ │ ├── main.rs │ │ └── text_document │ │ ├── completion │ │ ├── include.rs │ │ ├── macros.rs │ │ ├── mod.rs │ │ ├── snapshots │ │ │ ├── main__text_document__completion__include__include_1.snap │ │ │ ├── main__text_document__completion__include__include_2.snap │ │ │ ├── main__text_document__completion__include__include_3.snap │ │ │ ├── main__text_document__completion__include__include_4.snap │ │ │ ├── main__text_document__completion__include__include_5.snap │ │ │ ├── main__text_document__completion__include__include_6.snap │ │ │ ├── main__text_document__completion__macros__macro_negative_offset_global_scope.snap │ │ │ ├── main__text_document__completion__macros__macro_positive_offset_global_scope.snap │ │ │ ├── main__text_document__completion__variables__function_parameter.snap │ │ │ ├── main__text_document__completion__variables__global_variable_1.snap │ │ │ ├── main__text_document__completion__variables__global_variable_2.snap │ │ │ ├── main__text_document__completion__variables__global_variable_3.snap │ │ │ ├── main__text_document__completion__variables__global_variable_circular_include_1.snap │ │ │ ├── main__text_document__completion__variables__global_variable_in_function.snap │ │ │ ├── main__text_document__completion__variables__global_variable_in_function_block.snap │ │ │ ├── main__text_document__completion__variables__global_variable_include_1.snap │ │ │ ├── main__text_document__completion__variables__local_variable_for_loop.snap │ │ │ ├── main__text_document__completion__variables__local_variable_in_function.snap │ │ │ ├── main__text_document__completion__variables__local_variable_in_other_function.snap │ │ │ └── main__text_document__completion__variables__local_variable_outside_function.snap │ │ └── variables.rs │ │ ├── goto_definition │ │ ├── arrays.rs │ │ ├── enum_structs.rs │ │ ├── enums.rs │ │ ├── function_declarations.rs │ │ ├── functions.rs │ │ ├── macros.rs │ │ ├── methodmaps.rs │ │ ├── mod.rs │ │ ├── snapshots │ │ │ ├── main__text_document__goto_definition__arrays__array_declaration_1.snap │ │ │ ├── main__text_document__goto_definition__arrays__array_declaration_2.snap │ │ │ ├── main__text_document__goto_definition__arrays__array_indexed_access_1.snap │ │ │ ├── main__text_document__goto_definition__arrays__array_indexed_access_2.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_1.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_2.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_3.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_4.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_method_1.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_method_2.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_method_3.snap │ │ │ ├── main__text_document__goto_definition__enum_struct_method_4.snap │ │ │ ├── main__text_document__goto_definition__enum_structs__enum_struct_scope_access_1.snap │ │ │ ├── main__text_document__goto_definition__enums__anon_enum_1.snap │ │ │ ├── main__text_document__goto_definition__enums__anon_enum_2.snap │ │ │ ├── main__text_document__goto_definition__enums__enum_1.snap │ │ │ ├── main__text_document__goto_definition__enums__enum_2.snap │ │ │ ├── main__text_document__goto_definition__enums__enum_3.snap │ │ │ ├── main__text_document__goto_definition__field_access_1.snap │ │ │ ├── main__text_document__goto_definition__field_access_2.snap │ │ │ ├── main__text_document__goto_definition__field_access_3.snap │ │ │ ├── main__text_document__goto_definition__function_1.snap │ │ │ ├── main__text_document__goto_definition__function_2.snap │ │ │ ├── main__text_document__goto_definition__function_declarations__forward_1.snap │ │ │ ├── main__text_document__goto_definition__function_declarations__forward_2.snap │ │ │ ├── main__text_document__goto_definition__function_declarations__native_1.snap │ │ │ ├── main__text_document__goto_definition__function_declarations__native_2.snap │ │ │ ├── main__text_document__goto_definition__function_parameter_1.snap │ │ │ ├── main__text_document__goto_definition__function_parameter_2.snap │ │ │ ├── main__text_document__goto_definition__function_parameter_3.snap │ │ │ ├── main__text_document__goto_definition__function_parameter_4.snap │ │ │ ├── main__text_document__goto_definition__functions__function_named_arg_1.snap │ │ │ ├── main__text_document__goto_definition__functions__function_named_arg_2.snap │ │ │ ├── main__text_document__goto_definition__functions__function_named_arg_3.snap │ │ │ ├── main__text_document__goto_definition__functions__function_named_arg_4.snap │ │ │ ├── main__text_document__goto_definition__functions__method_named_arg_1.snap │ │ │ ├── main__text_document__goto_definition__global_variable_1.snap │ │ │ ├── main__text_document__goto_definition__global_variable_2.snap │ │ │ ├── main__text_document__goto_definition__global_variable_3.snap │ │ │ ├── main__text_document__goto_definition__global_variable_4.snap │ │ │ ├── main__text_document__goto_definition__global_variable_5.snap │ │ │ ├── main__text_document__goto_definition__global_variable_6.snap │ │ │ ├── main__text_document__goto_definition__global_variable_7.snap │ │ │ ├── main__text_document__goto_definition__include_1.snap │ │ │ ├── main__text_document__goto_definition__include_2.snap │ │ │ ├── main__text_document__goto_definition__local_variable_1.snap │ │ │ ├── main__text_document__goto_definition__local_variable_2.snap │ │ │ ├── main__text_document__goto_definition__local_variable_3.snap │ │ │ ├── main__text_document__goto_definition__local_variable_4.snap │ │ │ ├── main__text_document__goto_definition__local_variable_5.snap │ │ │ ├── main__text_document__goto_definition__macros__define_1.snap │ │ │ ├── main__text_document__goto_definition__macros__define_2.snap │ │ │ ├── main__text_document__goto_definition__macros__define_3.snap │ │ │ ├── main__text_document__goto_definition__macros__define_4.snap │ │ │ ├── main__text_document__goto_definition__macros__define_in_function_scope.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_1.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_10.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_11.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_2.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_3.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_4.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_5.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_6.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_7.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_8.snap │ │ │ ├── main__text_document__goto_definition__macros__macro_9.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_disable_1.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_disable_2.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_disable_3.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_1.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_2.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_3.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_4.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_5.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_6.snap │ │ │ ├── main__text_document__goto_definition__macros__preprocessor_offsetting_7.snap │ │ │ ├── main__text_document__goto_definition__method_call_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_complex_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_constructor_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_constructor_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_constructor_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_destructor_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_inherit_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_inherit_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_inherit_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_inherit_4.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_4.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_5.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_6.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_7.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_method_8.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_native_method_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_native_method_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_new_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_new_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_getter_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_getter_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_getter_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_native_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_native_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_native_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_setter_1.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_setter_2.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_setter_3.snap │ │ │ ├── main__text_document__goto_definition__methodmaps__methodmap_property_setter_4.snap │ │ │ ├── main__text_document__goto_definition__statements__for_loop_1.snap │ │ │ ├── main__text_document__goto_definition__statements__for_loop_2.snap │ │ │ ├── main__text_document__goto_definition__statements__for_loop_3.snap │ │ │ ├── main__text_document__goto_definition__statements__for_loop_4.snap │ │ │ ├── main__text_document__goto_definition__statements__for_loop_5.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_declaration_1.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_declaration_2.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_definition_1.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_field_declaration_1.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_field_definition_1.snap │ │ │ ├── main__text_document__goto_definition__structs__struct_field_definition_2.snap │ │ │ ├── main__text_document__goto_definition__typedefs__funcenum_1.snap │ │ │ ├── main__text_document__goto_definition__typedefs__funcenum_2.snap │ │ │ ├── main__text_document__goto_definition__typedefs__funcenum_3.snap │ │ │ ├── main__text_document__goto_definition__typedefs__functag_1.snap │ │ │ ├── main__text_document__goto_definition__typedefs__functag_2.snap │ │ │ ├── main__text_document__goto_definition__typedefs__functag_3.snap │ │ │ ├── main__text_document__goto_definition__typedefs__functag_4.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typedef_1.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typedef_2.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typedef_3.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typedef_4.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typeset_1.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typeset_2.snap │ │ │ ├── main__text_document__goto_definition__typedefs__typeset_3.snap │ │ │ ├── main__text_document__goto_definition__variables__old_global_variable_1.snap │ │ │ ├── main__text_document__goto_definition__variables__old_global_variable_2.snap │ │ │ └── main__text_document__goto_definition__variables__old_global_variable_3.snap │ │ ├── statements.rs │ │ ├── structs.rs │ │ ├── typedefs.rs │ │ └── variables.rs │ │ ├── hover │ │ ├── enum_structs.rs │ │ ├── enums.rs │ │ ├── functions.rs │ │ ├── macros.rs │ │ ├── methodmaps.rs │ │ ├── mod.rs │ │ ├── snapshots │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_1.snap │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_2.snap │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_3.snap │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_4.snap │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_5.snap │ │ │ ├── main__text_document__hover__enum_structs__enum_struct_6.snap │ │ │ ├── main__text_document__hover__enums__enum_1.snap │ │ │ ├── main__text_document__hover__enums__enum_2.snap │ │ │ ├── main__text_document__hover__enums__enum_3.snap │ │ │ ├── main__text_document__hover__enums__enum_4.snap │ │ │ ├── main__text_document__hover__functions__function_1.snap │ │ │ ├── main__text_document__hover__functions__function_2.snap │ │ │ ├── main__text_document__hover__functions__function_3.snap │ │ │ ├── main__text_document__hover__functions__function_4.snap │ │ │ ├── main__text_document__hover__functions__function_5.snap │ │ │ ├── main__text_document__hover__macros__macro_1.snap │ │ │ ├── main__text_document__hover__macros__macro_10.snap │ │ │ ├── main__text_document__hover__macros__macro_11.snap │ │ │ ├── main__text_document__hover__macros__macro_12.snap │ │ │ ├── main__text_document__hover__macros__macro_2.snap │ │ │ ├── main__text_document__hover__macros__macro_3.snap │ │ │ ├── main__text_document__hover__macros__macro_4.snap │ │ │ ├── main__text_document__hover__macros__macro_5.snap │ │ │ ├── main__text_document__hover__macros__macro_6.snap │ │ │ ├── main__text_document__hover__macros__macro_7.snap │ │ │ ├── main__text_document__hover__macros__macro_8.snap │ │ │ ├── main__text_document__hover__macros__macro_9.snap │ │ │ ├── main__text_document__hover__methodmaps__methodmap_1.snap │ │ │ ├── main__text_document__hover__methodmaps__methodmap_2.snap │ │ │ ├── main__text_document__hover__methodmaps__methodmap_constructor_1.snap │ │ │ ├── main__text_document__hover__methodmaps__methodmap_method_1.snap │ │ │ ├── main__text_document__hover__methodmaps__methodmap_property_1.snap │ │ │ └── main__text_document__hover__variables__global_1.snap │ │ └── variables.rs │ │ ├── mod.rs │ │ └── signature_help │ │ ├── mod.rs │ │ └── snapshots │ │ ├── main__text_document__signature_help__function_1.snap │ │ ├── main__text_document__signature_help__function_2.snap │ │ ├── main__text_document__signature_help__function_3.snap │ │ ├── main__text_document__signature_help__function_4.snap │ │ ├── main__text_document__signature_help__function_5.snap │ │ ├── main__text_document__signature_help__function_6.snap │ │ └── main__text_document__signature_help__function_7.snap ├── stdx │ ├── Cargo.toml │ └── src │ │ ├── anymap.rs │ │ ├── hashable_hash_map.rs │ │ ├── lib.rs │ │ ├── macros.rs │ │ ├── panic_context.rs │ │ ├── process.rs │ │ ├── thread.rs │ │ └── thread │ │ ├── intent.rs │ │ └── pool.rs ├── syntax │ ├── Cargo.toml │ └── src │ │ ├── generated.rs │ │ ├── lib.rs │ │ ├── tests.rs │ │ ├── tests │ │ └── sourcegen.rs │ │ └── utils.rs ├── test-utils │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── vfs-notify │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── vfs │ ├── Cargo.toml │ └── src │ ├── anchored_path.rs │ ├── file_id.rs │ ├── file_set.rs │ ├── lib.rs │ ├── loader.rs │ ├── path_interner.rs │ ├── vfs_path.rs │ └── vfs_path │ └── tests.rs ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── configuration │ │ ├── _category_.json │ │ ├── generated_settings.md │ │ └── generated_vscode_settings.md │ ├── features.md │ ├── features_img │ │ ├── callback-completion-example-1.gif │ │ ├── documentation-completion-example-1.gif │ │ ├── events-completion-example-1.gif │ │ ├── include-completion-example-1.gif │ │ ├── regular-completion-example-1.gif │ │ └── showcase-1.gif │ ├── quick-start.md │ └── vscode.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── SP.png │ │ ├── docusaurus.png │ │ ├── showcase-1.gif │ │ ├── sm.png │ │ ├── sp-studio-social-card_500.png │ │ ├── sp-studio_full_512_alpha.png │ │ ├── sp-studio_square_256x256.png │ │ ├── sp-studio_square_256x256_alpha.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── editors ├── code-amxxpawn │ ├── .gitignore │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── LanguageConfigurations │ │ ├── AMXXPawnConfiguration.language-configuration.json │ │ ├── ValveCFGConfiguration.language-configuration.json │ │ └── ValveKVConfiguration.language-configuration.json │ ├── README.md │ ├── amxmodx.png │ ├── bin │ │ ├── darwin_x64 │ │ │ └── clang-format │ │ ├── linux_x64 │ │ │ └── clang-format │ │ └── win32 │ │ │ └── clang-format.exe │ ├── esbuild.mjs │ ├── package-lock.json │ ├── package.json │ ├── snippets │ │ └── snippets.json │ ├── src │ │ ├── Formatters │ │ │ ├── kvFormat.ts │ │ │ └── spFormat.ts │ │ ├── Keyvalues │ │ │ └── registerKVLinter.ts │ │ ├── commands │ │ │ ├── registerCommands.ts │ │ │ └── setFileAsMain.ts │ │ ├── ctx.ts │ │ ├── index.ts │ │ ├── lsp_ext.ts │ │ └── utils.ts │ ├── syntaxes │ │ ├── amxxpawn-jsdoc.json │ │ ├── amxxpawn.tmLanguage.json │ │ ├── valve-cfg.tmLanguage.json │ │ └── valve-kv.tmLanguage.json │ └── tsconfig.json └── code │ ├── .gitignore │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── LanguageConfigurations │ ├── SPConfiguration.language-configuration.json │ ├── ValveCFGConfiguration.language-configuration.json │ └── ValveKVConfiguration.language-configuration.json │ ├── README.md │ ├── bin │ ├── darwin_x64 │ │ └── clang-format │ ├── linux_x64 │ │ └── clang-format │ └── win32 │ │ └── clang-format.exe │ ├── esbuild.mjs │ ├── icons │ ├── INC.afphoto │ ├── INC.png │ ├── SM.afphoto │ ├── SM.png │ ├── SP.afphoto │ ├── SP.png │ ├── cfg.svg │ ├── compile.svg │ └── sourcepawn-icon-theme.json │ ├── images │ ├── completion-example-1.png │ ├── completion-example-2.png │ ├── completion-example-3.png │ ├── completion-example-4.gif │ ├── example.gif │ ├── go-to-definition-example-1.png │ ├── hierarchy-example-1.gif │ ├── highlighting-example-1.png │ ├── highlighting-example-2.png │ ├── hover-example-1.png │ ├── linter-example-1.png │ ├── mainpath-prompt.PNG │ ├── outline-example-1.png │ ├── pre-release.png │ ├── references-example-1.png │ ├── rename-example-1.png │ ├── set-main-path.png │ └── signature-example-1.png │ ├── package-lock.json │ ├── package.json │ ├── package_template.json │ ├── snippets │ └── snippets.json │ ├── sp-studio_square_256x256.png │ ├── src │ ├── Commands │ │ ├── analyzerStatus.ts │ │ ├── changeSMApi.ts │ │ ├── compileSM.ts │ │ ├── createCHANGELOG.ts │ │ ├── createGITIGNORE.ts │ │ ├── createGitHubActions.ts │ │ ├── createLICENSE.ts │ │ ├── createProject.ts │ │ ├── createREADME.ts │ │ ├── createScript.ts │ │ ├── createTask.ts │ │ ├── doctor.ts │ │ ├── insertParameters.ts │ │ ├── installSM.ts │ │ ├── itemTree.ts │ │ ├── preprocessedDocument.ts │ │ ├── projectsGraphviz.ts │ │ ├── registerCommands.ts │ │ ├── runServerCommands.ts │ │ ├── syntaxTree.ts │ │ └── uploadToServer.ts │ ├── Formatters │ │ ├── kvFormat.ts │ │ └── spFormat.ts │ ├── Keyvalues │ │ └── registerKVLinter.ts │ ├── Scrapper │ │ ├── data.json │ │ └── webscrapper.py │ ├── client.ts │ ├── configUtils.ts │ ├── ctx.ts │ ├── lsp_ext.ts │ ├── spIndex.ts │ ├── spUtils.ts │ └── test │ │ ├── runTest.ts │ │ ├── suite │ │ ├── commands.test.ts │ │ └── index.ts │ │ └── testSuite │ │ └── test.phrases.txt │ ├── syntaxes │ ├── sourcepawn-jsdoc.json │ ├── sourcepawn.tmLanguage.json │ ├── valve-cfg.tmLanguage.json │ └── valve-kv.tmLanguage.json │ ├── templates │ ├── CHANGELOG_template.md │ ├── LICENSE_template │ ├── README_template.MD │ ├── gitignore_template │ ├── main_template.yml │ ├── plugin_template.sp │ └── test_template.yml │ └── tsconfig.json ├── images ├── completion-example-1.png ├── completion-example-2.png ├── completion-example-3.png ├── completion-example-4.gif ├── example.gif ├── go-to-definition-example-1.png ├── hierarchy-example-1.gif ├── highlighting-example-1.png ├── highlighting-example-2.png ├── hover-example-1.png ├── linter-example-1.png ├── mainpath-prompt.PNG ├── outline-example-1.png ├── pre-release.png ├── references-example-1.png ├── rename-example-1.png ├── set-main-path.png ├── showcase-1.gif ├── signature-example-1.png └── sp-studio-full_512.png └── scripts ├── .gitignore ├── data.json ├── events_scrapper.py └── requirements.txt /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.buymeacoffee.com/sarrus"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/ISSUE_TEMPLATE/new-feature.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-amxxpawn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/workflows/release-amxxpawn.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/README.md -------------------------------------------------------------------------------- /crates/base-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/Cargo.toml -------------------------------------------------------------------------------- /crates/base-db/src/change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/src/change.rs -------------------------------------------------------------------------------- /crates/base-db/src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/src/graph.rs -------------------------------------------------------------------------------- /crates/base-db/src/include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/src/include.rs -------------------------------------------------------------------------------- /crates/base-db/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/src/input.rs -------------------------------------------------------------------------------- /crates/base-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/base-db/src/lib.rs -------------------------------------------------------------------------------- /crates/completion-data/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/completion-data/Cargo.toml -------------------------------------------------------------------------------- /crates/completion-data/data/events.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/completion-data/data/events.json.gz -------------------------------------------------------------------------------- /crates/completion-data/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/completion-data/src/lib.rs -------------------------------------------------------------------------------- /crates/flycheck/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/flycheck/Cargo.toml -------------------------------------------------------------------------------- /crates/flycheck/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/flycheck/src/lib.rs -------------------------------------------------------------------------------- /crates/flycheck/src/spcomp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/flycheck/src/spcomp.rs -------------------------------------------------------------------------------- /crates/hir-def/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/Cargo.toml -------------------------------------------------------------------------------- /crates/hir-def/src/ast_id_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/ast_id_map.rs -------------------------------------------------------------------------------- /crates/hir-def/src/body.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/body.rs -------------------------------------------------------------------------------- /crates/hir-def/src/body/lower.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/body/lower.rs -------------------------------------------------------------------------------- /crates/hir-def/src/body/scope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/body/scope.rs -------------------------------------------------------------------------------- /crates/hir-def/src/child_by_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/child_by_source.rs -------------------------------------------------------------------------------- /crates/hir-def/src/data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/data.rs -------------------------------------------------------------------------------- /crates/hir-def/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/db.rs -------------------------------------------------------------------------------- /crates/hir-def/src/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/diagnostics.rs -------------------------------------------------------------------------------- /crates/hir-def/src/dyn_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/dyn_map.rs -------------------------------------------------------------------------------- /crates/hir-def/src/dyn_map/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/dyn_map/keys.rs -------------------------------------------------------------------------------- /crates/hir-def/src/hir.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/hir.rs -------------------------------------------------------------------------------- /crates/hir-def/src/hir/type_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/hir/type_ref.rs -------------------------------------------------------------------------------- /crates/hir-def/src/infer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/infer.rs -------------------------------------------------------------------------------- /crates/hir-def/src/item_tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/item_tree.rs -------------------------------------------------------------------------------- /crates/hir-def/src/item_tree/lower.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/item_tree/lower.rs -------------------------------------------------------------------------------- /crates/hir-def/src/item_tree/pretty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/item_tree/pretty.rs -------------------------------------------------------------------------------- /crates/hir-def/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/lib.rs -------------------------------------------------------------------------------- /crates/hir-def/src/resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/resolver.rs -------------------------------------------------------------------------------- /crates/hir-def/src/src.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir-def/src/src.rs -------------------------------------------------------------------------------- /crates/hir/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/Cargo.toml -------------------------------------------------------------------------------- /crates/hir/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/db.rs -------------------------------------------------------------------------------- /crates/hir/src/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/diagnostics.rs -------------------------------------------------------------------------------- /crates/hir/src/from_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/from_id.rs -------------------------------------------------------------------------------- /crates/hir/src/has_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/has_source.rs -------------------------------------------------------------------------------- /crates/hir/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/lib.rs -------------------------------------------------------------------------------- /crates/hir/src/semantics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/semantics.rs -------------------------------------------------------------------------------- /crates/hir/src/source_analyzer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/source_analyzer.rs -------------------------------------------------------------------------------- /crates/hir/src/source_to_def.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/hir/src/source_to_def.rs -------------------------------------------------------------------------------- /crates/ide-db/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/Cargo.toml -------------------------------------------------------------------------------- /crates/ide-db/src/call_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/src/call_item.rs -------------------------------------------------------------------------------- /crates/ide-db/src/documentation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/src/documentation.rs -------------------------------------------------------------------------------- /crates/ide-db/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/src/lib.rs -------------------------------------------------------------------------------- /crates/ide-db/src/source_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/src/source_change.rs -------------------------------------------------------------------------------- /crates/ide-db/src/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-db/src/symbols.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/Cargo.toml -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/inactive_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/inactive_code.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/incorrect_number_of_arguments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/incorrect_number_of_arguments.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/invalid_use_of_this.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/invalid_use_of_this.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/preprocessor_evaluation_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/preprocessor_evaluation_error.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_constructor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_constructor.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_field.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_include.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_inherit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_inherit.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_macro.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_macro.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_method_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_method_call.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/handlers/unresolved_named_arg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/handlers/unresolved_named_arg.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/lib.rs -------------------------------------------------------------------------------- /crates/ide-diagnostics/src/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide-diagnostics/src/queries.rs -------------------------------------------------------------------------------- /crates/ide/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/Cargo.toml -------------------------------------------------------------------------------- /crates/ide/src/call_hierarchy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/call_hierarchy.rs -------------------------------------------------------------------------------- /crates/ide/src/completion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/completion.rs -------------------------------------------------------------------------------- /crates/ide/src/completion/defaults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/completion/defaults.rs -------------------------------------------------------------------------------- /crates/ide/src/completion/documentation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/completion/documentation.rs -------------------------------------------------------------------------------- /crates/ide/src/completion/includes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/completion/includes.rs -------------------------------------------------------------------------------- /crates/ide/src/completion/item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/completion/item.rs -------------------------------------------------------------------------------- /crates/ide/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/events.rs -------------------------------------------------------------------------------- /crates/ide/src/goto_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/goto_definition.rs -------------------------------------------------------------------------------- /crates/ide/src/hover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/hover.rs -------------------------------------------------------------------------------- /crates/ide/src/hover/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/hover/actions.rs -------------------------------------------------------------------------------- /crates/ide/src/hover/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/hover/render.rs -------------------------------------------------------------------------------- /crates/ide/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/lib.rs -------------------------------------------------------------------------------- /crates/ide/src/markup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/markup.rs -------------------------------------------------------------------------------- /crates/ide/src/prime_caches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/prime_caches.rs -------------------------------------------------------------------------------- /crates/ide/src/references.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/references.rs -------------------------------------------------------------------------------- /crates/ide/src/rename.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/rename.rs -------------------------------------------------------------------------------- /crates/ide/src/signature_help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/signature_help.rs -------------------------------------------------------------------------------- /crates/ide/src/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/status.rs -------------------------------------------------------------------------------- /crates/ide/src/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/symbols.rs -------------------------------------------------------------------------------- /crates/ide/src/syntax_highlighting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/ide/src/syntax_highlighting.rs -------------------------------------------------------------------------------- /crates/paths/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/paths/Cargo.toml -------------------------------------------------------------------------------- /crates/paths/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/paths/src/lib.rs -------------------------------------------------------------------------------- /crates/preprocessor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/Cargo.toml -------------------------------------------------------------------------------- /crates/preprocessor/benches/bench_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/benches/bench_main.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/buffer.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/conditions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/conditions.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/db.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/errors.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/evaluator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/evaluator.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/lib.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/macros.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/offset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/offset.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/preprocessor_operator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/preprocessor_operator.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/result.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/symbol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/symbol.rs -------------------------------------------------------------------------------- /crates/preprocessor/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/src/test.rs -------------------------------------------------------------------------------- /crates/preprocessor/tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/main.rs -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_5-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_5-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_comment_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_comment_5.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_line_continuation_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_expansion_nested_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_expansion_nested_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_trailing_comment_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_trailing_comment_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_trailing_comment_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_trailing_comment_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_trailing_comment_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_trailing_comment_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_trailing_comment_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_trailing_comment_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_undef_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_undef_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__define_undef_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__define_undef_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_5-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_5-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__elseif_directive_expansion_5.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_5-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_5-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_5.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_6-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_6-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_6.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_7-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_7-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_7.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_8-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_8-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_defined_complex_8.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_expansion_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_expansion_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_infinite_loop_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_infinite_loop_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_infinite_loop_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__if_directive_nested_expansion_infinite_loop_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__include_directive_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__include_directive_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_5-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_5-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_5.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_6-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_6-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_6.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_7-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_7-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_expansion_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_expansion_7.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__macro_no_expansion_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__macro_no_expansion_4.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__multiline_block_comment_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__multiline_block_comment_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__multiline_block_comment_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__multiline_block_comment_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__multiline_block_comment_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__multiline_block_comment_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__multiline_block_comment_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__multiline_block_comment_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__no_preprocessor_directives-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__no_preprocessor_directives-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__no_preprocessor_directives.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__no_preprocessor_directives.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_1-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_1-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_1.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_2-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_3-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_3.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_4-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_4-2.snap -------------------------------------------------------------------------------- /crates/preprocessor/tests/snapshots/main__stringizing_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/preprocessor/tests/snapshots/main__stringizing_4.snap -------------------------------------------------------------------------------- /crates/profile/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/profile/Cargo.toml -------------------------------------------------------------------------------- /crates/profile/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/profile/src/lib.rs -------------------------------------------------------------------------------- /crates/profile/src/memory_usage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/profile/src/memory_usage.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/Cargo.toml -------------------------------------------------------------------------------- /crates/sourcepawn-studio/benches/bench_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/benches/bench_main.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/capabilities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/capabilities.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/client.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/config.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/diagnostics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/diagnostics.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/diagnostics/to_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/diagnostics/to_proto.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/dispatch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/dispatch.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/fixture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/fixture.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/global_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/global_state.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/handlers/notification.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/handlers/notification.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/handlers/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/handlers/request.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lib.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/line_index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/line_index.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp/ext.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp/from_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp/from_proto.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp/semantic_tokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp/semantic_tokens.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp/to_proto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp/to_proto.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/lsp/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/lsp/utils.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/main.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/main_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/main_loop.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/mem_docs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/mem_docs.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/op_queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/op_queue.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/progress.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/progress.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/reload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/reload.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/task_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/task_pool.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/src/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/src/version.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/test_data/sourcemod.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/test_data/sourcemod.zip -------------------------------------------------------------------------------- /crates/sourcepawn-studio/test_data/surftimer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/test_data/surftimer.zip -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/main.rs: -------------------------------------------------------------------------------- 1 | mod text_document; 2 | -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/include.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/include.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/macros.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/mod.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__include__include_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__macros__macro_negative_offset_global_scope.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__macros__macro_negative_offset_global_scope.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__macros__macro_positive_offset_global_scope.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__macros__macro_positive_offset_global_scope.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__function_parameter.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__function_parameter.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_in_function.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_in_function.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_include_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__global_variable_include_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_for_loop.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_for_loop.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_in_function.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_in_function.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_outside_function.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/snapshots/main__text_document__completion__variables__local_variable_outside_function.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/completion/variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/completion/variables.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/arrays.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/arrays.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/enum_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/enum_structs.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/enums.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/function_declarations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/function_declarations.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/functions.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/macros.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/methodmaps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/methodmaps.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/mod.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_declaration_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_declaration_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_declaration_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_declaration_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_indexed_access_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_indexed_access_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_indexed_access_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__arrays__array_indexed_access_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enum_struct_method_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__anon_enum_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__anon_enum_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__anon_enum_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__anon_enum_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__enums__enum_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__field_access_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__forward_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__forward_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__forward_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__forward_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__native_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__native_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__native_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_declarations__native_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__function_parameter_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__function_named_arg_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__method_named_arg_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__functions__method_named_arg_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__global_variable_7.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__include_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__include_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__include_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__include_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__local_variable_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_in_function_scope.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__define_in_function_scope.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_10.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_10.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_11.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_11.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_7.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_8.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_9.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__macro_9.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__macros__preprocessor_disable_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__method_call_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__method_call_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_complex_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_complex_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_inherit_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_7.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_method_8.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_new_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_new_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_new_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_new_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__methodmaps__methodmap_property_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__statements__for_loop_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_declaration_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_declaration_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_declaration_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_declaration_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_definition_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__structs__struct_definition_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__funcenum_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__functag_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typedef_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__typedefs__typeset_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__variables__old_global_variable_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__variables__old_global_variable_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__variables__old_global_variable_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/snapshots/main__text_document__goto_definition__variables__old_global_variable_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/statements.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/statements.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/structs.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/typedefs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/typedefs.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/goto_definition/variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/goto_definition/variables.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/enum_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/enum_structs.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/enums.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/enums.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/functions.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/macros.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/methodmaps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/methodmaps.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/mod.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enum_structs__enum_struct_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__enums__enum_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__functions__function_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_10.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_10.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_11.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_11.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_12.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_12.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_7.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_8.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_9.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__macros__macro_9.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_constructor_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_constructor_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_method_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_method_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_property_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__methodmaps__methodmap_property_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__variables__global_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/snapshots/main__text_document__hover__variables__global_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/hover/variables.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/hover/variables.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/mod.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/mod.rs -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_1.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_2.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_3.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_4.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_5.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_6.snap -------------------------------------------------------------------------------- /crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/sourcepawn-studio/tests/text_document/signature_help/snapshots/main__text_document__signature_help__function_7.snap -------------------------------------------------------------------------------- /crates/stdx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/Cargo.toml -------------------------------------------------------------------------------- /crates/stdx/src/anymap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/anymap.rs -------------------------------------------------------------------------------- /crates/stdx/src/hashable_hash_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/hashable_hash_map.rs -------------------------------------------------------------------------------- /crates/stdx/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/lib.rs -------------------------------------------------------------------------------- /crates/stdx/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/macros.rs -------------------------------------------------------------------------------- /crates/stdx/src/panic_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/panic_context.rs -------------------------------------------------------------------------------- /crates/stdx/src/process.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/process.rs -------------------------------------------------------------------------------- /crates/stdx/src/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/thread.rs -------------------------------------------------------------------------------- /crates/stdx/src/thread/intent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/thread/intent.rs -------------------------------------------------------------------------------- /crates/stdx/src/thread/pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/stdx/src/thread/pool.rs -------------------------------------------------------------------------------- /crates/syntax/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/syntax/Cargo.toml -------------------------------------------------------------------------------- /crates/syntax/src/generated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/syntax/src/generated.rs -------------------------------------------------------------------------------- /crates/syntax/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/syntax/src/lib.rs -------------------------------------------------------------------------------- /crates/syntax/src/tests.rs: -------------------------------------------------------------------------------- 1 | #[cfg(test)] 2 | mod sourcegen; 3 | -------------------------------------------------------------------------------- /crates/syntax/src/tests/sourcegen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/syntax/src/tests/sourcegen.rs -------------------------------------------------------------------------------- /crates/syntax/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/syntax/src/utils.rs -------------------------------------------------------------------------------- /crates/test-utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/test-utils/Cargo.toml -------------------------------------------------------------------------------- /crates/test-utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/test-utils/src/lib.rs -------------------------------------------------------------------------------- /crates/vfs-notify/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs-notify/Cargo.toml -------------------------------------------------------------------------------- /crates/vfs-notify/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs-notify/src/lib.rs -------------------------------------------------------------------------------- /crates/vfs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/Cargo.toml -------------------------------------------------------------------------------- /crates/vfs/src/anchored_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/anchored_path.rs -------------------------------------------------------------------------------- /crates/vfs/src/file_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/file_id.rs -------------------------------------------------------------------------------- /crates/vfs/src/file_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/file_set.rs -------------------------------------------------------------------------------- /crates/vfs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/lib.rs -------------------------------------------------------------------------------- /crates/vfs/src/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/loader.rs -------------------------------------------------------------------------------- /crates/vfs/src/path_interner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/path_interner.rs -------------------------------------------------------------------------------- /crates/vfs/src/vfs_path.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/vfs_path.rs -------------------------------------------------------------------------------- /crates/vfs/src/vfs_path/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/crates/vfs/src/vfs_path/tests.rs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/configuration/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/configuration/_category_.json -------------------------------------------------------------------------------- /docs/docs/configuration/generated_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/configuration/generated_settings.md -------------------------------------------------------------------------------- /docs/docs/configuration/generated_vscode_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/configuration/generated_vscode_settings.md -------------------------------------------------------------------------------- /docs/docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features.md -------------------------------------------------------------------------------- /docs/docs/features_img/callback-completion-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/callback-completion-example-1.gif -------------------------------------------------------------------------------- /docs/docs/features_img/documentation-completion-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/documentation-completion-example-1.gif -------------------------------------------------------------------------------- /docs/docs/features_img/events-completion-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/events-completion-example-1.gif -------------------------------------------------------------------------------- /docs/docs/features_img/include-completion-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/include-completion-example-1.gif -------------------------------------------------------------------------------- /docs/docs/features_img/regular-completion-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/regular-completion-example-1.gif -------------------------------------------------------------------------------- /docs/docs/features_img/showcase-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/features_img/showcase-1.gif -------------------------------------------------------------------------------- /docs/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/quick-start.md -------------------------------------------------------------------------------- /docs/docs/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docs/vscode.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/SP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/SP.png -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/showcase-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/showcase-1.gif -------------------------------------------------------------------------------- /docs/static/img/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/sm.png -------------------------------------------------------------------------------- /docs/static/img/sp-studio-social-card_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/sp-studio-social-card_500.png -------------------------------------------------------------------------------- /docs/static/img/sp-studio_full_512_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/sp-studio_full_512_alpha.png -------------------------------------------------------------------------------- /docs/static/img/sp-studio_square_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/sp-studio_square_256x256.png -------------------------------------------------------------------------------- /docs/static/img/sp-studio_square_256x256_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/sp-studio_square_256x256_alpha.png -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/.gitignore -------------------------------------------------------------------------------- /editors/code-amxxpawn/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/.vscodeignore -------------------------------------------------------------------------------- /editors/code-amxxpawn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/CHANGELOG.md -------------------------------------------------------------------------------- /editors/code-amxxpawn/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /editors/code-amxxpawn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/LICENSE -------------------------------------------------------------------------------- /editors/code-amxxpawn/LanguageConfigurations/AMXXPawnConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/LanguageConfigurations/AMXXPawnConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/LanguageConfigurations/ValveCFGConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/LanguageConfigurations/ValveCFGConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/LanguageConfigurations/ValveKVConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/LanguageConfigurations/ValveKVConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/README.md -------------------------------------------------------------------------------- /editors/code-amxxpawn/amxmodx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/amxmodx.png -------------------------------------------------------------------------------- /editors/code-amxxpawn/bin/darwin_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/bin/darwin_x64/clang-format -------------------------------------------------------------------------------- /editors/code-amxxpawn/bin/linux_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/bin/linux_x64/clang-format -------------------------------------------------------------------------------- /editors/code-amxxpawn/bin/win32/clang-format.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/bin/win32/clang-format.exe -------------------------------------------------------------------------------- /editors/code-amxxpawn/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/esbuild.mjs -------------------------------------------------------------------------------- /editors/code-amxxpawn/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/package-lock.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/package.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/snippets/snippets.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/Formatters/kvFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/Formatters/kvFormat.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/Formatters/spFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/Formatters/spFormat.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/Keyvalues/registerKVLinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/Keyvalues/registerKVLinter.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/commands/registerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/commands/registerCommands.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/commands/setFileAsMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/commands/setFileAsMain.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/ctx.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/index.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/lsp_ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/lsp_ext.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/src/utils.ts -------------------------------------------------------------------------------- /editors/code-amxxpawn/syntaxes/amxxpawn-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/syntaxes/amxxpawn-jsdoc.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/syntaxes/amxxpawn.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/syntaxes/amxxpawn.tmLanguage.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/syntaxes/valve-cfg.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/syntaxes/valve-cfg.tmLanguage.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/syntaxes/valve-kv.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/syntaxes/valve-kv.tmLanguage.json -------------------------------------------------------------------------------- /editors/code-amxxpawn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code-amxxpawn/tsconfig.json -------------------------------------------------------------------------------- /editors/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/.gitignore -------------------------------------------------------------------------------- /editors/code/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/.vscodeignore -------------------------------------------------------------------------------- /editors/code/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/CHANGELOG.md -------------------------------------------------------------------------------- /editors/code/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /editors/code/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/LICENSE -------------------------------------------------------------------------------- /editors/code/LanguageConfigurations/SPConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/LanguageConfigurations/SPConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code/LanguageConfigurations/ValveCFGConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/LanguageConfigurations/ValveCFGConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code/LanguageConfigurations/ValveKVConfiguration.language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/LanguageConfigurations/ValveKVConfiguration.language-configuration.json -------------------------------------------------------------------------------- /editors/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/README.md -------------------------------------------------------------------------------- /editors/code/bin/darwin_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/bin/darwin_x64/clang-format -------------------------------------------------------------------------------- /editors/code/bin/linux_x64/clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/bin/linux_x64/clang-format -------------------------------------------------------------------------------- /editors/code/bin/win32/clang-format.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/bin/win32/clang-format.exe -------------------------------------------------------------------------------- /editors/code/esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/esbuild.mjs -------------------------------------------------------------------------------- /editors/code/icons/INC.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/INC.afphoto -------------------------------------------------------------------------------- /editors/code/icons/INC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/INC.png -------------------------------------------------------------------------------- /editors/code/icons/SM.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/SM.afphoto -------------------------------------------------------------------------------- /editors/code/icons/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/SM.png -------------------------------------------------------------------------------- /editors/code/icons/SP.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/SP.afphoto -------------------------------------------------------------------------------- /editors/code/icons/SP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/SP.png -------------------------------------------------------------------------------- /editors/code/icons/cfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/cfg.svg -------------------------------------------------------------------------------- /editors/code/icons/compile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/compile.svg -------------------------------------------------------------------------------- /editors/code/icons/sourcepawn-icon-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/icons/sourcepawn-icon-theme.json -------------------------------------------------------------------------------- /editors/code/images/completion-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/completion-example-1.png -------------------------------------------------------------------------------- /editors/code/images/completion-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/completion-example-2.png -------------------------------------------------------------------------------- /editors/code/images/completion-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/completion-example-3.png -------------------------------------------------------------------------------- /editors/code/images/completion-example-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/completion-example-4.gif -------------------------------------------------------------------------------- /editors/code/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/example.gif -------------------------------------------------------------------------------- /editors/code/images/go-to-definition-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/go-to-definition-example-1.png -------------------------------------------------------------------------------- /editors/code/images/hierarchy-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/hierarchy-example-1.gif -------------------------------------------------------------------------------- /editors/code/images/highlighting-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/highlighting-example-1.png -------------------------------------------------------------------------------- /editors/code/images/highlighting-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/highlighting-example-2.png -------------------------------------------------------------------------------- /editors/code/images/hover-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/hover-example-1.png -------------------------------------------------------------------------------- /editors/code/images/linter-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/linter-example-1.png -------------------------------------------------------------------------------- /editors/code/images/mainpath-prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/mainpath-prompt.PNG -------------------------------------------------------------------------------- /editors/code/images/outline-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/outline-example-1.png -------------------------------------------------------------------------------- /editors/code/images/pre-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/pre-release.png -------------------------------------------------------------------------------- /editors/code/images/references-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/references-example-1.png -------------------------------------------------------------------------------- /editors/code/images/rename-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/rename-example-1.png -------------------------------------------------------------------------------- /editors/code/images/set-main-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/set-main-path.png -------------------------------------------------------------------------------- /editors/code/images/signature-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/images/signature-example-1.png -------------------------------------------------------------------------------- /editors/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/package-lock.json -------------------------------------------------------------------------------- /editors/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/package.json -------------------------------------------------------------------------------- /editors/code/package_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/package_template.json -------------------------------------------------------------------------------- /editors/code/snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/snippets/snippets.json -------------------------------------------------------------------------------- /editors/code/sp-studio_square_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/sp-studio_square_256x256.png -------------------------------------------------------------------------------- /editors/code/src/Commands/analyzerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/analyzerStatus.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/changeSMApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/changeSMApi.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/compileSM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/compileSM.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createCHANGELOG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createCHANGELOG.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createGITIGNORE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createGITIGNORE.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createGitHubActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createGitHubActions.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createLICENSE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createLICENSE.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createProject.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createREADME.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createREADME.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createScript.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/createTask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/createTask.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/doctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/doctor.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/insertParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/insertParameters.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/installSM.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/installSM.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/itemTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/itemTree.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/preprocessedDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/preprocessedDocument.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/projectsGraphviz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/projectsGraphviz.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/registerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/registerCommands.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/runServerCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/runServerCommands.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/syntaxTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/syntaxTree.ts -------------------------------------------------------------------------------- /editors/code/src/Commands/uploadToServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Commands/uploadToServer.ts -------------------------------------------------------------------------------- /editors/code/src/Formatters/kvFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Formatters/kvFormat.ts -------------------------------------------------------------------------------- /editors/code/src/Formatters/spFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Formatters/spFormat.ts -------------------------------------------------------------------------------- /editors/code/src/Keyvalues/registerKVLinter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Keyvalues/registerKVLinter.ts -------------------------------------------------------------------------------- /editors/code/src/Scrapper/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Scrapper/data.json -------------------------------------------------------------------------------- /editors/code/src/Scrapper/webscrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/Scrapper/webscrapper.py -------------------------------------------------------------------------------- /editors/code/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/client.ts -------------------------------------------------------------------------------- /editors/code/src/configUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/configUtils.ts -------------------------------------------------------------------------------- /editors/code/src/ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/ctx.ts -------------------------------------------------------------------------------- /editors/code/src/lsp_ext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/lsp_ext.ts -------------------------------------------------------------------------------- /editors/code/src/spIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/spIndex.ts -------------------------------------------------------------------------------- /editors/code/src/spUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/spUtils.ts -------------------------------------------------------------------------------- /editors/code/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/test/runTest.ts -------------------------------------------------------------------------------- /editors/code/src/test/suite/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/test/suite/commands.test.ts -------------------------------------------------------------------------------- /editors/code/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/test/suite/index.ts -------------------------------------------------------------------------------- /editors/code/src/test/testSuite/test.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/src/test/testSuite/test.phrases.txt -------------------------------------------------------------------------------- /editors/code/syntaxes/sourcepawn-jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/syntaxes/sourcepawn-jsdoc.json -------------------------------------------------------------------------------- /editors/code/syntaxes/sourcepawn.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/syntaxes/sourcepawn.tmLanguage.json -------------------------------------------------------------------------------- /editors/code/syntaxes/valve-cfg.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/syntaxes/valve-cfg.tmLanguage.json -------------------------------------------------------------------------------- /editors/code/syntaxes/valve-kv.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/syntaxes/valve-kv.tmLanguage.json -------------------------------------------------------------------------------- /editors/code/templates/CHANGELOG_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/CHANGELOG_template.md -------------------------------------------------------------------------------- /editors/code/templates/LICENSE_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/LICENSE_template -------------------------------------------------------------------------------- /editors/code/templates/README_template.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/README_template.MD -------------------------------------------------------------------------------- /editors/code/templates/gitignore_template: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /editors/code/templates/main_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/main_template.yml -------------------------------------------------------------------------------- /editors/code/templates/plugin_template.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/plugin_template.sp -------------------------------------------------------------------------------- /editors/code/templates/test_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/templates/test_template.yml -------------------------------------------------------------------------------- /editors/code/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/editors/code/tsconfig.json -------------------------------------------------------------------------------- /images/completion-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/completion-example-1.png -------------------------------------------------------------------------------- /images/completion-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/completion-example-2.png -------------------------------------------------------------------------------- /images/completion-example-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/completion-example-3.png -------------------------------------------------------------------------------- /images/completion-example-4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/completion-example-4.gif -------------------------------------------------------------------------------- /images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/example.gif -------------------------------------------------------------------------------- /images/go-to-definition-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/go-to-definition-example-1.png -------------------------------------------------------------------------------- /images/hierarchy-example-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/hierarchy-example-1.gif -------------------------------------------------------------------------------- /images/highlighting-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/highlighting-example-1.png -------------------------------------------------------------------------------- /images/highlighting-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/highlighting-example-2.png -------------------------------------------------------------------------------- /images/hover-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/hover-example-1.png -------------------------------------------------------------------------------- /images/linter-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/linter-example-1.png -------------------------------------------------------------------------------- /images/mainpath-prompt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/mainpath-prompt.PNG -------------------------------------------------------------------------------- /images/outline-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/outline-example-1.png -------------------------------------------------------------------------------- /images/pre-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/pre-release.png -------------------------------------------------------------------------------- /images/references-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/references-example-1.png -------------------------------------------------------------------------------- /images/rename-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/rename-example-1.png -------------------------------------------------------------------------------- /images/set-main-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/set-main-path.png -------------------------------------------------------------------------------- /images/showcase-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/showcase-1.gif -------------------------------------------------------------------------------- /images/signature-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/signature-example-1.png -------------------------------------------------------------------------------- /images/sp-studio-full_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/images/sp-studio-full_512.png -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/scripts/.gitignore -------------------------------------------------------------------------------- /scripts/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/scripts/data.json -------------------------------------------------------------------------------- /scripts/events_scrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/scripts/events_scrapper.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sarrus1/sourcepawn-studio/HEAD/scripts/requirements.txt --------------------------------------------------------------------------------