├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── perf.yml │ ├── publish-lsp-positions.yml │ ├── publish-stack-graphs.yml │ ├── publish-tree-sitter-stack-graphs-java.yml │ ├── publish-tree-sitter-stack-graphs-javascript.yml │ ├── publish-tree-sitter-stack-graphs-python.yml │ ├── publish-tree-sitter-stack-graphs-typescript.yml │ └── publish-tree-sitter-stack-graphs.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .zenodo.json ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── SECURITY.md ├── data ├── typescript_benchmark.md ├── typescript_benchmark.zip └── typescript_minimal_project.zip ├── languages ├── README.md ├── tree-sitter-stack-graphs-java │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── rust │ │ ├── bin.rs │ │ ├── lib.rs │ │ └── test.rs │ ├── src │ │ ├── builtins.cfg │ │ ├── builtins.java │ │ └── stack-graphs.tsg │ └── test │ │ ├── decl │ │ ├── annotation_type_body.java │ │ ├── class_extension.java │ │ ├── class_parameters.java │ │ ├── collection_import.java │ │ ├── duplicate_type_identifier.java │ │ ├── enum.java │ │ ├── enum_switches.java │ │ ├── field_declaration.java │ │ ├── field_modifiers.java │ │ ├── import_statement.java │ │ ├── interface.java │ │ ├── method_arguments.java │ │ ├── method_overriding.java │ │ ├── method_return.java │ │ ├── record.java │ │ ├── super_variable_declaration.java │ │ └── type_identifier.java │ │ ├── expression │ │ ├── array_access.java │ │ ├── array_creation.java │ │ ├── assignment.java │ │ ├── binary.java │ │ ├── cast.java │ │ ├── class_literal.java │ │ ├── instanceof.java │ │ ├── lambda.java │ │ ├── method_call.java │ │ ├── method_reference.java │ │ ├── object_creation_expression.java │ │ ├── ternary.java │ │ ├── unary.java │ │ └── update.java │ │ ├── imports_and_exports │ │ ├── import_method.java │ │ ├── imports.java │ │ ├── no_package.java │ │ ├── no_package_method.java │ │ └── no_package_not_leaking_method.java │ │ ├── statement │ │ ├── assert_statement.java │ │ ├── break.java │ │ ├── continue.java │ │ ├── do_statement.java │ │ ├── enhanced_for_statement.java │ │ ├── for_statement.java │ │ ├── getter_method.java │ │ ├── if_statement.java │ │ ├── labeled_statement.java │ │ ├── return_statement.java │ │ ├── switch_expression.java │ │ ├── synchronized_statement.java │ │ ├── try_statement.java │ │ ├── try_with_resources_statement.java │ │ ├── while_statement.java │ │ └── yield_statement.java │ │ ├── type │ │ ├── array.java │ │ ├── generic.java │ │ └── named.java │ │ └── variable_declaration.java ├── tree-sitter-stack-graphs-javascript │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── docs │ │ ├── package-structure.md │ │ └── package-structure │ │ │ ├── example.js │ │ │ └── example.png │ ├── rust │ │ ├── bin.rs │ │ ├── lib.rs │ │ ├── npm_package.rs │ │ ├── test.rs │ │ └── util.rs │ ├── src │ │ ├── builtins.cfg │ │ ├── builtins.js │ │ └── stack-graphs.tsg │ └── test │ │ ├── base_syntax.js │ │ ├── computation_flow │ │ ├── array_index_flow.js │ │ ├── assignment_destructuring_array_pattern.js │ │ ├── assignment_destructuring_object_pattern.js │ │ ├── class_declaration_constructor_field.js │ │ ├── class_declaration_field_definitions.js │ │ ├── class_declaration_fields_and_methods_not_visible_outside_class.js │ │ ├── class_declaration_fields_and_methods_visible_in_other_methods.js │ │ ├── class_declaration_method_call_argument_flow.js │ │ ├── class_declaration_method_call_arguments_variable_flow.js │ │ ├── class_declaration_method_call_closure_flow.js │ │ ├── class_declaration_method_call_constant_flow.js │ │ ├── class_declaration_methods_visible_on_instances.js │ │ ├── class_declaration_super_reference_to_method.js.skip │ │ ├── class_declaration_superclass_field_definition.js │ │ ├── class_declaration_superclass_methods_visible_on_instances.js │ │ ├── class_declaration_this_field_and_method.js.skip │ │ ├── class_expression_constructor_field.js │ │ ├── class_expression_field_definition.js │ │ ├── class_expression_fields_and_methods_not_visible_outside_class.js │ │ ├── class_expression_method_call_argument_flow.js │ │ ├── class_expression_method_call_arguments_variable_flow.js │ │ ├── class_expression_method_call_closure_flow.js │ │ ├── class_expression_method_call_constant_flow.js │ │ ├── class_expression_methods_visible_on_instances.js │ │ ├── class_expression_super_reference_to_method.js.skip │ │ ├── class_expression_superclass_field_definition.js │ │ ├── class_expression_superclass_methods_visible_on_instances.js │ │ ├── class_expression_this_field_and_method.js.skip │ │ ├── function_call_argument_flow.js │ │ ├── function_call_arguments_variable_flow.js │ │ ├── function_call_closure_flow.js │ │ ├── function_call_constant_flow.js │ │ ├── function_call_this_flow.js.skip │ │ ├── function_call_this_keyword_flow.js │ │ ├── function_closure_mutation.js │ │ ├── member_object_flow.js │ │ ├── object_computed_property_name_flow.js │ │ ├── object_shorthand_property_identifier_flow.js │ │ ├── subscript_array_flow.js │ │ ├── subscript_object_flow.js │ │ ├── with_statement_binding_flow.js │ │ └── with_statement_scope_shadowing_flow.js │ │ ├── expressions │ │ ├── array.js │ │ ├── arrow_function.js │ │ ├── assignment_expression.js │ │ ├── augmented_assignment_expression.js │ │ ├── await.js │ │ ├── binary_expression.js │ │ ├── booleans.js │ │ ├── call_expression.js │ │ ├── class.js │ │ ├── comma.js │ │ ├── function.js │ │ ├── generator_function.js │ │ ├── member_expression.js │ │ ├── new_expression.js │ │ ├── null.js │ │ ├── number.js │ │ ├── object.js │ │ ├── parenthesized_expression.js │ │ ├── regex.js │ │ ├── string.js │ │ ├── subscript_expression.js │ │ ├── super.js │ │ ├── template_strings.js │ │ ├── ternary_expression.js │ │ ├── this.js │ │ ├── unary_expression.js │ │ ├── undefined.js │ │ ├── update_expression.js │ │ ├── variable.js │ │ └── yield_expression.js │ │ ├── jsx │ │ ├── jsx_core.js │ │ ├── jsx_fragment.js │ │ ├── jsx_namespace_name.js │ │ ├── jsx_self_closing_element.js │ │ └── jsx_text.js │ │ ├── old │ │ ├── binding │ │ │ ├── default_arguments_from_enclosing_scope.js │ │ │ ├── default_arguments_from_other_arguments.js │ │ │ ├── destructuring_assignments.js │ │ │ ├── destructuring_assignments_with_defaults_from_enclosing_scope.js │ │ │ ├── destructuring_assignments_with_defaults_from_other_variables.js │ │ │ ├── destructuring_parameters.js │ │ │ └── object_assignment_patterns.js │ │ ├── bug_regressions │ │ │ ├── 2141.js │ │ │ ├── 2227.js │ │ │ ├── 2291.js │ │ │ ├── CommonJS_default_export_with_ES6_default_import.js │ │ │ ├── CommonJS_default_import_of_functions.js │ │ │ ├── CommonJS_imports_and_exports_using_defaults │ │ │ │ ├── export_with_name_default_alias_default.js │ │ │ │ ├── export_with_name_default_alias_nondefault.js │ │ │ │ ├── export_with_name_nondefault_alias_default.js │ │ │ │ └── import_with_name_default_alias_nondefault.js │ │ │ ├── ES6_imports_and_exports_using_the_name_or_alias_default │ │ │ │ ├── export_function_with_name_default_alias_default.js │ │ │ │ ├── export_with_name_default_alias_default.js │ │ │ │ ├── export_with_name_default_alias_nondefault.js │ │ │ │ ├── export_with_name_nondefault_alias_default.js │ │ │ │ ├── export_with_unaliased_name_default.js │ │ │ │ └── import_with_name_default_alias_nondefault.js │ │ │ ├── array_assignment_interrupts_scope.js │ │ │ ├── if_statement_path_blowup.js │ │ │ ├── string_property_interrupts_scope.js │ │ │ ├── ternary_expression_path_blowup.js │ │ │ └── variable_resolves_to_module.js │ │ ├── classes_and_instances │ │ │ ├── class_declaration.js │ │ │ ├── class_expression.js │ │ │ ├── class_expression_superclasses.js │ │ │ ├── class_expression_this_field_access.js │ │ │ ├── field_declaration.js │ │ │ ├── function_class_this_field_access.js │ │ │ ├── method_call_this_argument.js │ │ │ ├── method_definition.js │ │ │ ├── superclasses.js │ │ │ └── this_field_access.js │ │ ├── compound_literals │ │ │ ├── arrays.js │ │ │ ├── object_extend_method.js │ │ │ └── objects.js │ │ ├── control_flow_statements │ │ │ ├── dowhile.js │ │ │ ├── for.js │ │ │ ├── forin.js │ │ │ ├── if.js │ │ │ ├── try.js │ │ │ ├── while.js │ │ │ └── with.js │ │ ├── functions_and_calls │ │ │ ├── arguments_variable.js │ │ │ ├── arrow_function_values_with_param_lists_and_block_bodies.js │ │ │ ├── arrow_function_values_with_param_lists_and_expr_bodies.js │ │ │ ├── arrow_function_values_with_single_param_and_block_bodies.js │ │ │ ├── arrow_function_values_with_single_param_and_expr_bodies.js │ │ │ ├── call_arguments.js │ │ │ ├── function_declarations.js │ │ │ ├── function_values.js │ │ │ ├── generator_function_declarations.js │ │ │ └── generator_function_values.js │ │ ├── hoisting │ │ │ ├── basic_functions.js │ │ │ ├── functions_in_subscopes.js │ │ │ └── imports.js │ │ ├── imports_and_exports │ │ │ ├── CommonJS_import_ES6_export │ │ │ │ ├── export_with_name_default.js │ │ │ │ ├── export_with_name_nondefault.js │ │ │ │ ├── field_on_default_object_import_of_exported_default_object.js │ │ │ │ ├── field_on_default_object_import_of_exported_nondefault_name.js │ │ │ │ ├── import_with_name_default_alias_nondefault.js │ │ │ │ ├── reexport_with_name_default_alias_default.js │ │ │ │ ├── reexport_with_name_default_alias_nondefault.js │ │ │ │ ├── reexport_with_name_nondefault_alias_default.js │ │ │ │ ├── reexport_with_name_nondefault_alias_nondefault.js │ │ │ │ └── reexport_with_unaliased_name.js │ │ │ ├── CommonJS_import_export │ │ │ │ ├── field_on_default_object_import_of_exported_default_object.js │ │ │ │ ├── field_on_default_object_import_of_exported_default_object_field.js │ │ │ │ └── field_on_default_object_import_of_exported_nondefault_name.js │ │ │ ├── ES6_import_CommonJS_export │ │ │ │ ├── export_with_name_default.js │ │ │ │ ├── export_with_name_nondefault.js │ │ │ │ ├── field_on_default_object_import_of_exported_default_object.js │ │ │ │ ├── field_on_default_object_import_of_exported_default_object_field.js │ │ │ │ ├── field_on_default_object_import_of_exported_nondefault_name.js │ │ │ │ ├── import_with_name_default_alias_nondefault.js │ │ │ │ ├── reexport_with_name_default_alias_default.js │ │ │ │ ├── reexport_with_name_default_alias_nondefault.js │ │ │ │ ├── reexport_with_name_nondefault_alias_default.js │ │ │ │ ├── reexport_with_name_nondefault_alias_nondefault.js │ │ │ │ └── reexport_with_unaliased_name.js │ │ │ ├── ES6_import_export │ │ │ │ ├── field_on_default_object_import_of_exported_default_object.js │ │ │ │ └── field_on_default_object_import_of_exported_nondefault_name.js │ │ │ ├── commonjs_imports_and_exports.js │ │ │ ├── es6_imports_and_exports.js │ │ │ ├── import_function.js │ │ │ └── variable_visible_through_nonbinding_import.js │ │ ├── packages │ │ │ ├── can-access-package-non-main-explicilty.js │ │ │ ├── package-does-not-export-non-main.js │ │ │ ├── package-exports-explicit-main.js │ │ │ └── package-main-defaults-to-index.js │ │ └── simple_expressions │ │ │ ├── comma.js │ │ │ ├── template_strings.js │ │ │ ├── ternary.js │ │ │ └── variables.js │ │ ├── patterns │ │ ├── array_pattern.js │ │ ├── assignment_pattern.js │ │ ├── function_declaration_formal_parameter_patterns.js │ │ ├── method_declaration_formal_parameter_patterns.js │ │ └── object_pattern.js │ │ └── statements │ │ ├── class_declaration.js │ │ ├── debugger_statement.js │ │ ├── do_statement.js │ │ ├── empty_statement.js │ │ ├── export_statement.js │ │ ├── for_in_statement.js │ │ ├── for_statement.js │ │ ├── function_declaration.js │ │ ├── generator_function_declaration.js │ │ ├── hash_bang_line.js │ │ ├── if_statement.js │ │ ├── import_statement.js │ │ ├── label_continue_break_statements.js │ │ ├── label_statement.js │ │ ├── lexical_declaration_basic_no_destructuring.js │ │ ├── return_statement.js │ │ ├── statement_block.js │ │ ├── switch_statement.js │ │ ├── throw_statement.js │ │ ├── try_statement.js │ │ ├── variable_declaration_basic_no_destructuring.js │ │ ├── while_statement.js │ │ └── with_statement.js ├── tree-sitter-stack-graphs-python │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── rust │ │ ├── bin.rs │ │ ├── lib.rs │ │ └── test.rs │ ├── src │ │ ├── builtins.cfg │ │ ├── builtins.py │ │ ├── stack-graphs.scm │ │ └── stack-graphs.tsg │ └── test │ │ ├── aliased_imports.py │ │ ├── attributes.py │ │ ├── blocks.py │ │ ├── chained_functions.py │ │ ├── chained_methods.py.skip │ │ ├── class_members.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── functions.py │ │ ├── imported_functions.py │ │ ├── imports.py │ │ ├── imports │ │ ├── import_from_module_a_submodule.py │ │ ├── import_from_module_a_value.py │ │ ├── import_from_module_a_value_aliased.py │ │ ├── import_from_module_wildcard.py │ │ ├── import_from_submodule_a_value.py │ │ ├── import_from_super_package_a_value.py │ │ ├── import_from_super_package_submodule_a_value.py │ │ ├── import_from_this_package_a_value.py │ │ ├── import_from_this_package_submodule_a_value.py │ │ ├── import_module.py │ │ ├── import_module_aliased.py │ │ ├── import_submodule.py │ │ ├── import_submodule_aliased.py │ │ ├── relative_import_resolves_to_itself.py.skip │ │ └── require_explicit_submodule_import.py.skip │ │ ├── instance_members.py │ │ ├── lambdas.py │ │ ├── loops.py │ │ ├── many_definitions.py │ │ ├── nested_functions.py │ │ ├── not_a_method.py │ │ ├── pattern_matching.py │ │ ├── redundant_reexport.py │ │ ├── relative_imports.py │ │ ├── root_path.py │ │ ├── self.py │ │ ├── statement_bindings.py │ │ ├── superclasses.py │ │ ├── test.py │ │ ├── tuples.py │ │ └── wildcard_import.py └── tree-sitter-stack-graphs-typescript │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── rust │ ├── bin.rs │ ├── lib.rs │ ├── npm_package.rs │ ├── test.rs │ ├── tsconfig.rs │ └── util.rs │ ├── src │ ├── builtins.cfg │ ├── builtins.ts │ └── stack-graphs.tsg │ ├── test │ ├── base │ │ ├── cannot-resolve-field-in-shadowed-object.ts.skip │ │ ├── for-var-scoped-in-file-and-visible-inside-function.ts │ │ ├── for-var-scoped-in-function.ts │ │ ├── mutually-recursive-functions.ts │ │ ├── nested-for-var-scoped-in-function.ts │ │ ├── var-reference-before-def.ts │ │ └── var-scoped-in-function.ts │ ├── builtins │ │ ├── async-arrow-function.ts │ │ ├── async-function-definition.ts │ │ ├── async-function-expression.ts │ │ ├── async-function-inferred-return-type-not-directly-accessible.ts │ │ ├── async-method-with-inferred-return-type.ts │ │ ├── await-async-function-with-inferred-return-type.ts │ │ ├── await-function-with-explicit-return-type.ts │ │ ├── await-variable.ts │ │ ├── builtin-Array-type.ts │ │ ├── builtin-Map-type.ts │ │ └── builtin-Set-type.ts │ ├── expressions │ │ ├── access-property-in-abstract-super-class.ts │ │ ├── arrow-function.ts │ │ ├── asserts-condition.ts │ │ ├── asserts-type.ts │ │ ├── call-class-abstract-super-class-method.ts │ │ ├── call-class-super-interface-method.ts │ │ ├── call-declared-function.ts │ │ ├── call-function-literal.ts │ │ ├── call-function-type.ts │ │ ├── call-generic-function-signature.ts │ │ ├── call-generic-function-type.ts │ │ ├── call-generic-function-with-concrete-return-type-without-type-arguments.ts │ │ ├── call-generic-function-with-default-without-type-arguments.ts │ │ ├── call-generic-function.ts │ │ ├── call-interface-generic-function.ts │ │ ├── call-interface-method.ts │ │ ├── call-interface-super-interface-method.ts │ │ ├── call-let-bound-function-literal.ts │ │ ├── call-object-function-property.ts │ │ ├── call-object-method.ts │ │ ├── call-object-overloaded-method.ts │ │ ├── call-object-with-call-signature.ts │ │ ├── call-with-template-string.ts │ │ ├── index-getter-property.ts │ │ ├── index-into-array.ts │ │ ├── index-into-object-with-index-signature.ts │ │ ├── index-named-property.ts │ │ ├── index-on-variable.ts │ │ ├── index-setter-property.ts │ │ ├── new-from-construct-signature.ts │ │ ├── new-on-aliased-class-object.ts │ │ ├── new-on-expr-with-constructor-type.ts │ │ ├── new-target-property.ts │ │ ├── object-literal-type.ts │ │ ├── rest-array-attern.ts │ │ ├── satisfies-type.ts │ │ └── undefined-pattern.ts │ ├── jsx │ │ ├── jsx_core.tsx │ │ ├── jsx_fragment.tsx │ │ ├── jsx_namespace_name.tsx │ │ ├── jsx_self_closing_element.tsx │ │ └── jsx_text.tsx │ ├── modules │ │ ├── default-export-declaration-is-locally-visible.ts │ │ ├── default-exported-declaration-is-not-a-named-export.ts │ │ ├── export-as-namespace.ts │ │ ├── import-as-namespace.ts │ │ ├── import-default-class-definition-type-and-expression.ts │ │ ├── import-default-class-reference-type-and-expression.ts │ │ ├── import-default-enum-reference-type-and-expression.ts │ │ ├── import-default-expression.ts │ │ ├── import-default-interface.ts │ │ ├── import-default-type.ts │ │ ├── import-directly-exported-variable.ts │ │ ├── import-exports-class.ts │ │ ├── import-exports-object.ts │ │ ├── import-exports-of-indirect-class.ts.skip │ │ ├── import-extension-js.ts │ │ ├── import-extension-none.ts │ │ ├── import-extension-ts.ts │ │ ├── import-from-ambient-module-declaration.ts │ │ ├── import-from-own-direcotry-in-index.ts │ │ ├── import-from-own-project-subdirectory.ts │ │ ├── import-from-subdirectory.ts │ │ ├── import-from-superdirectory.ts │ │ ├── import-indirectly-exported-variable.ts │ │ ├── import-reexports-from-subdirectory-index.ts │ │ ├── import-reexports-from-superdirectory-index.ts │ │ ├── import-relative-to-project-root.ts.skip │ │ ├── import-via-index.ts │ │ ├── import-via-superdirectory.ts │ │ ├── import-via-two-reexports.ts │ │ ├── module-declaration-not-visible-in-other-module.ts │ │ ├── namespace-type-export.ts │ │ ├── namespace-variable-export.ts │ │ ├── reexport-as-object.ts │ │ ├── refer-to-separately-defined-subnamespace-from-supernamespace.ts.skip │ │ ├── refer-to-type-in-aprent-namespace-from-split-qualified-namespace.ts.skip │ │ ├── refer-to-type-in-nested-namespace-from-parent-namespace-with-partially-qualified-name.ts.skip │ │ ├── refer-to-type-in-nested-namespace-from-qualified-namespace.ts.skip │ │ ├── rename-imported-directly-exported-variable.ts │ │ ├── rename-imported-indirectly-exported-variable.ts │ │ ├── script-declaration-visible-in-other-module.ts │ │ ├── split-namespace-can-only-see-exports.ts │ │ ├── split-namespace-can-see-all-exports.ts.skip │ │ └── very-deep-namespace.ts │ ├── packages │ │ ├── can-access-package-non-main-explicilty.ts │ │ ├── package-does-not-export-non-main.ts │ │ ├── package-exports-explicit-main.ts │ │ ├── package-invisible-without-dependency.ts │ │ └── package-main-defaults-to-index.ts │ ├── projects │ │ ├── baseurl-to-subdir.ts │ │ ├── composite-project.ts │ │ ├── declarations-are-ignored.ts │ │ ├── empty-project-config.ts │ │ ├── exclude-second-subdir.ts │ │ ├── explicit-root-dir.ts │ │ ├── import-from-rootdirs-subdir.ts │ │ ├── import-from-rootdirs.ts │ │ ├── import-with-own-project-baseurl.ts │ │ ├── include-one-subdir.ts │ │ ├── invalid-paths-mappings.ts │ │ ├── js-sources-are-ignored.ts.skip │ │ ├── js-sources-can-be-allowed.ts.skip │ │ ├── non-relative-single-module-remap.ts │ │ ├── non-relative-star-remap.ts │ │ ├── non-relative-star-remaps.ts │ │ ├── one-file-in-subdir.ts │ │ ├── package-dependency-with-nested-source-root.ts │ │ ├── projects-are-isolated.ts │ │ ├── relative-import.ts │ │ ├── relative-single-module-remap.ts │ │ ├── relative-star-remap.ts │ │ ├── remap-with-baseurl.ts │ │ ├── sources-in-multiple-subdirs.ts │ │ └── sources-in-one-subdir.ts │ ├── statements │ │ ├── abstract-class-with-constructor.ts │ │ ├── ambient-module-declaration.ts │ │ ├── call-argument-type-shadows-type-parameter-default.ts.skip │ │ ├── class-static-block.ts │ │ ├── class-with-constructor.ts │ │ ├── const-with-value.ts │ │ ├── coverage.ts │ │ ├── deconstruct-tuple.ts │ │ ├── decorators.ts │ │ ├── define-after-use.ts │ │ ├── destructuring-var-defs.ts │ │ ├── enum-constant-not-a-type-member.ts │ │ ├── enum-object.ts │ │ ├── enum.ts │ │ ├── expression-statement.ts │ │ ├── for-let-initializer-scoping.ts │ │ ├── for-of-destructuring-var.ts │ │ ├── for-of-var-type.ts │ │ ├── for-var-initializer-scoping.ts │ │ ├── function-declaration.ts │ │ ├── function-type-inferred-from-deeply-nested-return.ts │ │ ├── function-type-inferred-from-direct-return.ts │ │ ├── function-type-inferred-from-nested-return.ts │ │ ├── getter-not-accessible-as-method.ts.skip │ │ ├── infer-arrow-function-literal-parameter-type-from-use-site.ts │ │ ├── infer-function-literal-parameter-type-from-let-type-annotation.ts │ │ ├── infer-function-literal-parameter-type-from-use-site.ts │ │ ├── let-and-var-with-type-annotation.ts │ │ ├── let-bound-variable-has-value-type.ts │ │ ├── let-with-value.ts │ │ ├── let-without-value.ts │ │ ├── member-and-subscript-expression-in-assignment-pattern.ts │ │ ├── multi-let.ts │ │ ├── new-on-class-expression.ts │ │ ├── qualified-decorators.ts │ │ ├── reexport-of-variable.ts │ │ ├── refer-to-class-in-nested-namespace-by-qualified-name.ts │ │ ├── refer-to-interface-in-nested-namespace-by-fully-qualified-name.ts │ │ ├── refer-to-interface-in-qualified-namespace-by-fully-qualified-name.ts │ │ ├── rename-imported-default.ts │ │ ├── renamed-reexport-of-default.ts │ │ ├── renamed-reexport-of-variable.ts │ │ ├── separate-expression-and-type-identifiers.ts │ │ ├── shadowing.ts │ │ ├── var-and-let-hoisting.ts │ │ ├── var-in-for-body-escapes.ts │ │ ├── var-with-value.ts │ │ ├── var-without-value.ts │ │ └── with.ts │ └── types │ │ ├── call-generic-function-with-generic-return-type-without-type-arguments.ts.skip │ │ ├── class-and-interface-inheritance.ts │ │ ├── class-extends-alias-of-generic-class.ts.skip │ │ ├── class-extends-and-implements.ts │ │ ├── class-extends-class-returned-from-function.ts.skip │ │ ├── class-extends-instance-of-generic-constructor-type.ts.skip │ │ ├── class-extends-via-alias.ts │ │ ├── class-implements-multiple-interfaces.ts │ │ ├── generic-interface-with-generic-field.ts.bug │ │ ├── generic-interface-with-generic-method.ts.skip │ │ ├── generic-interface-with-generic-super-type.ts.bug │ │ ├── generic-interface.ts │ │ ├── generic-type-alias.ts │ │ ├── indexed-lookup-type.ts.skip │ │ ├── indexed-type.ts.skip │ │ ├── interface-extends-multiple-interfaces.ts │ │ ├── interface-extends.ts │ │ ├── mixins.ts.skip │ │ ├── qualified-type-query.ts │ │ ├── tuple-type.ts │ │ ├── type-refs-in-type-expressions.ts │ │ ├── typeof-call.ts │ │ ├── typeof-member.ts │ │ └── typeof-variable.ts │ └── vscode │ ├── .gitignore │ ├── package-lock.json │ ├── package.json │ ├── src │ └── extension.ts │ └── tsconfig.json ├── lsp-positions ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── src │ └── lib.rs └── tests │ └── it │ └── main.rs ├── script ├── cbindgen ├── ci-comment-json ├── ci-perf-summary-md ├── ci-test-init └── ci-test-valgrind ├── stack-graphs ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── cbindgen.toml ├── include │ └── stack-graphs.h ├── src │ ├── arena.rs │ ├── assert.rs │ ├── c.rs │ ├── cycles.rs │ ├── debugging.rs │ ├── graph.rs │ ├── lib.rs │ ├── partial.rs │ ├── paths.rs │ ├── serde │ │ ├── filter.rs │ │ ├── graph.rs │ │ ├── mod.rs │ │ ├── partial.rs │ │ └── stitching.rs │ ├── stats.rs │ ├── stitching.rs │ ├── storage.rs │ ├── utils.rs │ ├── visualization.rs │ └── visualization │ │ ├── d3-dag.min.js │ │ ├── d3.min.js │ │ ├── visualization.css │ │ └── visualization.js └── tests │ └── it │ ├── arena.rs │ ├── c │ ├── can_create_graph.rs │ ├── can_find_local_nodes.rs │ ├── can_find_partial_paths_in_file.rs │ ├── can_find_qualified_definitions_with_phased_partial_path_stitching.rs │ ├── can_jump_to_definition.rs │ ├── can_jump_to_definition_with_phased_partial_path_stitching.rs │ ├── files.rs │ ├── mod.rs │ ├── nodes.rs │ ├── partial.rs │ ├── strings.rs │ ├── symbols.rs │ └── test_graph.rs │ ├── can_create_graph.rs │ ├── can_find_local_nodes.rs │ ├── can_find_node_partial_paths_in_database.rs │ ├── can_find_partial_paths_in_file.rs │ ├── can_find_root_partial_paths_in_database.rs │ ├── can_jump_to_definition.rs │ ├── can_jump_to_definition_with_forward_partial_path_stitching.rs │ ├── cycles.rs │ ├── graph.rs │ ├── main.rs │ ├── partial.rs │ ├── serde.rs │ ├── stats.rs │ ├── stitching.rs │ ├── storage.rs │ ├── test_graphs │ ├── class_field_through_function_parameter.rs │ ├── cyclic_imports_python.rs │ ├── cyclic_imports_rust.rs │ ├── mod.rs │ ├── sequenced_import_star.rs │ └── simple.rs │ └── util.rs ├── tree-sitter-stack-graphs ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── examples │ ├── .gitignore │ ├── README.md │ ├── bootstrap │ ├── modules │ │ ├── stack-graphs.tsg │ │ └── tests │ │ │ ├── import-all-definitions-from-nested-module.py │ │ │ ├── import-all-definitions-from-toplevel-module.py │ │ │ ├── import-single-definition-from-nested-module.py │ │ │ └── import-single-definition-from-toplevel-module.py │ ├── nested-scope │ │ ├── stack-graphs.tsg │ │ └── tests │ │ │ ├── nested-def.py │ │ │ ├── shadowing.py │ │ │ └── top-level-defs.py │ ├── parse │ ├── run │ └── sequential-definitions │ │ ├── stack-graphs.tsg │ │ └── tests │ │ └── shadow-previous-def.py ├── src │ ├── bin │ │ └── tree-sitter-stack-graphs │ │ │ └── main.rs │ ├── ci.rs │ ├── cli.rs │ ├── cli │ │ ├── clean.rs │ │ ├── database.rs │ │ ├── index.rs │ │ ├── init.rs │ │ ├── init │ │ │ └── license.rs │ │ ├── load.rs │ │ ├── lsp.rs │ │ ├── match.rs │ │ ├── parse.rs │ │ ├── query.rs │ │ ├── status.rs │ │ ├── test.rs │ │ ├── util.rs │ │ ├── util │ │ │ └── reporter.rs │ │ └── visualize.rs │ ├── functions.rs │ ├── lib.rs │ ├── loader.rs │ ├── test.rs │ └── util.rs └── tests │ └── it │ ├── builder.rs │ ├── edges.rs │ ├── loader.rs │ ├── main.rs │ ├── nodes.rs │ └── test.rs └── valgrind.supp /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/perf.yml -------------------------------------------------------------------------------- /.github/workflows/publish-lsp-positions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-lsp-positions.yml -------------------------------------------------------------------------------- /.github/workflows/publish-stack-graphs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-stack-graphs.yml -------------------------------------------------------------------------------- /.github/workflows/publish-tree-sitter-stack-graphs-java.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-tree-sitter-stack-graphs-java.yml -------------------------------------------------------------------------------- /.github/workflows/publish-tree-sitter-stack-graphs-javascript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-tree-sitter-stack-graphs-javascript.yml -------------------------------------------------------------------------------- /.github/workflows/publish-tree-sitter-stack-graphs-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-tree-sitter-stack-graphs-python.yml -------------------------------------------------------------------------------- /.github/workflows/publish-tree-sitter-stack-graphs-typescript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-tree-sitter-stack-graphs-typescript.yml -------------------------------------------------------------------------------- /.github/workflows/publish-tree-sitter-stack-graphs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.github/workflows/publish-tree-sitter-stack-graphs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/.zenodo.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /data/typescript_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/data/typescript_benchmark.md -------------------------------------------------------------------------------- /data/typescript_benchmark.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/data/typescript_benchmark.zip -------------------------------------------------------------------------------- /data/typescript_minimal_project.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/data/typescript_minimal_project.zip -------------------------------------------------------------------------------- /languages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/README.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | *.html 3 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/CHANGELOG.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/Cargo.toml -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/README.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/rust/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/rust/bin.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/rust/lib.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/rust/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/rust/test.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/src/builtins.cfg: -------------------------------------------------------------------------------- 1 | [globals] 2 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/src/builtins.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/src/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/src/stack-graphs.tsg -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/annotation_type_body.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/annotation_type_body.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/class_extension.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/class_extension.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/class_parameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/class_parameters.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/collection_import.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/collection_import.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/duplicate_type_identifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/duplicate_type_identifier.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/enum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/enum.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/enum_switches.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/enum_switches.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/field_declaration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/field_declaration.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/field_modifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/field_modifiers.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/import_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/import_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/interface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/interface.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/method_arguments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/method_arguments.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/method_overriding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/method_overriding.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/method_return.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/method_return.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/record.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/super_variable_declaration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/super_variable_declaration.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/decl/type_identifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/decl/type_identifier.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/array_access.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/array_access.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/array_creation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/array_creation.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/assignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/assignment.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/binary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/binary.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/cast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/cast.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/class_literal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/class_literal.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/instanceof.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/instanceof.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/lambda.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/lambda.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/method_call.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/method_call.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/method_reference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/method_reference.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/object_creation_expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/object_creation_expression.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/ternary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/ternary.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/unary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/unary.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/expression/update.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/expression/update.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/imports_and_exports/import_method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/imports_and_exports/import_method.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/imports_and_exports/imports.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/imports_and_exports/imports.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package_method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package_method.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package_not_leaking_method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/imports_and_exports/no_package_not_leaking_method.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/assert_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/assert_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/break.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/break.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/continue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/continue.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/do_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/do_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/enhanced_for_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/enhanced_for_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/for_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/for_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/getter_method.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/getter_method.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/if_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/if_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/labeled_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/labeled_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/return_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/return_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/switch_expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/switch_expression.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/synchronized_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/synchronized_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/try_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/try_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/try_with_resources_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/try_with_resources_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/while_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/while_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/statement/yield_statement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/statement/yield_statement.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/type/array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/type/array.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/type/generic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/type/generic.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/type/named.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/type/named.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-java/test/variable_declaration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-java/test/variable_declaration.java -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/.gitignore -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/CHANGELOG.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/Cargo.toml -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/README.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/docs/package-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/docs/package-structure.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/docs/package-structure/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/docs/package-structure/example.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/docs/package-structure/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/docs/package-structure/example.png -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/rust/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/rust/bin.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/rust/lib.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/rust/npm_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/rust/npm_package.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/rust/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/rust/test.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/rust/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/rust/util.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/src/builtins.cfg: -------------------------------------------------------------------------------- 1 | [globals] 2 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/src/builtins.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/src/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/src/stack-graphs.tsg -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/base_syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/base_syntax.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/array_index_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/array_index_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/assignment_destructuring_array_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/assignment_destructuring_array_pattern.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/assignment_destructuring_object_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/assignment_destructuring_object_pattern.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_constructor_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_constructor_field.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_field_definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_field_definitions.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_argument_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_argument_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_arguments_variable_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_arguments_variable_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_closure_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_closure_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_constant_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_method_call_constant_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_methods_visible_on_instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_methods_visible_on_instances.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_super_reference_to_method.js.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_super_reference_to_method.js.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_superclass_field_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_superclass_field_definition.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_superclass_methods_visible_on_instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_superclass_methods_visible_on_instances.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_this_field_and_method.js.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_declaration_this_field_and_method.js.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_constructor_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_constructor_field.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_field_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_field_definition.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_argument_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_argument_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_arguments_variable_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_arguments_variable_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_closure_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_closure_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_constant_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_method_call_constant_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_methods_visible_on_instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_methods_visible_on_instances.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_super_reference_to_method.js.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_super_reference_to_method.js.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_superclass_field_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_superclass_field_definition.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_superclass_methods_visible_on_instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_superclass_methods_visible_on_instances.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_this_field_and_method.js.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/class_expression_this_field_and_method.js.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_argument_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_argument_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_arguments_variable_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_arguments_variable_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_closure_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_closure_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_constant_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_constant_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_this_flow.js.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_this_flow.js.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_this_keyword_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_call_this_keyword_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_closure_mutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/function_closure_mutation.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/member_object_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/member_object_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/object_computed_property_name_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/object_computed_property_name_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/object_shorthand_property_identifier_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/object_shorthand_property_identifier_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/subscript_array_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/subscript_array_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/subscript_object_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/subscript_object_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/with_statement_binding_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/with_statement_binding_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/computation_flow/with_statement_scope_shadowing_flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/computation_flow/with_statement_scope_shadowing_flow.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/array.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/arrow_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/arrow_function.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/assignment_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/assignment_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/augmented_assignment_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/augmented_assignment_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/await.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/binary_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/binary_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/booleans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/booleans.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/call_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/call_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/class.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/comma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/comma.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/function.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/generator_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/generator_function.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/member_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/member_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/new_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/new_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/null.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/null.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/number.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/object.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/parenthesized_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/parenthesized_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/regex.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/string.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/subscript_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/subscript_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/super.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/template_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/template_strings.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/ternary_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/ternary_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/this.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/unary_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/unary_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/undefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/undefined.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/update_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/update_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/variable.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/expressions/yield_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/expressions/yield_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_core.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_fragment.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_namespace_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_namespace_name.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_self_closing_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_self_closing_element.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/jsx/jsx_text.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/default_arguments_from_enclosing_scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/default_arguments_from_enclosing_scope.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/default_arguments_from_other_arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/default_arguments_from_other_arguments.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments_with_defaults_from_enclosing_scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments_with_defaults_from_enclosing_scope.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments_with_defaults_from_other_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_assignments_with_defaults_from_other_variables.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_parameters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/binding/destructuring_parameters.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/binding/object_assignment_patterns.js: -------------------------------------------------------------------------------- 1 | let { x = 1 } = { "x": 5 }; 2 | 3 | x; 4 | // ^ defined: 1, 1 5 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2141.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2141.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2227.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2227.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2291.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/2291.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/CommonJS_default_export_with_ES6_default_import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/CommonJS_default_export_with_ES6_default_import.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/CommonJS_default_import_of_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/CommonJS_default_import_of_functions.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/array_assignment_interrupts_scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/array_assignment_interrupts_scope.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/if_statement_path_blowup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/if_statement_path_blowup.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/string_property_interrupts_scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/string_property_interrupts_scope.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/ternary_expression_path_blowup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/ternary_expression_path_blowup.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/variable_resolves_to_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/bug_regressions/variable_resolves_to_module.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_declaration.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression_superclasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression_superclasses.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression_this_field_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/class_expression_this_field_access.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/field_declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/field_declaration.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/function_class_this_field_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/function_class_this_field_access.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/method_call_this_argument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/method_call_this_argument.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/method_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/method_definition.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/superclasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/superclasses.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/this_field_access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/classes_and_instances/this_field_access.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/arrays.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/object_extend_method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/object_extend_method.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/compound_literals/objects.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/dowhile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/dowhile.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/for.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/forin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/forin.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/if.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/try.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/while.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/control_flow_statements/with.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/arguments_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/arguments_variable.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/call_arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/call_arguments.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/function_declarations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/function_declarations.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/function_values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/function_values.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/generator_function_declarations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/generator_function_declarations.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/generator_function_values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/functions_and_calls/generator_function_values.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/basic_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/basic_functions.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/functions_in_subscopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/functions_in_subscopes.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/hoisting/imports.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/CommonJS_import_ES6_export/export_with_name_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/CommonJS_import_ES6_export/export_with_name_default.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/ES6_import_CommonJS_export/export_with_name_default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/ES6_import_CommonJS_export/export_with_name_default.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/commonjs_imports_and_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/commonjs_imports_and_exports.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/es6_imports_and_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/es6_imports_and_exports.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/import_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/import_function.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/imports_and_exports/variable_visible_through_nonbinding_import.js: -------------------------------------------------------------------------------- 1 | let x = 42; 2 | 3 | import "./foo"; 4 | 5 | /**/ x; 6 | // ^ defined: 1 7 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/packages/can-access-package-non-main-explicilty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/packages/can-access-package-non-main-explicilty.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-does-not-export-non-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-does-not-export-non-main.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-exports-explicit-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-exports-explicit-main.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-main-defaults-to-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/packages/package-main-defaults-to-index.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/comma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/comma.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/template_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/template_strings.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/ternary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/ternary.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/old/simple_expressions/variables.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/patterns/array_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/patterns/array_pattern.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/patterns/assignment_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/patterns/assignment_pattern.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/patterns/function_declaration_formal_parameter_patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/patterns/function_declaration_formal_parameter_patterns.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/patterns/method_declaration_formal_parameter_patterns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/patterns/method_declaration_formal_parameter_patterns.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/patterns/object_pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/patterns/object_pattern.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/class_declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/class_declaration.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/debugger_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/debugger_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/do_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/do_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/empty_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/empty_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/export_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/export_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/for_in_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/for_in_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/for_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/for_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/function_declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/function_declaration.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/generator_function_declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/generator_function_declaration.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/hash_bang_line.js: -------------------------------------------------------------------------------- 1 | #! foo 2 | let x = 1; 3 | 4 | /**/ x; 5 | // ^ defined: 2 6 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/if_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/if_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/import_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/import_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/label_continue_break_statements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/label_continue_break_statements.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/label_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/label_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/lexical_declaration_basic_no_destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/lexical_declaration_basic_no_destructuring.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/return_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/return_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/statement_block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/statement_block.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/switch_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/switch_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/throw_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/throw_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/try_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/try_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/variable_declaration_basic_no_destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/variable_declaration_basic_no_destructuring.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/while_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/while_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-javascript/test/statements/with_statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-javascript/test/statements/with_statement.js -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | /Cargo.lock 3 | /target 4 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/CHANGELOG.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/Cargo.toml -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/README.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/rust/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/rust/bin.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/rust/lib.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/rust/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/rust/test.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/src/builtins.cfg: -------------------------------------------------------------------------------- 1 | [globals] 2 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/src/builtins.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/src/stack-graphs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/src/stack-graphs.scm -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/src/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/src/stack-graphs.tsg -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/aliased_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/aliased_imports.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/attributes.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/blocks.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/chained_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/chained_functions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/chained_methods.py.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/chained_methods.py.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/class_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/class_members.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/decorators.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/exceptions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/functions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imported_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imported_functions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_submodule.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_value_aliased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_a_value_aliased.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_wildcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_module_wildcard.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_submodule_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_submodule_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_super_package_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_super_package_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_super_package_submodule_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_super_package_submodule_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_this_package_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_this_package_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_from_this_package_submodule_a_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_from_this_package_submodule_a_value.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_module.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_module_aliased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_module_aliased.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_submodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_submodule.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/import_submodule_aliased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/import_submodule_aliased.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/relative_import_resolves_to_itself.py.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/relative_import_resolves_to_itself.py.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/imports/require_explicit_submodule_import.py.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/imports/require_explicit_submodule_import.py.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/instance_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/instance_members.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/lambdas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/lambdas.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/loops.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/many_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/many_definitions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/nested_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/nested_functions.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/not_a_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/not_a_method.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/pattern_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/pattern_matching.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/redundant_reexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/redundant_reexport.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/relative_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/relative_imports.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/root_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/root_path.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/self.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/statement_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/statement_bindings.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/superclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/superclasses.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/tuples.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-python/test/wildcard_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-python/test/wildcard_import.py -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/.gitignore -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/Cargo.toml -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/README.md -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/build.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/bin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/bin.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/lib.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/npm_package.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/npm_package.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/test.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/tsconfig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/tsconfig.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/rust/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/rust/util.rs -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/src/builtins.cfg: -------------------------------------------------------------------------------- 1 | [globals] 2 | PROJECT_NAME= 3 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/src/builtins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/src/builtins.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/src/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/src/stack-graphs.tsg -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/cannot-resolve-field-in-shadowed-object.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/cannot-resolve-field-in-shadowed-object.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/for-var-scoped-in-file-and-visible-inside-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/for-var-scoped-in-file-and-visible-inside-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/for-var-scoped-in-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/for-var-scoped-in-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/mutually-recursive-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/mutually-recursive-functions.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/nested-for-var-scoped-in-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/nested-for-var-scoped-in-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/var-reference-before-def.ts: -------------------------------------------------------------------------------- 1 | x = 1; 2 | //^ defined: 4 3 | 4 | var x; 5 | 6 | 7 | export {}; 8 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/base/var-scoped-in-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/base/var-scoped-in-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/async-arrow-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/async-arrow-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-definition.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-inferred-return-type-not-directly-accessible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/async-function-inferred-return-type-not-directly-accessible.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/async-method-with-inferred-return-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/async-method-with-inferred-return-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/await-async-function-with-inferred-return-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/await-async-function-with-inferred-return-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/await-function-with-explicit-return-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/await-function-with-explicit-return-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/await-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/await-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Array-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Array-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Map-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Map-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Set-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/builtins/builtin-Set-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/access-property-in-abstract-super-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/access-property-in-abstract-super-class.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/arrow-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/arrow-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/asserts-condition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/asserts-condition.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/asserts-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/asserts-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-class-abstract-super-class-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-class-abstract-super-class-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-class-super-interface-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-class-super-interface-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-declared-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-declared-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-function-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-function-literal.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-function-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-function-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-signature.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-with-default-without-type-arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function-with-default-without-type-arguments.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-generic-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-generic-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-generic-function.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-super-interface-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-interface-super-interface-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-let-bound-function-literal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-let-bound-function-literal.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-function-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-function-property.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-overloaded-method.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-overloaded-method.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-with-call-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-object-with-call-signature.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/call-with-template-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/call-with-template-string.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-getter-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-getter-property.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-into-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-into-array.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-into-object-with-index-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-into-object-with-index-signature.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-named-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-named-property.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-on-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-on-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/index-setter-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/index-setter-property.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/new-from-construct-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/new-from-construct-signature.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/new-on-aliased-class-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/new-on-aliased-class-object.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/new-on-expr-with-constructor-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/new-on-expr-with-constructor-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/new-target-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/new-target-property.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/object-literal-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/object-literal-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/rest-array-attern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/rest-array-attern.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/satisfies-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/satisfies-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/expressions/undefined-pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/expressions/undefined-pattern.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_core.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_core.tsx -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_fragment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_fragment.tsx -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_namespace_name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_namespace_name.tsx -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_self_closing_element.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_self_closing_element.tsx -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/jsx/jsx_text.tsx -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/default-export-declaration-is-locally-visible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/default-export-declaration-is-locally-visible.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/default-exported-declaration-is-not-a-named-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/default-exported-declaration-is-not-a-named-export.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/export-as-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/export-as-namespace.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-as-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-as-namespace.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-class-definition-type-and-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-class-definition-type-and-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-class-reference-type-and-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-class-reference-type-and-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-enum-reference-type-and-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-enum-reference-type-and-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-interface.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-default-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-directly-exported-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-directly-exported-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-class.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-object.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-of-indirect-class.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-exports-of-indirect-class.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-js.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-js.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-none.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-none.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-ts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-extension-ts.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-ambient-module-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-ambient-module-declaration.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-own-direcotry-in-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-own-direcotry-in-index.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-own-project-subdirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-own-project-subdirectory.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-subdirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-subdirectory.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-superdirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-from-superdirectory.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-indirectly-exported-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-indirectly-exported-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-reexports-from-subdirectory-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-reexports-from-subdirectory-index.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-reexports-from-superdirectory-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-reexports-from-superdirectory-index.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-relative-to-project-root.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-relative-to-project-root.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-index.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-superdirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-superdirectory.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-two-reexports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/import-via-two-reexports.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/module-declaration-not-visible-in-other-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/module-declaration-not-visible-in-other-module.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/namespace-type-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/namespace-type-export.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/namespace-variable-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/namespace-variable-export.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/reexport-as-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/reexport-as-object.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/refer-to-separately-defined-subnamespace-from-supernamespace.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/refer-to-separately-defined-subnamespace-from-supernamespace.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/refer-to-type-in-nested-namespace-from-qualified-namespace.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/refer-to-type-in-nested-namespace-from-qualified-namespace.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/rename-imported-directly-exported-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/rename-imported-directly-exported-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/rename-imported-indirectly-exported-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/rename-imported-indirectly-exported-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/script-declaration-visible-in-other-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/script-declaration-visible-in-other-module.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/split-namespace-can-only-see-exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/split-namespace-can-only-see-exports.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/split-namespace-can-see-all-exports.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/split-namespace-can-see-all-exports.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/modules/very-deep-namespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/modules/very-deep-namespace.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/packages/can-access-package-non-main-explicilty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/packages/can-access-package-non-main-explicilty.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/packages/package-does-not-export-non-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/packages/package-does-not-export-non-main.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/packages/package-exports-explicit-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/packages/package-exports-explicit-main.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/packages/package-invisible-without-dependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/packages/package-invisible-without-dependency.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/packages/package-main-defaults-to-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/packages/package-main-defaults-to-index.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/baseurl-to-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/baseurl-to-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/composite-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/composite-project.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/declarations-are-ignored.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/declarations-are-ignored.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/empty-project-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/empty-project-config.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/exclude-second-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/exclude-second-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/explicit-root-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/explicit-root-dir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/import-from-rootdirs-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/import-from-rootdirs-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/import-from-rootdirs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/import-from-rootdirs.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/import-with-own-project-baseurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/import-with-own-project-baseurl.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/include-one-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/include-one-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/invalid-paths-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/invalid-paths-mappings.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/js-sources-are-ignored.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/js-sources-are-ignored.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/js-sources-can-be-allowed.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/js-sources-can-be-allowed.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-single-module-remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-single-module-remap.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-star-remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-star-remap.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-star-remaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/non-relative-star-remaps.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/one-file-in-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/one-file-in-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/package-dependency-with-nested-source-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/package-dependency-with-nested-source-root.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/projects-are-isolated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/projects-are-isolated.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/relative-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/relative-import.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/relative-single-module-remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/relative-single-module-remap.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/relative-star-remap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/relative-star-remap.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/remap-with-baseurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/remap-with-baseurl.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/sources-in-multiple-subdirs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/sources-in-multiple-subdirs.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/projects/sources-in-one-subdir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/projects/sources-in-one-subdir.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/abstract-class-with-constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/abstract-class-with-constructor.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/ambient-module-declaration.ts: -------------------------------------------------------------------------------- 1 | declare module "*.ts" { 2 | export {}; 3 | } 4 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/call-argument-type-shadows-type-parameter-default.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/call-argument-type-shadows-type-parameter-default.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/class-static-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/class-static-block.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/class-with-constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/class-with-constructor.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/const-with-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/const-with-value.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/coverage.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/deconstruct-tuple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/deconstruct-tuple.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/decorators.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/define-after-use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/define-after-use.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/destructuring-var-defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/destructuring-var-defs.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/enum-constant-not-a-type-member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/enum-constant-not-a-type-member.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/enum-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/enum-object.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/enum.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/expression-statement.ts: -------------------------------------------------------------------------------- 1 | type T = number; 2 | 3 | 1 as T; 4 | // ^ defined: 1 5 | 6 | export {}; 7 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/for-let-initializer-scoping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/for-let-initializer-scoping.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/for-of-destructuring-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/for-of-destructuring-var.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/for-of-var-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/for-of-var-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/for-var-initializer-scoping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/for-var-initializer-scoping.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/function-declaration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/function-declaration.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-deeply-nested-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-deeply-nested-return.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-direct-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-direct-return.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-nested-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/function-type-inferred-from-nested-return.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/getter-not-accessible-as-method.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/getter-not-accessible-as-method.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/infer-arrow-function-literal-parameter-type-from-use-site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/infer-arrow-function-literal-parameter-type-from-use-site.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/infer-function-literal-parameter-type-from-let-type-annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/infer-function-literal-parameter-type-from-let-type-annotation.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/infer-function-literal-parameter-type-from-use-site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/infer-function-literal-parameter-type-from-use-site.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/let-and-var-with-type-annotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/let-and-var-with-type-annotation.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/let-bound-variable-has-value-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/let-bound-variable-has-value-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/let-with-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/let-with-value.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/let-without-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/let-without-value.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/member-and-subscript-expression-in-assignment-pattern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/member-and-subscript-expression-in-assignment-pattern.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/multi-let.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/multi-let.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/new-on-class-expression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/new-on-class-expression.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/qualified-decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/qualified-decorators.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/reexport-of-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/reexport-of-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/refer-to-class-in-nested-namespace-by-qualified-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/refer-to-class-in-nested-namespace-by-qualified-name.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/rename-imported-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/rename-imported-default.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/renamed-reexport-of-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/renamed-reexport-of-default.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/renamed-reexport-of-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/renamed-reexport-of-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/separate-expression-and-type-identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/separate-expression-and-type-identifiers.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/shadowing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/shadowing.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/var-and-let-hoisting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/var-and-let-hoisting.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/var-in-for-body-escapes.ts: -------------------------------------------------------------------------------- 1 | for(;;) var x = 42; 2 | 3 | x; 4 | //^ defined: 1 5 | 6 | export {}; 7 | -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/var-with-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/var-with-value.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/var-without-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/var-without-value.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/statements/with.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/statements/with.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-and-interface-inheritance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-and-interface-inheritance.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-alias-of-generic-class.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-alias-of-generic-class.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-and-implements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-and-implements.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-class-returned-from-function.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-class-returned-from-function.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-instance-of-generic-constructor-type.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-instance-of-generic-constructor-type.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-via-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-extends-via-alias.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/class-implements-multiple-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/class-implements-multiple-interfaces.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-field.ts.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-field.ts.bug -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-method.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-method.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-super-type.ts.bug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface-with-generic-super-type.ts.bug -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/generic-interface.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/generic-type-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/generic-type-alias.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/indexed-lookup-type.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/indexed-lookup-type.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/indexed-type.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/indexed-type.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/interface-extends-multiple-interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/interface-extends-multiple-interfaces.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/interface-extends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/interface-extends.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/mixins.ts.skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/mixins.ts.skip -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/qualified-type-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/qualified-type-query.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/tuple-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/tuple-type.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/type-refs-in-type-expressions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/type-refs-in-type-expressions.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/typeof-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/typeof-call.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/typeof-member.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/typeof-member.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/test/types/typeof-variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/test/types/typeof-variable.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/vscode/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/vscode/.gitignore -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/vscode/package-lock.json -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/vscode/package.json -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/vscode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/vscode/src/extension.ts -------------------------------------------------------------------------------- /languages/tree-sitter-stack-graphs-typescript/vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/languages/tree-sitter-stack-graphs-typescript/vscode/tsconfig.json -------------------------------------------------------------------------------- /lsp-positions/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/lsp-positions/CHANGELOG.md -------------------------------------------------------------------------------- /lsp-positions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/lsp-positions/Cargo.toml -------------------------------------------------------------------------------- /lsp-positions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/lsp-positions/README.md -------------------------------------------------------------------------------- /lsp-positions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/lsp-positions/src/lib.rs -------------------------------------------------------------------------------- /lsp-positions/tests/it/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/lsp-positions/tests/it/main.rs -------------------------------------------------------------------------------- /script/cbindgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/script/cbindgen -------------------------------------------------------------------------------- /script/ci-comment-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/script/ci-comment-json -------------------------------------------------------------------------------- /script/ci-perf-summary-md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/script/ci-perf-summary-md -------------------------------------------------------------------------------- /script/ci-test-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/script/ci-test-init -------------------------------------------------------------------------------- /script/ci-test-valgrind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/script/ci-test-valgrind -------------------------------------------------------------------------------- /stack-graphs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/CHANGELOG.md -------------------------------------------------------------------------------- /stack-graphs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/Cargo.toml -------------------------------------------------------------------------------- /stack-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/README.md -------------------------------------------------------------------------------- /stack-graphs/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/cbindgen.toml -------------------------------------------------------------------------------- /stack-graphs/include/stack-graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/include/stack-graphs.h -------------------------------------------------------------------------------- /stack-graphs/src/arena.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/arena.rs -------------------------------------------------------------------------------- /stack-graphs/src/assert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/assert.rs -------------------------------------------------------------------------------- /stack-graphs/src/c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/c.rs -------------------------------------------------------------------------------- /stack-graphs/src/cycles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/cycles.rs -------------------------------------------------------------------------------- /stack-graphs/src/debugging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/debugging.rs -------------------------------------------------------------------------------- /stack-graphs/src/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/graph.rs -------------------------------------------------------------------------------- /stack-graphs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/lib.rs -------------------------------------------------------------------------------- /stack-graphs/src/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/partial.rs -------------------------------------------------------------------------------- /stack-graphs/src/paths.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/paths.rs -------------------------------------------------------------------------------- /stack-graphs/src/serde/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/serde/filter.rs -------------------------------------------------------------------------------- /stack-graphs/src/serde/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/serde/graph.rs -------------------------------------------------------------------------------- /stack-graphs/src/serde/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/serde/mod.rs -------------------------------------------------------------------------------- /stack-graphs/src/serde/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/serde/partial.rs -------------------------------------------------------------------------------- /stack-graphs/src/serde/stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/serde/stitching.rs -------------------------------------------------------------------------------- /stack-graphs/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/stats.rs -------------------------------------------------------------------------------- /stack-graphs/src/stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/stitching.rs -------------------------------------------------------------------------------- /stack-graphs/src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/storage.rs -------------------------------------------------------------------------------- /stack-graphs/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/utils.rs -------------------------------------------------------------------------------- /stack-graphs/src/visualization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/visualization.rs -------------------------------------------------------------------------------- /stack-graphs/src/visualization/d3-dag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/visualization/d3-dag.min.js -------------------------------------------------------------------------------- /stack-graphs/src/visualization/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/visualization/d3.min.js -------------------------------------------------------------------------------- /stack-graphs/src/visualization/visualization.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/visualization/visualization.css -------------------------------------------------------------------------------- /stack-graphs/src/visualization/visualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/src/visualization/visualization.js -------------------------------------------------------------------------------- /stack-graphs/tests/it/arena.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/arena.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_create_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_create_graph.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_find_local_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_find_local_nodes.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_find_partial_paths_in_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_find_partial_paths_in_file.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_find_qualified_definitions_with_phased_partial_path_stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_find_qualified_definitions_with_phased_partial_path_stitching.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_jump_to_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_jump_to_definition.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/can_jump_to_definition_with_phased_partial_path_stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/can_jump_to_definition_with_phased_partial_path_stitching.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/files.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/mod.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/nodes.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/partial.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/strings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/strings.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/symbols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/symbols.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/c/test_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/c/test_graph.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_create_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_create_graph.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_find_local_nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_find_local_nodes.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_find_node_partial_paths_in_database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_find_node_partial_paths_in_database.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_find_partial_paths_in_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_find_partial_paths_in_file.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_find_root_partial_paths_in_database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_find_root_partial_paths_in_database.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_jump_to_definition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_jump_to_definition.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/can_jump_to_definition_with_forward_partial_path_stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/can_jump_to_definition_with_forward_partial_path_stitching.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/cycles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/cycles.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/graph.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/main.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/partial.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/serde.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/stats.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/stitching.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/stitching.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/storage.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/class_field_through_function_parameter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/class_field_through_function_parameter.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/cyclic_imports_python.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/cyclic_imports_python.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/cyclic_imports_rust.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/cyclic_imports_rust.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/mod.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/sequenced_import_star.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/sequenced_import_star.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/test_graphs/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/test_graphs/simple.rs -------------------------------------------------------------------------------- /stack-graphs/tests/it/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/stack-graphs/tests/it/util.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/CHANGELOG.md -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/Cargo.toml -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/README.md -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /.tree-sitter-python@* 2 | /**/tests/*.html 3 | -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/README.md -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/bootstrap -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/modules/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/modules/stack-graphs.tsg -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/modules/tests/import-all-definitions-from-nested-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/modules/tests/import-all-definitions-from-nested-module.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/modules/tests/import-all-definitions-from-toplevel-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/modules/tests/import-all-definitions-from-toplevel-module.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/modules/tests/import-single-definition-from-nested-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/modules/tests/import-single-definition-from-nested-module.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/modules/tests/import-single-definition-from-toplevel-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/modules/tests/import-single-definition-from-toplevel-module.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/nested-scope/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/nested-scope/stack-graphs.tsg -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/nested-scope/tests/nested-def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/nested-scope/tests/nested-def.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/nested-scope/tests/shadowing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/nested-scope/tests/shadowing.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/nested-scope/tests/top-level-defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/nested-scope/tests/top-level-defs.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/parse -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/run -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/sequential-definitions/stack-graphs.tsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/sequential-definitions/stack-graphs.tsg -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/examples/sequential-definitions/tests/shadow-previous-def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/examples/sequential-definitions/tests/shadow-previous-def.py -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/bin/tree-sitter-stack-graphs/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/bin/tree-sitter-stack-graphs/main.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/ci.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/ci.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/clean.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/clean.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/database.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/database.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/index.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/index.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/init.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/init/license.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/init/license.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/load.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/lsp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/lsp.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/match.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/match.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/parse.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/query.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/status.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/test.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/util.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/util/reporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/util/reporter.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/cli/visualize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/cli/visualize.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/functions.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/lib.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/loader.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/test.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/src/util.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/builder.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/edges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/edges.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/loader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/loader.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/main.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/nodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/nodes.rs -------------------------------------------------------------------------------- /tree-sitter-stack-graphs/tests/it/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/tree-sitter-stack-graphs/tests/it/test.rs -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/stack-graphs/HEAD/valgrind.supp --------------------------------------------------------------------------------