├── .buildkite ├── base-pipeline.yml ├── check-all.sh ├── ci-checkov.sh ├── gen-pipeline.sh ├── generate-and-publish.sh ├── hooks │ └── pre-command ├── lint.sh └── test.sh ├── .editorconfig ├── .eslintrc.js ├── .github └── CODEOWNERS ├── .gitignore ├── .mocharc.js ├── .nvmrc ├── .prettierignore ├── .tool-versions ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── codecov.yml ├── icons ├── apex.png ├── clojure.png ├── cobol.png ├── cpp.png ├── csharp.png ├── cuda.png ├── dart.png ├── elixir.png ├── erlang.png ├── go.png ├── graphql.png ├── groovy.png ├── haskell.png ├── java.png ├── jsonnet.png ├── kotlin.png ├── lisp.png ├── lua.png ├── ocaml.png ├── pascal.png ├── perl.png ├── php.png ├── powershell.png ├── protobuf.png ├── python.png ├── r.png ├── ruby.png ├── rust.png ├── scala.png ├── shell.png ├── starlark.png ├── strato.png ├── swift.png ├── tcl.png ├── thrift.png ├── typescript.png ├── verilog.png └── vhdl.png ├── package.json ├── prettier.config.js ├── renovate.json ├── schema └── schema.graphql ├── scripts ├── args.ts ├── generate.ts ├── publish.ts └── tsconfig.json ├── template ├── README.md ├── package.json ├── src │ ├── extension.ts │ ├── indicators.ts │ ├── init.test.ts │ ├── language-specs │ │ ├── comments.ts │ │ ├── cpp.test.ts │ │ ├── cpp.ts │ │ ├── go.test.ts │ │ ├── go.ts │ │ ├── icons.test.ts │ │ ├── identifiers.ts │ │ ├── java.test.ts │ │ ├── java.ts │ │ ├── languages.ts │ │ ├── python.test.ts │ │ ├── python.ts │ │ ├── spec.test.ts │ │ ├── spec.ts │ │ ├── typescript.test.ts │ │ ├── typescript.ts │ │ └── util.ts │ ├── language.ts │ ├── logging.ts │ ├── lsif │ │ ├── api.ts │ │ ├── definition-hover.test.ts │ │ ├── definition-hover.ts │ │ ├── highlights.test.ts │ │ ├── highlights.ts │ │ ├── implementations.ts │ │ ├── locations.test.ts │ │ ├── locations.ts │ │ ├── providers.test.ts │ │ ├── providers.ts │ │ ├── ranges.test.ts │ │ ├── ranges.ts │ │ ├── references.test.ts │ │ ├── references.ts │ │ ├── stencil.test.ts │ │ ├── stencil.ts │ │ └── util.test.ts │ ├── providers.test.ts │ ├── providers.ts │ ├── search │ │ ├── config.ts │ │ ├── conversion.test.ts │ │ ├── conversion.ts │ │ ├── docstrings.test.ts │ │ ├── docstrings.ts │ │ ├── markdown.test.ts │ │ ├── markdown.ts │ │ ├── providers.test.ts │ │ ├── providers.ts │ │ ├── queries.test.ts │ │ ├── queries.ts │ │ ├── settings.ts │ │ ├── squirrel.ts │ │ ├── tokens.test.ts │ │ └── tokens.ts │ ├── telemetry.ts │ ├── util.ts │ └── util │ │ ├── api.ts │ │ ├── graphql.ts │ │ ├── helpers.ts │ │ ├── ix.test.ts │ │ ├── ix.ts │ │ ├── promise.ts │ │ ├── uri.test.ts │ │ └── uri.ts ├── tsconfig.json └── yarn.lock ├── tsconfig.json └── yarn.lock /.buildkite/base-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/base-pipeline.yml -------------------------------------------------------------------------------- /.buildkite/check-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/check-all.sh -------------------------------------------------------------------------------- /.buildkite/ci-checkov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/ci-checkov.sh -------------------------------------------------------------------------------- /.buildkite/gen-pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/gen-pipeline.sh -------------------------------------------------------------------------------- /.buildkite/generate-and-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/generate-and-publish.sh -------------------------------------------------------------------------------- /.buildkite/hooks/pre-command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/hooks/pre-command -------------------------------------------------------------------------------- /.buildkite/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/lint.sh -------------------------------------------------------------------------------- /.buildkite/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.buildkite/test.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.mocharc.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.20.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .cache 2 | .nyc_output 3 | coverage 4 | dist 5 | generated-* 6 | node_modules 7 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | yarn 1.22.11 2 | python system 3 | nodejs 16.7.0 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: off 2 | -------------------------------------------------------------------------------- /icons/apex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/apex.png -------------------------------------------------------------------------------- /icons/clojure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/clojure.png -------------------------------------------------------------------------------- /icons/cobol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/cobol.png -------------------------------------------------------------------------------- /icons/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/cpp.png -------------------------------------------------------------------------------- /icons/csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/csharp.png -------------------------------------------------------------------------------- /icons/cuda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/cuda.png -------------------------------------------------------------------------------- /icons/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/dart.png -------------------------------------------------------------------------------- /icons/elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/elixir.png -------------------------------------------------------------------------------- /icons/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/erlang.png -------------------------------------------------------------------------------- /icons/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/go.png -------------------------------------------------------------------------------- /icons/graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/graphql.png -------------------------------------------------------------------------------- /icons/groovy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/groovy.png -------------------------------------------------------------------------------- /icons/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/haskell.png -------------------------------------------------------------------------------- /icons/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/java.png -------------------------------------------------------------------------------- /icons/jsonnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/jsonnet.png -------------------------------------------------------------------------------- /icons/kotlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/kotlin.png -------------------------------------------------------------------------------- /icons/lisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/lisp.png -------------------------------------------------------------------------------- /icons/lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/lua.png -------------------------------------------------------------------------------- /icons/ocaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/ocaml.png -------------------------------------------------------------------------------- /icons/pascal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/pascal.png -------------------------------------------------------------------------------- /icons/perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/perl.png -------------------------------------------------------------------------------- /icons/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/php.png -------------------------------------------------------------------------------- /icons/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/powershell.png -------------------------------------------------------------------------------- /icons/protobuf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/protobuf.png -------------------------------------------------------------------------------- /icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/python.png -------------------------------------------------------------------------------- /icons/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/r.png -------------------------------------------------------------------------------- /icons/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/ruby.png -------------------------------------------------------------------------------- /icons/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/rust.png -------------------------------------------------------------------------------- /icons/scala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/scala.png -------------------------------------------------------------------------------- /icons/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/shell.png -------------------------------------------------------------------------------- /icons/starlark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/starlark.png -------------------------------------------------------------------------------- /icons/strato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/strato.png -------------------------------------------------------------------------------- /icons/swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/swift.png -------------------------------------------------------------------------------- /icons/tcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/tcl.png -------------------------------------------------------------------------------- /icons/thrift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/thrift.png -------------------------------------------------------------------------------- /icons/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/typescript.png -------------------------------------------------------------------------------- /icons/verilog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/verilog.png -------------------------------------------------------------------------------- /icons/vhdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/icons/vhdl.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@sourcegraph/prettierrc') 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/renovate.json -------------------------------------------------------------------------------- /schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/schema/schema.graphql -------------------------------------------------------------------------------- /scripts/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/scripts/args.ts -------------------------------------------------------------------------------- /scripts/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/scripts/generate.ts -------------------------------------------------------------------------------- /scripts/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/scripts/publish.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | } 4 | -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/README.md -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/extension.ts -------------------------------------------------------------------------------- /template/src/indicators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/indicators.ts -------------------------------------------------------------------------------- /template/src/init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/init.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/comments.ts -------------------------------------------------------------------------------- /template/src/language-specs/cpp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/cpp.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/cpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/cpp.ts -------------------------------------------------------------------------------- /template/src/language-specs/go.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/go.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/go.ts -------------------------------------------------------------------------------- /template/src/language-specs/icons.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/icons.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/identifiers.ts -------------------------------------------------------------------------------- /template/src/language-specs/java.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/java.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/java.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/java.ts -------------------------------------------------------------------------------- /template/src/language-specs/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/languages.ts -------------------------------------------------------------------------------- /template/src/language-specs/python.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/python.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/python.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/python.ts -------------------------------------------------------------------------------- /template/src/language-specs/spec.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/spec.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/spec.ts -------------------------------------------------------------------------------- /template/src/language-specs/typescript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/typescript.test.ts -------------------------------------------------------------------------------- /template/src/language-specs/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/typescript.ts -------------------------------------------------------------------------------- /template/src/language-specs/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/language-specs/util.ts -------------------------------------------------------------------------------- /template/src/language.ts: -------------------------------------------------------------------------------- 1 | // Set during template generation 2 | export const languageID = 'LANGID' 3 | -------------------------------------------------------------------------------- /template/src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/logging.ts -------------------------------------------------------------------------------- /template/src/lsif/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/api.ts -------------------------------------------------------------------------------- /template/src/lsif/definition-hover.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/definition-hover.test.ts -------------------------------------------------------------------------------- /template/src/lsif/definition-hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/definition-hover.ts -------------------------------------------------------------------------------- /template/src/lsif/highlights.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/highlights.test.ts -------------------------------------------------------------------------------- /template/src/lsif/highlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/highlights.ts -------------------------------------------------------------------------------- /template/src/lsif/implementations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/implementations.ts -------------------------------------------------------------------------------- /template/src/lsif/locations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/locations.test.ts -------------------------------------------------------------------------------- /template/src/lsif/locations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/locations.ts -------------------------------------------------------------------------------- /template/src/lsif/providers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/providers.test.ts -------------------------------------------------------------------------------- /template/src/lsif/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/providers.ts -------------------------------------------------------------------------------- /template/src/lsif/ranges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/ranges.test.ts -------------------------------------------------------------------------------- /template/src/lsif/ranges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/ranges.ts -------------------------------------------------------------------------------- /template/src/lsif/references.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/references.test.ts -------------------------------------------------------------------------------- /template/src/lsif/references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/references.ts -------------------------------------------------------------------------------- /template/src/lsif/stencil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/stencil.test.ts -------------------------------------------------------------------------------- /template/src/lsif/stencil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/stencil.ts -------------------------------------------------------------------------------- /template/src/lsif/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/lsif/util.test.ts -------------------------------------------------------------------------------- /template/src/providers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/providers.test.ts -------------------------------------------------------------------------------- /template/src/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/providers.ts -------------------------------------------------------------------------------- /template/src/search/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/config.ts -------------------------------------------------------------------------------- /template/src/search/conversion.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/conversion.test.ts -------------------------------------------------------------------------------- /template/src/search/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/conversion.ts -------------------------------------------------------------------------------- /template/src/search/docstrings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/docstrings.test.ts -------------------------------------------------------------------------------- /template/src/search/docstrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/docstrings.ts -------------------------------------------------------------------------------- /template/src/search/markdown.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/markdown.test.ts -------------------------------------------------------------------------------- /template/src/search/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/markdown.ts -------------------------------------------------------------------------------- /template/src/search/providers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/providers.test.ts -------------------------------------------------------------------------------- /template/src/search/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/providers.ts -------------------------------------------------------------------------------- /template/src/search/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/queries.test.ts -------------------------------------------------------------------------------- /template/src/search/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/queries.ts -------------------------------------------------------------------------------- /template/src/search/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/settings.ts -------------------------------------------------------------------------------- /template/src/search/squirrel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/squirrel.ts -------------------------------------------------------------------------------- /template/src/search/tokens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/tokens.test.ts -------------------------------------------------------------------------------- /template/src/search/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/search/tokens.ts -------------------------------------------------------------------------------- /template/src/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/telemetry.ts -------------------------------------------------------------------------------- /template/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util.ts -------------------------------------------------------------------------------- /template/src/util/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/api.ts -------------------------------------------------------------------------------- /template/src/util/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/graphql.ts -------------------------------------------------------------------------------- /template/src/util/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/helpers.ts -------------------------------------------------------------------------------- /template/src/util/ix.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/ix.test.ts -------------------------------------------------------------------------------- /template/src/util/ix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/ix.ts -------------------------------------------------------------------------------- /template/src/util/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/promise.ts -------------------------------------------------------------------------------- /template/src/util/uri.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/uri.test.ts -------------------------------------------------------------------------------- /template/src/util/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/src/util/uri.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/template/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sourcegraph/code-intel-extensions/HEAD/yarn.lock --------------------------------------------------------------------------------