From 4188d25ebe3ab6dbc2ef22b33e53189c3f80b778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 12:12:57 +0200 Subject: [PATCH 1/7] Expose the internals under our module path Rename tsc/internal to tsc/pkg, which Go lets other modules import, and name the module github.com/frida/TypeScript/tsc. --- .dprint.jsonc | 12 +- .github/agents/replay-minimizer.md | 2 +- .github/codeql/codeql-configuration.yml | 4 +- .github/copilot-instructions.md | 4 +- .../compiler-and-fourslash-tests/SKILL.md | 16 +-- .github/workflows/ci.yml | 4 +- .golangci.yml | 4 +- .vscode/launch.template.json | 8 +- Herebyfile.mjs | 76 +++++----- .../typescript/src/enums/checkFlags.enum.ts | 2 +- packages/typescript/src/enums/checkFlags.ts | 2 +- .../src/enums/completionItemKind.enum.ts | 2 +- .../src/enums/completionItemKind.ts | 2 +- .../src/enums/diagnosticCategory.enum.ts | 2 +- .../src/enums/diagnosticCategory.ts | 2 +- .../enums/diagnosticDirectivePolicy.enum.ts | 2 +- .../src/enums/diagnosticDirectivePolicy.ts | 2 +- .../typescript/src/enums/elementFlags.enum.ts | 2 +- packages/typescript/src/enums/elementFlags.ts | 2 +- .../typescript/src/enums/emitOnly.enum.ts | 2 +- packages/typescript/src/enums/emitOnly.ts | 2 +- .../src/enums/internalSymbolName.enum.ts | 2 +- .../src/enums/internalSymbolName.ts | 2 +- packages/typescript/src/enums/jsxEmit.enum.ts | 2 +- packages/typescript/src/enums/jsxEmit.ts | 2 +- .../src/enums/modifierFlags.enum.ts | 2 +- .../typescript/src/enums/modifierFlags.ts | 2 +- .../src/enums/moduleDetectionKind.enum.ts | 2 +- .../src/enums/moduleDetectionKind.ts | 2 +- .../typescript/src/enums/moduleKind.enum.ts | 2 +- packages/typescript/src/enums/moduleKind.ts | 2 +- .../src/enums/moduleResolutionKind.enum.ts | 2 +- .../src/enums/moduleResolutionKind.ts | 2 +- .../typescript/src/enums/newLineKind.enum.ts | 2 +- packages/typescript/src/enums/newLineKind.ts | 2 +- .../src/enums/nodeBuilderFlags.enum.ts | 2 +- .../typescript/src/enums/nodeBuilderFlags.ts | 2 +- .../typescript/src/enums/nodeFlags.enum.ts | 2 +- packages/typescript/src/enums/nodeFlags.ts | 2 +- .../typescript/src/enums/objectFlags.enum.ts | 2 +- packages/typescript/src/enums/objectFlags.ts | 2 +- .../src/enums/outerExpressionKinds.enum.ts | 2 +- .../src/enums/outerExpressionKinds.ts | 2 +- .../typescript/src/enums/scriptKind.enum.ts | 2 +- packages/typescript/src/enums/scriptKind.ts | 2 +- .../src/enums/signatureFlags.enum.ts | 2 +- .../typescript/src/enums/signatureFlags.ts | 2 +- .../src/enums/signatureKind.enum.ts | 2 +- .../typescript/src/enums/signatureKind.ts | 2 +- .../src/enums/spanMapFeature.enum.ts | 2 +- .../typescript/src/enums/spanMapFeature.ts | 2 +- .../src/enums/spanMapFidelity.enum.ts | 2 +- .../typescript/src/enums/spanMapFidelity.ts | 2 +- .../typescript/src/enums/spanMapKind.enum.ts | 2 +- packages/typescript/src/enums/spanMapKind.ts | 2 +- .../typescript/src/enums/symbolFlags.enum.ts | 2 +- packages/typescript/src/enums/symbolFlags.ts | 2 +- .../typescript/src/enums/syntaxKind.enum.ts | 2 +- packages/typescript/src/enums/syntaxKind.ts | 2 +- .../typescript/src/enums/tokenFlags.enum.ts | 2 +- packages/typescript/src/enums/tokenFlags.ts | 2 +- .../typescript/src/enums/typeFlags.enum.ts | 2 +- packages/typescript/src/enums/typeFlags.ts | 2 +- .../src/enums/typeFormatFlags.enum.ts | 2 +- .../typescript/src/enums/typeFormatFlags.ts | 2 +- .../src/enums/typePredicateKind.enum.ts | 2 +- .../typescript/src/enums/typePredicateKind.ts | 2 +- packages/vscode-typescript/src/client.ts | 2 +- tools/gen-proto/main.go | 20 +-- tools/scripts/tsc/generate-encoder.ts | 8 +- tools/scripts/tsc/generate-go-ast.ts | 6 +- tsc/cmd/tsc/api.go | 6 +- tsc/cmd/tsc/lsp.go | 10 +- tsc/cmd/tsc/main.go | 6 +- tsc/cmd/tsc/sys.go | 10 +- tsc/go.mod | 2 +- tsc/internal/lsp/stack_sanitizer_test.go | 136 ------------------ tsc/{internal => pkg}/api/callbackfs.go | 6 +- tsc/{internal => pkg}/api/encoder/decoder.go | 6 +- .../api/encoder/decoder_generated.go | 2 +- .../api/encoder/decoder_test.go | 10 +- tsc/{internal => pkg}/api/encoder/encoder.go | 6 +- .../api/encoder/encoder_generated.go | 2 +- .../api/encoder/encoder_test.go | 12 +- .../api/encoder/stringtable.go | 2 +- .../api/encoder/testmain_test.go | 4 +- .../api/enum_values_generated.go | 16 +-- tsc/{internal => pkg}/api/jsonvalue_test.go | 6 +- tsc/{internal => pkg}/api/proto.go | 32 ++--- tsc/{internal => pkg}/api/proto_test.go | 12 +- tsc/{internal => pkg}/api/protocol_msgpack.go | 6 +- tsc/{internal => pkg}/api/server.go | 12 +- tsc/{internal => pkg}/api/session.go | 44 +++--- .../api/session_apistate_test.go | 10 +- .../api/session_batch_test.go | 4 +- .../api/session_completion_test.go | 8 +- .../api/session_createprogram_test.go | 10 +- .../api/session_temporary_test.go | 6 +- .../api/session_textedit_test.go | 10 +- .../api/stringer_generated.go | 0 tsc/{internal => pkg}/ast/ast.go | 10 +- tsc/{internal => pkg}/ast/ast_generated.go | 2 +- tsc/{internal => pkg}/ast/checkflags.go | 0 tsc/{internal => pkg}/ast/deepclone.go | 2 +- tsc/{internal => pkg}/ast/deepclone_test.go | 4 +- tsc/{internal => pkg}/ast/diagnostic.go | 10 +- tsc/{internal => pkg}/ast/diagnostic_test.go | 6 +- tsc/{internal => pkg}/ast/flow.go | 0 tsc/{internal => pkg}/ast/functionflags.go | 0 tsc/{internal => pkg}/ast/ids.go | 0 tsc/{internal => pkg}/ast/kind_generated.go | 0 .../ast/kind_stringer_generated.go | 0 tsc/{internal => pkg}/ast/modifierflags.go | 0 tsc/{internal => pkg}/ast/nodeflags.go | 0 tsc/{internal => pkg}/ast/parseoptions.go | 4 +- tsc/{internal => pkg}/ast/positionmap.go | 2 +- tsc/{internal => pkg}/ast/positionmap_test.go | 4 +- tsc/{internal => pkg}/ast/precedence.go | 0 tsc/{internal => pkg}/ast/subtreefacts.go | 2 +- tsc/{internal => pkg}/ast/symbol.go | 0 tsc/{internal => pkg}/ast/symbolflags.go | 0 tsc/{internal => pkg}/ast/tokenflags.go | 0 tsc/{internal => pkg}/ast/utilities.go | 6 +- .../ast/utilities_bench_test.go | 12 +- tsc/{internal => pkg}/ast/visitor.go | 0 tsc/{internal => pkg}/astnav/testmain_test.go | 4 +- tsc/{internal => pkg}/astnav/tokens.go | 6 +- tsc/{internal => pkg}/astnav/tokens_test.go | 14 +- tsc/{internal => pkg}/binder/binder.go | 14 +- tsc/{internal => pkg}/binder/binder_test.go | 12 +- tsc/{internal => pkg}/binder/nameresolver.go | 6 +- .../binder/referenceresolver.go | 6 +- .../bundled/CopyrightNotice.txt | 0 tsc/{internal => pkg}/bundled/README.md | 0 tsc/{internal => pkg}/bundled/bundled.go | 4 +- tsc/{internal => pkg}/bundled/bundled_test.go | 8 +- tsc/{internal => pkg}/bundled/embed.go | 2 +- .../bundled/embed_generated.go | 0 tsc/{internal => pkg}/bundled/generate.go | 0 tsc/{internal => pkg}/bundled/libs/lib.d.ts | 0 .../bundled/libs/lib.decorators.d.ts | 0 .../bundled/libs/lib.decorators.legacy.d.ts | 0 .../bundled/libs/lib.dom.asynciterable.d.ts | 0 .../bundled/libs/lib.dom.d.ts | 0 .../bundled/libs/lib.dom.iterable.d.ts | 0 .../bundled/libs/lib.es2015.collection.d.ts | 0 .../bundled/libs/lib.es2015.core.d.ts | 0 .../bundled/libs/lib.es2015.d.ts | 0 .../bundled/libs/lib.es2015.generator.d.ts | 0 .../bundled/libs/lib.es2015.iterable.d.ts | 0 .../bundled/libs/lib.es2015.promise.d.ts | 0 .../bundled/libs/lib.es2015.proxy.d.ts | 0 .../bundled/libs/lib.es2015.reflect.d.ts | 0 .../bundled/libs/lib.es2015.symbol.d.ts | 0 .../libs/lib.es2015.symbol.wellknown.d.ts | 0 .../libs/lib.es2016.array.include.d.ts | 0 .../bundled/libs/lib.es2016.d.ts | 0 .../bundled/libs/lib.es2016.full.d.ts | 0 .../bundled/libs/lib.es2016.intl.d.ts | 0 .../bundled/libs/lib.es2017.arraybuffer.d.ts | 0 .../bundled/libs/lib.es2017.d.ts | 0 .../bundled/libs/lib.es2017.date.d.ts | 0 .../bundled/libs/lib.es2017.full.d.ts | 0 .../bundled/libs/lib.es2017.intl.d.ts | 0 .../bundled/libs/lib.es2017.object.d.ts | 0 .../bundled/libs/lib.es2017.sharedmemory.d.ts | 0 .../bundled/libs/lib.es2017.string.d.ts | 0 .../bundled/libs/lib.es2017.typedarrays.d.ts | 0 .../libs/lib.es2018.asyncgenerator.d.ts | 0 .../libs/lib.es2018.asynciterable.d.ts | 0 .../bundled/libs/lib.es2018.d.ts | 0 .../bundled/libs/lib.es2018.full.d.ts | 0 .../bundled/libs/lib.es2018.intl.d.ts | 0 .../bundled/libs/lib.es2018.promise.d.ts | 0 .../bundled/libs/lib.es2018.regexp.d.ts | 0 .../bundled/libs/lib.es2019.array.d.ts | 0 .../bundled/libs/lib.es2019.d.ts | 0 .../bundled/libs/lib.es2019.full.d.ts | 0 .../bundled/libs/lib.es2019.intl.d.ts | 0 .../bundled/libs/lib.es2019.object.d.ts | 0 .../bundled/libs/lib.es2019.string.d.ts | 0 .../bundled/libs/lib.es2019.symbol.d.ts | 0 .../bundled/libs/lib.es2020.bigint.d.ts | 0 .../bundled/libs/lib.es2020.d.ts | 0 .../bundled/libs/lib.es2020.date.d.ts | 0 .../bundled/libs/lib.es2020.full.d.ts | 0 .../bundled/libs/lib.es2020.intl.d.ts | 0 .../bundled/libs/lib.es2020.number.d.ts | 0 .../bundled/libs/lib.es2020.promise.d.ts | 0 .../bundled/libs/lib.es2020.sharedmemory.d.ts | 0 .../bundled/libs/lib.es2020.string.d.ts | 0 .../libs/lib.es2020.symbol.wellknown.d.ts | 0 .../bundled/libs/lib.es2021.d.ts | 0 .../bundled/libs/lib.es2021.full.d.ts | 0 .../bundled/libs/lib.es2021.intl.d.ts | 0 .../bundled/libs/lib.es2021.promise.d.ts | 0 .../bundled/libs/lib.es2021.string.d.ts | 0 .../bundled/libs/lib.es2021.weakref.d.ts | 0 .../bundled/libs/lib.es2022.array.d.ts | 0 .../bundled/libs/lib.es2022.d.ts | 0 .../bundled/libs/lib.es2022.error.d.ts | 0 .../bundled/libs/lib.es2022.full.d.ts | 0 .../bundled/libs/lib.es2022.intl.d.ts | 0 .../bundled/libs/lib.es2022.object.d.ts | 0 .../bundled/libs/lib.es2022.regexp.d.ts | 0 .../bundled/libs/lib.es2022.string.d.ts | 0 .../bundled/libs/lib.es2023.array.d.ts | 0 .../bundled/libs/lib.es2023.collection.d.ts | 0 .../bundled/libs/lib.es2023.d.ts | 0 .../bundled/libs/lib.es2023.full.d.ts | 0 .../bundled/libs/lib.es2023.intl.d.ts | 0 .../bundled/libs/lib.es2024.arraybuffer.d.ts | 0 .../bundled/libs/lib.es2024.collection.d.ts | 0 .../bundled/libs/lib.es2024.d.ts | 0 .../bundled/libs/lib.es2024.full.d.ts | 0 .../bundled/libs/lib.es2024.object.d.ts | 0 .../bundled/libs/lib.es2024.promise.d.ts | 0 .../bundled/libs/lib.es2024.regexp.d.ts | 0 .../bundled/libs/lib.es2024.sharedmemory.d.ts | 0 .../bundled/libs/lib.es2024.string.d.ts | 0 .../bundled/libs/lib.es2025.collection.d.ts | 0 .../bundled/libs/lib.es2025.d.ts | 0 .../bundled/libs/lib.es2025.float16.d.ts | 0 .../bundled/libs/lib.es2025.full.d.ts | 0 .../bundled/libs/lib.es2025.intl.d.ts | 0 .../bundled/libs/lib.es2025.iterator.d.ts | 0 .../bundled/libs/lib.es2025.promise.d.ts | 0 .../bundled/libs/lib.es2025.regexp.d.ts | 0 .../bundled/libs/lib.es5.d.ts | 0 .../bundled/libs/lib.es6.d.ts | 0 .../bundled/libs/lib.esnext.array.d.ts | 0 .../bundled/libs/lib.esnext.collection.d.ts | 0 .../bundled/libs/lib.esnext.d.ts | 0 .../bundled/libs/lib.esnext.date.d.ts | 0 .../bundled/libs/lib.esnext.decorators.d.ts | 0 .../bundled/libs/lib.esnext.disposable.d.ts | 0 .../bundled/libs/lib.esnext.error.d.ts | 0 .../bundled/libs/lib.esnext.full.d.ts | 0 .../bundled/libs/lib.esnext.intl.d.ts | 0 .../bundled/libs/lib.esnext.sharedmemory.d.ts | 0 .../bundled/libs/lib.esnext.temporal.d.ts | 0 .../bundled/libs/lib.esnext.typedarrays.d.ts | 0 .../bundled/libs/lib.scripthost.d.ts | 0 .../libs/lib.webworker.asynciterable.d.ts | 0 .../bundled/libs/lib.webworker.d.ts | 0 .../libs/lib.webworker.importscripts.d.ts | 0 .../bundled/libs/lib.webworker.iterable.d.ts | 0 .../bundled/libs_generated.go | 0 tsc/{internal => pkg}/bundled/noembed.go | 8 +- tsc/{internal => pkg}/checker/checker.go | 36 ++--- tsc/{internal => pkg}/checker/checker_test.go | 20 +-- tsc/{internal => pkg}/checker/emitresolver.go | 14 +- tsc/{internal => pkg}/checker/exports.go | 4 +- tsc/{internal => pkg}/checker/flow.go | 14 +- .../checker/grammarchecks.go | 20 +-- tsc/{internal => pkg}/checker/inference.go | 6 +- tsc/{internal => pkg}/checker/jsdoc.go | 6 +- tsc/{internal => pkg}/checker/jsx.go | 14 +- tsc/{internal => pkg}/checker/links.go | 4 +- tsc/{internal => pkg}/checker/mapper.go | 2 +- tsc/{internal => pkg}/checker/nodebuilder.go | 8 +- .../checker/nodebuilder_hover.go | 14 +- .../checker/nodebuilderimpl.go | 26 ++-- .../checker/nodebuilderscopes.go | 8 +- tsc/{internal => pkg}/checker/nodecopy.go | 8 +- tsc/{internal => pkg}/checker/printer.go | 8 +- .../checker/pseudotypenodebuilder.go | 10 +- tsc/{internal => pkg}/checker/relater.go | 16 +-- tsc/{internal => pkg}/checker/services.go | 14 +- .../checker/stringer_generated.go | 0 .../checker/symbolaccessibility.go | 6 +- .../checker/symboltracker.go | 4 +- tsc/{internal => pkg}/checker/tracer.go | 4 +- tsc/{internal => pkg}/checker/tracer_test.go | 6 +- tsc/{internal => pkg}/checker/types.go | 8 +- tsc/{internal => pkg}/checker/utilities.go | 20 +-- tsc/{internal => pkg}/collections/cow.go | 0 tsc/{internal => pkg}/collections/multimap.go | 0 .../collections/ordered_map.go | 2 +- .../collections/ordered_map_test.go | 4 +- .../collections/ordered_set.go | 0 .../collections/ordered_set_test.go | 2 +- tsc/{internal => pkg}/collections/set.go | 0 tsc/{internal => pkg}/collections/syncmap.go | 0 .../collections/syncmap_test.go | 2 +- tsc/{internal => pkg}/collections/syncset.go | 0 tsc/{internal => pkg}/compiler/checkerpool.go | 8 +- .../compiler/checkerpool_test.go | 0 .../compiler/contentmapper_test.go | 20 +-- tsc/{internal => pkg}/compiler/emitHost.go | 20 +-- tsc/{internal => pkg}/compiler/emit_test.go | 10 +- tsc/{internal => pkg}/compiler/emitter.go | 36 ++--- tsc/{internal => pkg}/compiler/fileInclude.go | 12 +- tsc/{internal => pkg}/compiler/fileloader.go | 22 +-- tsc/{internal => pkg}/compiler/filesparser.go | 16 +-- tsc/{internal => pkg}/compiler/host.go | 18 +-- .../compiler/includeprocessor.go | 12 +- tsc/{internal => pkg}/compiler/pkg.go | 0 .../compiler/processingDiagnostic.go | 12 +- tsc/{internal => pkg}/compiler/program.go | 44 +++--- .../compiler/program_test.go | 16 +-- .../compiler/projectreferencedtsfakinghost.go | 14 +- .../compiler/projectreferencefilemapper.go | 12 +- .../compiler/projectreferenceparser.go | 10 +- .../contentmapper/contentmapper.go | 6 +- tsc/{internal => pkg}/contentmapper/host.go | 8 +- .../contentmapper/host_test.go | 16 +-- .../contentmapper/hostimpl.go | 18 +-- .../contentmapper/transform.go | 8 +- .../contentmapper/transform_test.go | 10 +- tsc/{internal => pkg}/core/arena.go | 0 tsc/{internal => pkg}/core/bfs.go | 2 +- tsc/{internal => pkg}/core/bfs_test.go | 4 +- tsc/{internal => pkg}/core/binarysearch.go | 0 tsc/{internal => pkg}/core/buildoptions.go | 0 tsc/{internal => pkg}/core/compileroptions.go | 4 +- tsc/{internal => pkg}/core/context.go | 0 tsc/{internal => pkg}/core/core.go | 8 +- tsc/{internal => pkg}/core/languagevariant.go | 0 .../languagevariant_stringer_generated.go | 0 tsc/{internal => pkg}/core/linkstore.go | 0 .../core/modulekind_stringer_generated.go | 0 tsc/{internal => pkg}/core/nodemodules.go | 0 tsc/{internal => pkg}/core/pattern.go | 0 tsc/{internal => pkg}/core/pattern_test.go | 0 .../core/projectreference.go | 2 +- tsc/{internal => pkg}/core/scriptkind.go | 0 .../core/scriptkind_stringer_generated.go | 0 .../core/scripttarget_stringer_generated.go | 0 tsc/{internal => pkg}/core/semaphore.go | 0 tsc/{internal => pkg}/core/stack.go | 0 tsc/{internal => pkg}/core/text.go | 0 tsc/{internal => pkg}/core/textchange.go | 0 tsc/{internal => pkg}/core/tristate.go | 0 .../core/tristate_stringer_generated.go | 0 tsc/{internal => pkg}/core/typeacquisition.go | 0 tsc/{internal => pkg}/core/version.go | 0 tsc/{internal => pkg}/core/watchoptions.go | 0 tsc/{internal => pkg}/core/workgroup.go | 0 tsc/{internal => pkg}/debug/debug.go | 0 tsc/{internal => pkg}/debug/debug_test.go | 4 +- .../diagnostics/diagnosticMessages.json | 0 .../diagnostics/diagnostics.go | 4 +- .../diagnostics/diagnostics_generated.go | 0 .../diagnostics/diagnostics_test.go | 2 +- .../diagnostics/extraDiagnosticMessages.json | 0 tsc/{internal => pkg}/diagnostics/generate.go | 6 +- .../diagnostics/generate_deps.go | 0 .../diagnostics/loc/cs-CZ.json.gz | Bin .../diagnostics/loc/de-DE.json.gz | Bin .../diagnostics/loc/es-ES.json.gz | Bin .../diagnostics/loc/fr-FR.json.gz | Bin .../diagnostics/loc/it-IT.json.gz | Bin .../diagnostics/loc/ja-JP.json.gz | Bin .../diagnostics/loc/ko-KR.json.gz | Bin .../diagnostics/loc/pl-PL.json.gz | Bin .../diagnostics/loc/pt-BR.json.gz | Bin .../diagnostics/loc/ru-RU.json.gz | Bin .../diagnostics/loc/tr-TR.json.gz | Bin .../diagnostics/loc/zh-CN.json.gz | Bin .../diagnostics/loc/zh-TW.json.gz | Bin .../diagnostics/loc_generated.go | 2 +- .../diagnostics/stringer_generated.go | 0 .../diagnosticwriter/diagnosticwriter.go | 14 +- tsc/{internal => pkg}/evaluator/evaluator.go | 6 +- .../execute/build/buildtask.go | 20 +-- .../build/buildtask_contentmapper_test.go | 2 +- .../execute/build/compilerHost.go | 14 +- .../execute/build/graph_test.go | 8 +- tsc/{internal => pkg}/execute/build/host.go | 20 +-- .../execute/build/orchestrator.go | 26 ++-- .../execute/build/parseCache.go | 2 +- .../execute/build/uptodatestatus.go | 0 .../incremental/affectedfileshandler.go | 12 +- .../execute/incremental/buildInfo.go | 16 +-- .../buildinfo_contentmapper_test.go | 12 +- .../incremental/buildinfotosnapshot.go | 12 +- .../execute/incremental/emitfileshandler.go | 10 +- .../incremental/external_diagnostic_test.go | 10 +- .../execute/incremental/host.go | 4 +- .../execute/incremental/incremental.go | 6 +- .../execute/incremental/program.go | 20 +-- .../execute/incremental/programtosnapshot.go | 16 +-- .../execute/incremental/referencemap.go | 4 +- .../execute/incremental/snapshot.go | 14 +- .../incremental/snapshottobuildinfo.go | 12 +- tsc/{internal => pkg}/execute/tsc.go | 36 ++--- tsc/{internal => pkg}/execute/tsc/compile.go | 20 +-- .../execute/tsc/diagnostics.go | 10 +- tsc/{internal => pkg}/execute/tsc/emit.go | 18 +-- .../execute/tsc/emit_test.go | 14 +- .../execute/tsc/extendedconfigcache.go | 6 +- .../execute/tsc/extendedconfigcache_test.go | 8 +- tsc/{internal => pkg}/execute/tsc/help.go | 10 +- tsc/{internal => pkg}/execute/tsc/init.go | 16 +-- .../execute/tsc/statistics.go | 2 +- .../tsctests/contentmapper_watch_test.go | 12 +- tsc/{internal => pkg}/execute/tsctests/fs.go | 16 +-- .../execute/tsctests/mock_watch_backend.go | 8 +- .../execute/tsctests/readablebuildinfo.go | 12 +- .../execute/tsctests/runner.go | 10 +- .../execute/tsctests/showconfig_test.go | 2 +- tsc/{internal => pkg}/execute/tsctests/sys.go | 36 ++--- .../execute/tsctests/testmain_test.go | 4 +- .../execute/tsctests/tsc_test.go | 8 +- .../execute/tsctests/tscbuild_test.go | 16 +-- .../execute/tsctests/tscwatch_test.go | 2 +- .../execute/tsctests/watcher_race_test.go | 6 +- tsc/{internal => pkg}/execute/watcher.go | 28 ++-- .../execute/watchmanager/watchbackend.go | 4 +- .../execute/watchmanager/watchmanager.go | 6 +- .../execute/watchmanager/watchmanager_test.go | 2 +- tsc/{internal => pkg}/format/README.md | 0 tsc/{internal => pkg}/format/api.go | 10 +- tsc/{internal => pkg}/format/api_test.go | 14 +- tsc/{internal => pkg}/format/comment_test.go | 10 +- tsc/{internal => pkg}/format/context.go | 10 +- tsc/{internal => pkg}/format/format_test.go | 10 +- tsc/{internal => pkg}/format/indent.go | 14 +- .../format/indent_getindentation_test.go | 10 +- tsc/{internal => pkg}/format/indent_test.go | 8 +- tsc/{internal => pkg}/format/rule.go | 2 +- tsc/{internal => pkg}/format/rulecontext.go | 10 +- tsc/{internal => pkg}/format/rules.go | 4 +- tsc/{internal => pkg}/format/rulesmap.go | 4 +- tsc/{internal => pkg}/format/scanner.go | 8 +- tsc/{internal => pkg}/format/span.go | 14 +- tsc/{internal => pkg}/format/util.go | 8 +- .../fourslash/baselineutil.go | 18 +-- tsc/{internal => pkg}/fourslash/fourslash.go | 54 +++---- .../fourslash/semantictokens.go | 4 +- .../fourslash/statebaseline.go | 22 +-- .../fourslash/test_parser.go | 16 +-- .../tests/NavigationBarJsDoc_test.go | 4 +- ...ratorNoCrashOnFunctionDeclaration1_test.go | 4 +- .../tests/addAllMissingImportsNoCrash_test.go | 4 +- .../tests/addDeclareToFunction_test.go | 4 +- .../tests/addDeclareToModule_test.go | 4 +- .../tests/addDuplicateSetter_test.go | 4 +- ...tionAboveMultiLineLambdaExpression_test.go | 4 +- ...onInDuplicatedConstructorClassBody_test.go | 4 +- .../addInterfaceMemberAboveClass_test.go | 4 +- ...addInterfaceToNotSatisfyConstraint_test.go | 4 +- ...berNotInNodeModulesDeclarationFile_test.go | 4 +- .../fourslash/tests/addMemberToModule_test.go | 4 +- .../tests/addSignaturePartial_test.go | 4 +- .../tests/aliasMergingWithNamespace_test.go | 4 +- .../tests/aliasToVarUsedAsType_test.go | 4 +- ...dSymbolsOverwriteEarlyBoundSymbols_test.go | 4 +- .../tests/ambientShorthandFindAllRefs_test.go | 4 +- .../ambientShorthandGotoDefinition_test.go | 4 +- .../ambientVariablesWithSameName_test.go | 4 +- .../tests/annotateWithTypeFromJSDoc2_test.go | 4 +- .../tests/argumentCompletions_test.go | 6 +- ...AvailableAfterEditsAtEndOfFunction_test.go | 8 +- .../tests/argumentsIndexExpression_test.go | 4 +- .../arityErrorAfterSignatureHelp_test.go | 4 +- .../arityErrorAfterStringCompletions_test.go | 6 +- .../arrayCallAndConstructTypings_test.go | 4 +- .../tests/asConstRefsNoErrors1_test.go | 4 +- .../tests/asConstRefsNoErrors2_test.go | 4 +- .../tests/asConstRefsNoErrors3_test.go | 4 +- .../tests/asOperatorCompletion2_test.go | 6 +- .../tests/asOperatorCompletion3_test.go | 6 +- .../tests/asOperatorCompletion_test.go | 6 +- .../tests/asOperatorFormatting_test.go | 4 +- .../tests/assertContextualType_test.go | 4 +- .../tests/augmentedTypesClass1_test.go | 8 +- .../augmentedTypesClass3Fourslash_test.go | 8 +- .../tests/augmentedTypesModule1_test.go | 6 +- .../tests/augmentedTypesModule2_test.go | 6 +- .../tests/augmentedTypesModule3_test.go | 6 +- .../tests/augmentedTypesModule4_test.go | 6 +- .../tests/augmentedTypesModule5_test.go | 6 +- .../tests/augmentedTypesModule6_test.go | 6 +- .../fourslash/tests/autoCloseFragment_test.go | 4 +- .../fourslash/tests/autoCloseTag_test.go | 4 +- ...CloseTagsWithTriviaAndComplexNames_test.go | 4 +- .../tests/autoFormattingOnPasting_test.go | 4 +- ...ingTsExtensionsPackageJsonImports1_test.go | 4 +- ...ingTsExtensionsPackageJsonImports2_test.go | 4 +- ...ndlerBlockRelativeNodeModulesPaths_test.go | 4 +- .../tests/autoImportBundlerExports_test.go | 4 +- .../autoImportCJSWithNodeModuleKind_test.go | 4 +- ...portCompletionAmbientMergedModule1_test.go | 12 +- ...CompletionExportEqualsWithDefault1_test.go | 12 +- ...tCompletionExportListAugmentation1_test.go | 12 +- ...tCompletionExportListAugmentation2_test.go | 12 +- ...tCompletionExportListAugmentation3_test.go | 12 +- ...tCompletionExportListAugmentation4_test.go | 12 +- .../tests/autoImportCompletion_test.go | 10 +- ...nsForArbitraryNonIdentifierExports_test.go | 6 +- ...ImportCrossPackage_pathsAndSymlink_test.go | 4 +- .../autoImportCrossProjectNodeModules_test.go | 4 +- ...oImportCrossProject_baseUrl_toDist_test.go | 6 +- ...ortCrossProject_paths_sharedOutDir_test.go | 4 +- ...oImportCrossProject_paths_stripSrc_test.go | 4 +- ...toImportCrossProject_paths_toDist2_test.go | 6 +- ...utoImportCrossProject_paths_toDist_test.go | 4 +- ...autoImportCrossProject_paths_toSrc_test.go | 4 +- ...portCrossProject_symlinks_stripSrc_test.go | 4 +- ...ImportCrossProject_symlinks_toDist_test.go | 4 +- ...oImportCrossProject_symlinks_toSrc_test.go | 8 +- .../tests/autoImportCssModule_test.go | 10 +- .../tests/autoImportDefaultPascalCase_test.go | 10 +- .../autoImportErrorMixedExportKinds_test.go | 4 +- ...autoImportExportEqualsOfImportStar_test.go | 4 +- .../autoImportFileExcludePatterns10_test.go | 6 +- .../autoImportFileExcludePatterns11_test.go | 6 +- .../autoImportFileExcludePatterns12_test.go | 6 +- .../autoImportFileExcludePatterns13_test.go | 6 +- .../autoImportFileExcludePatterns2_test.go | 12 +- .../autoImportFileExcludePatterns3_test.go | 12 +- .../autoImportFileExcludePatterns4_test.go | 6 +- .../autoImportFileExcludePatterns5_test.go | 6 +- .../autoImportFileExcludePatterns6_test.go | 6 +- .../autoImportFileExcludePatterns7_test.go | 6 +- .../autoImportFileExcludePatterns8_test.go | 6 +- .../autoImportFileExcludePatterns9_test.go | 6 +- .../autoImportFileExcludePatterns_test.go | 10 +- .../autoImportIndexReExportPrefix_test.go | 6 +- .../tests/autoImportJsDocImport1_test.go | 4 +- .../autoImportModuleAugmentation_test.go | 4 +- .../tests/autoImportModuleNone2_test.go | 10 +- .../fourslash/tests/autoImportNewLine_test.go | 4 +- .../autoImportNoPackageJson_commonjs_test.go | 8 +- .../autoImportNoPackageJson_nodenext_test.go | 8 +- .../autoImportNodeBuiltinNodenext_test.go | 12 +- ...autoImportNodeModuleSymlinkRenamed_test.go | 4 +- .../tests/autoImportNodeNextJSRequire_test.go | 4 +- ...ackageJsonExportsSpecifierEndsInTs_test.go | 4 +- ...rtPackageJsonFilterExistingImport2_test.go | 4 +- ...rtPackageJsonFilterExistingImport3_test.go | 4 +- ...tPackageJsonImportsCaseSensitivity_test.go | 6 +- ...ImportPackageJsonImportsConditions_test.go | 4 +- ...oImportPackageJsonImportsHashSlash_test.go | 4 +- ...utoImportPackageJsonImportsLength1_test.go | 4 +- ...utoImportPackageJsonImportsLength2_test.go | 4 +- ...ImportPackageJsonImportsPattern_js_test.go | 4 +- ...ortPackageJsonImportsPattern_js_ts_test.go | 4 +- ...utoImportPackageJsonImportsPattern_test.go | 4 +- ...ortPackageJsonImportsPattern_ts_js_test.go | 4 +- ...ImportPackageJsonImportsPattern_ts_test.go | 4 +- ...ortPackageJsonImportsPattern_ts_ts_test.go | 4 +- ...mportPackageJsonImportsPreference1_test.go | 6 +- ...mportPackageJsonImportsPreference2_test.go | 6 +- ...mportPackageJsonImportsPreference3_test.go | 6 +- ...portPackageJsonImports_capsInPath1_test.go | 4 +- ...portPackageJsonImports_capsInPath2_test.go | 4 +- .../autoImportPackageJsonImports_js_test.go | 4 +- .../autoImportPackageJsonImports_ts_test.go | 4 +- ...autoImportPackageRootPathExtension_test.go | 8 +- ...utoImportPackageRootPathTypeModule_test.go | 4 +- .../tests/autoImportPackageRootPath_test.go | 4 +- .../autoImportPathsAliasesAndBarrels_test.go | 10 +- .../tests/autoImportPathsConfigDir_test.go | 4 +- .../tests/autoImportPathsNodeModules_test.go | 4 +- .../fourslash/tests/autoImportPaths_test.go | 6 +- .../autoImportPatternAmbientModule_test.go | 6 +- .../fourslash/tests/autoImportPnpm_test.go | 4 +- .../tests/autoImportProvider1_test.go | 4 +- .../tests/autoImportProvider2_test.go | 4 +- .../tests/autoImportProvider4_test.go | 4 +- .../tests/autoImportProvider5_test.go | 8 +- .../tests/autoImportProvider6_test.go | 10 +- .../tests/autoImportProvider7_test.go | 10 +- .../tests/autoImportProvider8_test.go | 10 +- .../tests/autoImportProvider9_test.go | 4 +- .../autoImportProvider_exportMap1_test.go | 10 +- .../autoImportProvider_exportMap2_test.go | 10 +- .../autoImportProvider_exportMap3_test.go | 10 +- .../autoImportProvider_exportMap4_test.go | 10 +- .../autoImportProvider_exportMap5_test.go | 10 +- .../autoImportProvider_exportMap6_test.go | 10 +- .../autoImportProvider_exportMap7_test.go | 10 +- .../autoImportProvider_exportMap8_test.go | 10 +- .../autoImportProvider_exportMap9_test.go | 10 +- ...oImportProvider_globalTypingsCache_test.go | 10 +- .../autoImportProvider_importsMap1_test.go | 4 +- .../autoImportProvider_importsMap2_test.go | 4 +- .../autoImportProvider_importsMap3_test.go | 4 +- .../autoImportProvider_importsMap4_test.go | 4 +- .../autoImportProvider_importsMap5_test.go | 4 +- ...vider_namespaceSameNameAsIntrinsic_test.go | 10 +- .../tests/autoImportProvider_pnpm_test.go | 4 +- ...autoImportProvider_referencesCrash_test.go | 4 +- ...utoImportProvider_wildcardExports1_test.go | 10 +- ...utoImportProvider_wildcardExports2_test.go | 10 +- ...utoImportProvider_wildcardExports3_test.go | 10 +- .../tests/autoImportQuoteDetection_test.go | 4 +- ...utoImportReExportFromAmbientModule_test.go | 10 +- ...ReexportOfCrossPackageAugmentation_test.go | 8 +- ...mportRelativePathToMonorepoPackage_test.go | 4 +- .../tests/autoImportRootDirs_test.go | 4 +- .../autoImportSameNameDefaultExported_test.go | 10 +- .../autoImportSortCaseSensitivity1_test.go | 4 +- .../autoImportSortCaseSensitivity2_test.go | 10 +- ...autoImportSpecifierExcludeRegexes1_test.go | 12 +- ...autoImportSpecifierExcludeRegexes2_test.go | 6 +- ...autoImportSpecifierExcludeRegexes3_test.go | 6 +- .../autoImportSpecifierExcludeRegexes_test.go | 10 +- .../autoImportSymlinkCaseSensitive_test.go | 8 +- ...ortSymlinkedMonorepoGranularUpdate_test.go | 4 +- ...orepoProjectReferencesNoPkgExports_test.go | 4 +- ...SymlinkedMonorepoProjectReferences_test.go | 4 +- ...utoImportSymlinkedMonorepoReexport_test.go | 8 +- ...mportSymlinkedMonorepoSourceUpdate_test.go | 4 +- .../tests/autoImportSymlinkedMonorepo_test.go | 4 +- .../tests/autoImportTransitiveLeak_test.go | 10 +- .../tests/autoImportTypeImport1_test.go | 6 +- .../tests/autoImportTypeImport2_test.go | 6 +- .../tests/autoImportTypeImport3_test.go | 6 +- .../tests/autoImportTypeImport4_test.go | 6 +- .../tests/autoImportTypeImport5_test.go | 6 +- .../autoImportTypeOnlyPreferred1_test.go | 10 +- .../autoImportTypeOnlyPreferred2_test.go | 4 +- .../autoImportTypeOnlyPreferred3_test.go | 8 +- .../autoImportTypedefMissingName_test.go | 4 +- .../tests/autoImportVerbatimTypeOnly1_test.go | 6 +- .../autoImport_node12_node_modules1_test.go | 4 +- .../tests/autoImportsCustomConditions_test.go | 4 +- .../tests/autoImportsNodeNext1_test.go | 6 +- ...ImportsWithRootDirsAndRootedPath01_test.go | 6 +- .../automaticConstructorToggling_test.go | 4 +- .../fourslash/tests/basicBackspace_test.go | 6 +- .../tests/basicClassElementKeywords_test.go | 6 +- .../fourslash/tests/basicClassMembers_test.go | 6 +- .../fourslash/tests/basicEdit_test.go | 10 +- .../tests/basicGlobalCompletions_test.go | 6 +- .../tests/basicInterfaceMembers_test.go | 10 +- .../tests/basicJSDocCompletions_test.go | 8 +- .../tests/basicMultifileCompletions_test.go | 10 +- .../fourslash/tests/basicQuickInfo_test.go | 4 +- .../fourslash/tests/basicReplaceLine_test.go | 6 +- .../bestCommonTypeObjectLiterals1_test.go | 4 +- .../bestCommonTypeObjectLiterals_test.go | 4 +- .../tests/callHierarchyAccessor_test.go | 4 +- ...allHierarchyAnonymousClassNoCrash1_test.go | 4 +- ...allHierarchyAnonymousClassNoCrash2_test.go | 4 +- ...allHierarchyAnonymousClassNoCrash3_test.go | 4 +- ...HierarchyAnonymousFunctionNoCrash1_test.go | 4 +- ...HierarchyAnonymousFunctionNoCrash2_test.go | 4 +- ...HierarchyAnonymousFunctionNoCrash3_test.go | 4 +- ...sionByConstNamedFunctionExpression_test.go | 4 +- ...ierarchyClassPropertyArrowFunction_test.go | 4 +- .../callHierarchyClassStaticBlock2_test.go | 4 +- .../callHierarchyClassStaticBlock_test.go | 4 +- .../tests/callHierarchyClass_test.go | 4 +- ...llHierarchyConstNamedArrowFunction_test.go | 4 +- ...HierarchyConstNamedClassExpression_test.go | 4 +- ...rarchyConstNamedFunctionExpression_test.go | 4 +- .../callHierarchyContainerNameServer_test.go | 4 +- .../tests/callHierarchyContainerName_test.go | 4 +- .../tests/callHierarchyCrossFile_test.go | 4 +- .../tests/callHierarchyDecorator_test.go | 4 +- .../callHierarchyExportDefaultClass_test.go | 4 +- ...callHierarchyExportDefaultFunction_test.go | 4 +- .../callHierarchyExportEqualsFunction_test.go | 4 +- .../fourslash/tests/callHierarchyFile_test.go | 4 +- .../callHierarchyFunctionAmbiguity1_test.go | 4 +- .../callHierarchyFunctionAmbiguity2_test.go | 4 +- .../callHierarchyFunctionAmbiguity3_test.go | 4 +- .../callHierarchyFunctionAmbiguity4_test.go | 4 +- .../callHierarchyFunctionAmbiguity5_test.go | 4 +- .../tests/callHierarchyFunction_test.go | 4 +- ...DeclarationOfExportedDefaultClass1_test.go | 4 +- ...archyIncomingCallsNoCrashArrayPush_test.go | 4 +- ...MethodInExpressionComputedProperty_test.go | 4 +- ...MethodInIdentifierComputedProperty_test.go | 4 +- ...hodInStringLiteralComputedProperty_test.go | 4 +- .../callHierarchyInterfaceMethod_test.go | 4 +- .../tests/callHierarchyJsxElement_test.go | 4 +- .../tests/callHierarchyTaggedTemplate_test.go | 4 +- ...rarchyUnclosedTemplateExprNoCrash1_test.go | 4 +- .../fourslash/tests/callSignatureHelp_test.go | 4 +- ...onsOfDissimilarTyeshaveGoodDisplay_test.go | 4 +- .../tests/chainedFatArrowFormatting_test.go | 4 +- .../tests/chineseCharacterDisplay_test.go | 4 +- .../classExtendsInterfaceSigHelp1_test.go | 4 +- .../tests/classInterfaceInsert_test.go | 4 +- .../tests/classMemberCompletion_test.go | 12 +- .../tests/cloduleAsBaseClass2_test.go | 10 +- .../tests/cloduleAsBaseClass_test.go | 10 +- .../fourslash/tests/cloduleTypeOf1_test.go | 10 +- .../tests/closedCommentsInConstructor_test.go | 4 +- .../tests/codeCompletionEscaping_test.go | 10 +- ...rtToUnknownForNonOverlappingTypes9_test.go | 4 +- .../codeFixAddMissingAttributes10_test.go | 4 +- .../codeFixAddMissingAttributes5_test.go | 4 +- .../codeFixAddMissingAttributes6_test.go | 4 +- ...ngAwait_notAvailableWithoutPromise_test.go | 4 +- .../codeFixAddMissingAwait_topLevel_test.go | 4 +- ...dMissingConstToArrayDestructuring3_test.go | 4 +- ...gConstToCommaSeparatedInitializer4_test.go | 4 +- .../codeFixAddMissingEnumMember13_test.go | 4 +- ...FixAddMissingFunctionDeclaration16_test.go | 4 +- ...FixAddMissingFunctionDeclaration19_test.go | 4 +- ...FixAddMissingFunctionDeclaration20_test.go | 4 +- ...odeFixAddMissingImportForReactJsx1_test.go | 4 +- ...odeFixAddMissingImportForReactJsx2_test.go | 4 +- .../tests/codeFixAddMissingMember21_test.go | 4 +- .../tests/codeFixAddMissingMember8_test.go | 4 +- .../tests/codeFixAddMissingParam15_test.go | 4 +- .../tests/codeFixAddOptionalParam14_test.go | 4 +- .../tests/codeFixAddOptionalParam15_test.go | 4 +- .../tests/codeFixAddOptionalParam18_test.go | 4 +- .../tests/codeFixAddParameterNames1_test.go | 4 +- .../tests/codeFixAddParameterNames2_test.go | 4 +- .../tests/codeFixAddParameterNames3_test.go | 4 +- .../tests/codeFixAddVoidToPromise5_test.go | 4 +- .../tests/codeFixAddVoidToPromiseJS5_test.go | 4 +- ...mentClassAbstractGettersAndSetters_test.go | 4 +- ...assImplementClassMethodViaHeritage_test.go | 4 +- .../tests/codeFixAwaitInSyncFunction3_test.go | 4 +- .../tests/codeFixAwaitInSyncFunction4_test.go | 4 +- ...AwaitShouldNotCrashIfNotInFunction_test.go | 4 +- ...indModule_suggestion_falsePositive_test.go | 4 +- ...ImplementClassFunctionVoidInferred_test.go | 4 +- ...ClassExtendAbstractPrivateProperty_test.go | 4 +- ...xtendAbstractSomePropertiesPresent_test.go | 4 +- ...mentClassAbstractGettersAndSetters_test.go | 4 +- ...ImplementClassFunctionVoidInferred_test.go | 4 +- ...ImplementClassMemberAnonymousClass_test.go | 4 +- ...assImplementClassMethodViaHeritage_test.go | 4 +- ...sImplementClassMultipleSignatures1_test.go | 4 +- ...sImplementClassMultipleSignatures2_test.go | 4 +- ...assImplementClassPropertyModifiers_test.go | 4 +- ...assImplementClassPropertyTypeQuery_test.go | 4 +- ...deFixClassImplementDeepInheritance_test.go | 4 +- .../codeFixClassImplementDefaultClass_test.go | 4 +- ...xClassImplementInterfaceArrayTuple_test.go | 4 +- ...ementInterfaceAutoImportsReExports_test.go | 4 +- ...ClassImplementInterfaceAutoImports_test.go | 4 +- ...ementInterfaceAutoImports_typeOnly_test.go | 4 +- ...assImplementInterfaceCallSignature_test.go | 4 +- ...FixClassImplementInterfaceCallback_test.go | 4 +- ...sImplementInterfaceClassExpression_test.go | 4 +- ...FixClassImplementInterfaceComments_test.go | 4 +- ...tInterfaceComputedPropertyLiterals_test.go | 4 +- ...mputedPropertyNameWellKnownSymbols_test.go | 4 +- ...plementInterfaceConstructSignature_test.go | 4 +- ...ImplementInterfaceConstructorName1_test.go | 4 +- ...ImplementInterfaceConstructorName2_test.go | 4 +- ...ImplementInterfaceDuplicateMember1_test.go | 4 +- ...ImplementInterfaceDuplicateMember2_test.go | 4 +- ...plementInterfaceEmptyMultilineBody_test.go | 4 +- ...ImplementInterfaceEmptyTypeLiteral_test.go | 4 +- ...deFixClassImplementInterfaceGlobal_test.go | 4 +- ...aceHeritageClauseAlreadyHaveMember_test.go | 4 +- ...ClassImplementInterfaceInNamespace_test.go | 4 +- ...lementInterfaceIndexSignaturesBoth_test.go | 4 +- ...ementInterfaceIndexSignaturesNoFix_test.go | 4 +- ...mentInterfaceIndexSignaturesNumber_test.go | 4 +- ...mentInterfaceIndexSignaturesString_test.go | 4 +- ...ixClassImplementInterfaceIndexType_test.go | 4 +- ...entInterfaceInheritsAbstractMethod_test.go | 4 +- ...ClassImplementInterfaceMappedType1_test.go | 4 +- ...ClassImplementInterfaceMappedType2_test.go | 4 +- ...entInterfaceMappedTypeIndirectKeys_test.go | 4 +- ...mentInterfaceMemberNestedTypeAlias_test.go | 4 +- ...ssImplementInterfaceMemberOrdering_test.go | 4 +- ...sImplementInterfaceMemberTypeAlias_test.go | 4 +- ...nterfaceMethodThisAndSelfReference_test.go | 4 +- ...lementInterfaceMethodTypePredicate_test.go | 4 +- ...lementInterfaceMultipleImplements1_test.go | 4 +- ...lementInterfaceMultipleImplements2_test.go | 4 +- ...aceMultipleImplementsIntersection1_test.go | 4 +- ...aceMultipleImplementsIntersection2_test.go | 4 +- ...rfaceMultipleMembersAndPunctuation_test.go | 4 +- ...ntInterfaceMultipleSignaturesRest1_test.go | 4 +- ...ntInterfaceMultipleSignaturesRest2_test.go | 4 +- ...plementInterfaceMultipleSignatures_test.go | 4 +- ...mplementInterfaceNamespaceConflict_test.go | 4 +- ...deFixClassImplementInterfaceNoBody_test.go | 4 +- ...entInterfaceNoTruncationProperties_test.go | 4 +- ...lassImplementInterfaceNoTruncation_test.go | 4 +- ...assImplementInterfaceObjectLiteral_test.go | 4 +- ...ImplementInterfaceOptionalProperty_test.go | 4 +- ...pertyFromParentConstructorFunction_test.go | 4 +- ...plementInterfacePropertySignatures_test.go | 4 +- ...FixClassImplementInterfaceProperty_test.go | 4 +- ...assImplementInterfaceQualifiedName_test.go | 4 +- ...mentInterfaceSomePropertiesPresent_test.go | 4 +- ...lassImplementInterfaceTypeLiterals_test.go | 4 +- ...nterfaceTypeParamInstantiateDeeply_test.go | 4 +- ...InterfaceTypeParamInstantiateError_test.go | 4 +- ...nterfaceTypeParamInstantiateNumber_test.go | 4 +- ...mentInterfaceTypeParamInstantiateT_test.go | 4 +- ...mentInterfaceTypeParamInstantiateU_test.go | 4 +- ...entInterfaceTypeParamInstantiation_test.go | 4 +- ...sImplementInterfaceTypeParamMethod_test.go | 4 +- ...ImplementInterfaceUndeclaredSymbol_test.go | 4 +- ...entInterfaceWithAmbientSignatures1_test.go | 4 +- ...entInterfaceWithAmbientSignatures2_test.go | 4 +- ...entInterfaceWithAmbientSignatures3_test.go | 4 +- ...plementInterfaceWithNegativeNumber_test.go | 4 +- ...codeFixClassImplementInterface_all_test.go | 4 +- ...ace_noUndefinedOnOptionalParameter_test.go | 4 +- ...deFixClassImplementInterface_order_test.go | 4 +- ...mentInterface_quotePreferenceAuto1_test.go | 6 +- ...mentInterface_quotePreferenceAuto2_test.go | 6 +- ...entInterface_quotePreferenceDouble_test.go | 6 +- ...entInterface_quotePreferenceSingle_test.go | 6 +- ...ImplementInterface_typeInOtherFile_test.go | 4 +- ...ecedeThisAccess_callWithThisInside_test.go | 4 +- ...FixClassSuperMustPrecedeThisAccess_test.go | 4 +- ...codeFixConvertToMappedObjectType13_test.go | 4 +- .../codeFixConvertToMappedObjectType5_test.go | 4 +- .../codeFixConvertToTypeOnlyImport1_test.go | 4 +- .../codeFixConvertToTypeOnlyImport2_test.go | 4 +- .../codeFixConvertToTypeOnlyImport3_test.go | 4 +- ...QualifiedNameToIndexedAccessType01_test.go | 4 +- .../tests/codeFixCorrectReturnValue27_test.go | 4 +- .../tests/codeFixCorrectReturnValue4_test.go | 4 +- .../tests/codeFixCorrectReturnValue5_test.go | 4 +- .../tests/codeFixCorrectReturnValue6_test.go | 4 +- .../tests/codeFixExpectedComma03_test.go | 4 +- ...deFixForgottenThisPropertyAccess04_test.go | 4 +- .../tests/codeFixGenerateDefinitions_test.go | 4 +- ...ImplicitThis_ts_cantFixNonFunction_test.go | 4 +- .../codeFixImportNonExportedMember4_test.go | 4 +- .../codeFixImportNonExportedMember5_test.go | 4 +- ...deFixImportNonTextualSpecifierText_test.go | 6 +- .../codeFixInferFromCallInAssignment_test.go | 4 +- ...odeFixInferFromExpressionStatement_test.go | 4 +- ...onThisUsageObjectPropertyParameter_test.go | 4 +- ...geObjectPropertyShorthandParameter_test.go | 4 +- ...onThisUsageObjectPropertyShorthand_test.go | 4 +- ...romFunctionThisUsageObjectProperty_test.go | 4 +- .../codeFixInferFromFunctionUsage_test.go | 4 +- .../codeFixInferFromPrimitiveUsage_test.go | 4 +- ...odeFixInferFromUsageBindingElement_test.go | 4 +- .../tests/codeFixInferFromUsageCall_test.go | 4 +- ...ixInferFromUsageCallbackParameter6_test.go | 4 +- ...ixInferFromUsageCallbackParameter7_test.go | 4 +- ...FixInferFromUsageInaccessibleTypes_test.go | 4 +- .../codeFixInferFromUsageMember2_test.go | 4 +- .../codeFixInferFromUsageMember3_test.go | 4 +- .../tests/codeFixInferFromUsageMember_test.go | 4 +- ...odeFixInferFromUsageOptionalParam2_test.go | 4 +- ...codeFixInferFromUsageOptionalParam_test.go | 4 +- .../codeFixInferFromUsageRestParam2_test.go | 4 +- .../codeFixInferFromUsageRestParam3_test.go | 4 +- .../codeFixInferFromUsageRestParam_test.go | 4 +- .../codeFixInferFromUsageVariable3JS_test.go | 4 +- ...erFromUsage_noCrashOnMissingParens_test.go | 4 +- ...ixMissingTypeAnnotationOnExports10_test.go | 4 +- ...ixMissingTypeAnnotationOnExports11_test.go | 4 +- ...ixMissingTypeAnnotationOnExports12_test.go | 4 +- ...ixMissingTypeAnnotationOnExports13_test.go | 4 +- ...ixMissingTypeAnnotationOnExports14_test.go | 4 +- ...ixMissingTypeAnnotationOnExports15_test.go | 4 +- ...ixMissingTypeAnnotationOnExports16_test.go | 4 +- ...nnotationOnExports17-unique-symbol_test.go | 4 +- ...ixMissingTypeAnnotationOnExports18_test.go | 4 +- ...ixMissingTypeAnnotationOnExports19_test.go | 4 +- ...ixMissingTypeAnnotationOnExports20_test.go | 4 +- ...ationOnExports21-params-and-return_test.go | 4 +- ...peAnnotationOnExports22-formatting_test.go | 4 +- ...ionOnExports23-heritage-formatting_test.go | 4 +- ...nOnExports24-heritage-formatting-2_test.go | 4 +- ...nOnExports25-heritage-formatting-3_test.go | 4 +- ...onOnExports26-fn-in-object-literal_test.go | 4 +- ...onOnExports27-non-exported-bidings_test.go | 4 +- ...peAnnotationOnExports28-long-types_test.go | 4 +- ...ngTypeAnnotationOnExports29-inline_test.go | 4 +- ...FixMissingTypeAnnotationOnExports2_test.go | 4 +- ...nnotationOnExports30-inline-import_test.go | 4 +- ...nOnExports31-inline-import-default_test.go | 4 +- ...ationOnExports32-inline-short-hand_test.go | 4 +- ...gTypeAnnotationOnExports33-methods_test.go | 4 +- ...nnotationOnExports34-object-spread_test.go | 4 +- ...tionOnExports35-variable-releative_test.go | 4 +- ...nOnExports36-conditional-releative_test.go | 4 +- ...AnnotationOnExports37-array-spread_test.go | 4 +- ...onOnExports38-unique-symbol-return_test.go | 4 +- ...nExports39-extract-arr-to-variable_test.go | 4 +- ...FixMissingTypeAnnotationOnExports3_test.go | 4 +- ...xports40-extract-other-to-variable_test.go | 4 +- ...Exports41-no-computed-enum-members_test.go | 4 +- ...rts42-static-readonly-class-symbol_test.go | 4 +- ...ionOnExports43-expando-functions-2_test.go | 4 +- ...ionOnExports43-expando-functions-3_test.go | 4 +- ...ionOnExports43-expando-functions-4_test.go | 4 +- ...ionOnExports43-expando-functions-5_test.go | 4 +- ...ationOnExports43-expando-functions_test.go | 4 +- ...notationOnExports44-default-export_test.go | 4 +- ...peAnnotationOnExports45-decorators_test.go | 4 +- ...nExports46-decorators-experimental_test.go | 4 +- ...ixMissingTypeAnnotationOnExports47_test.go | 4 +- ...ixMissingTypeAnnotationOnExports48_test.go | 4 +- ...AnnotationOnExports49-private-name_test.go | 4 +- ...FixMissingTypeAnnotationOnExports4_test.go | 4 +- ...nOnExports50-generics-with-default_test.go | 4 +- ...more-complex-generics-with-default_test.go | 4 +- ...orts52-generics-oversimplification_test.go | 4 +- ...onOnExports53-nested-generic-types_test.go | 4 +- ...tionOnExports54-generator-generics_test.go | 4 +- ...tationOnExports55-generator-return_test.go | 4 +- ...otationOnExports56-toplevel-import_test.go | 4 +- ...erics-doesnt-drop-trailing-unknown_test.go | 4 +- ...rcs-doesnt-drop-trailing-unknown-2_test.go | 4 +- ...rts59-drops-unneeded-after-unknown_test.go | 4 +- ...FixMissingTypeAnnotationOnExports5_test.go | 4 +- ...rops-unneeded-non-trailing-unknown_test.go | 4 +- ...FixMissingTypeAnnotationOnExports6_test.go | 4 +- ...FixMissingTypeAnnotationOnExports7_test.go | 4 +- ...FixMissingTypeAnnotationOnExports8_test.go | 4 +- ...FixMissingTypeAnnotationOnExports9_test.go | 4 +- ...eAnnotationOnExportsTypePredicate1_test.go | 4 +- ...tionOnExports_arrowParensParamOnly_test.go | 4 +- ...ypeAnnotationOnExports_arrowParens_test.go | 4 +- ...ationOnExports_expandoNoDuplicates_test.go | 4 +- ...otationOnExports_jsxWhitespaceText_test.go | 4 +- ...eFixMissingTypeAnnotationOnExports_test.go | 4 +- ...alifiedNameWithIndexedAccessType01_test.go | 4 +- .../tests/codeFixOverrideModifier18_test.go | 4 +- ...codeFixPromoteTypeOnlyImportJsxTag_test.go | 4 +- ...odeFixPromoteTypeOnlyOrderingCrash_test.go | 6 +- .../codeFixPropertyOverrideAccess4_test.go | 4 +- ...xRemoveUnnecessaryAwait_mixedUnion_test.go | 4 +- ...ecessaryAwait_notAvailableOnReturn_test.go | 4 +- .../tests/codeFixRequireInTs3_test.go | 4 +- .../tests/codeFixRequireInTs5_test.go | 4 +- .../fourslash/tests/codeFixSpelling4_test.go | 4 +- .../fourslash/tests/codeFixSpelling5_test.go | 4 +- .../codeFixSpellingCaseSensitive1_test.go | 4 +- .../codeFixSpellingCaseSensitive2_test.go | 4 +- .../codeFixSpellingCaseSensitive3_test.go | 4 +- .../tests/codeFixSpellingCaseWeight1_test.go | 4 +- .../tests/codeFixSpellingCaseWeight2_test.go | 4 +- .../tests/codeFixSpellingJs3_test.go | 4 +- .../tests/codeFixSpellingJs5_test.go | 4 +- .../tests/codeFixSpellingJs6_test.go | 4 +- .../tests/codeFixSpellingJs7_test.go | 4 +- .../tests/codeFixSpellingJs8_test.go | 4 +- .../tests/codeFixSpellingShortName1_test.go | 4 +- .../tests/codeFixSpellingShortName2_test.go | 4 +- ...ule_blankCompilerOptionsInTsConfig_test.go | 4 +- ...ompatibleCompilerOptionsInTsConfig_test.go | 4 +- ...e_missingCompilerOptionsInTsConfig_test.go | 4 +- ...FixTopLevelAwait_module_noTsConfig_test.go | 4 +- ...getES2017CompilerOptionsInTsConfig_test.go | 4 +- ...ompatibleCompilerOptionsInTsConfig_test.go | 4 +- ...FixTopLevelAwait_target_noTsConfig_test.go | 4 +- ...ule_blankCompilerOptionsInTsConfig_test.go | 4 +- ...ompatibleCompilerOptionsInTsConfig_test.go | 4 +- ...e_missingCompilerOptionsInTsConfig_test.go | 4 +- ...TopLevelForAwait_module_noTsConfig_test.go | 4 +- ...getES2017CompilerOptionsInTsConfig_test.go | 4 +- ...ompatibleCompilerOptionsInTsConfig_test.go | 4 +- ...TopLevelForAwait_target_noTsConfig_test.go | 4 +- .../codeFixUndeclaredPropertyAccesses_test.go | 4 +- ...achableCode_noSuggestionIfDisabled_test.go | 4 +- ...codeFixUnusedIdentifier_parameter1_test.go | 4 +- ...codeFixUnusedIdentifier_suggestion_test.go | 6 +- ...codeFixUnusedInterfaceInNamespace1_test.go | 4 +- ...codeFixUnusedInterfaceInNamespace2_test.go | 4 +- ...UnusedLabel_noSuggestionIfDisabled_test.go | 4 +- ...BigIntLiteralWithNumericSeparators_test.go | 4 +- .../codeLensFunctionExpressions01_test.go | 8 +- .../codeLensFunctionsAndConstants01_test.go | 8 +- .../tests/codeLensInterface01_test.go | 8 +- .../tests/codeLensOverloads01_test.go | 8 +- .../codeLensShowOnAllClassMethods_test.go | 8 +- .../tests/codeLensShowOnAllFunctions_test.go | 8 +- .../codeLensShowOnInterfaceMethods_test.go | 8 +- ...odefixClassImplementInterface_omit_test.go | 4 +- .../tests/codefixCrashExportGlobal_test.go | 4 +- .../codefixEnableJsxFlag_noTsconfig_test.go | 4 +- .../codefixInferFromUsageNullish_test.go | 4 +- .../fourslash/tests/commentsBlocks_test.go | 4 +- .../tests/commentsEnumsFourslash_test.go | 8 +- .../commentsExternalModulesFourslash_test.go | 8 +- .../tests/commentsImportDeclaration_test.go | 8 +- .../commentsInheritanceFourslash_test.go | 8 +- .../tests/commentsInterfaceFourslash_test.go | 8 +- .../tests/commentsLinePreservation_test.go | 4 +- .../tests/commentsOverloadsFourslash_test.go | 8 +- .../fourslash/tests/commentsUnion_test.go | 4 +- .../fourslash/tests/commentsVariables_test.go | 8 +- .../tests/completionAfterAtChar_test.go | 6 +- ...etionAfterBackslashFollowingString_test.go | 6 +- .../tests/completionAfterBrace_test.go | 6 +- .../completionAfterCallExpression_test.go | 6 +- .../tests/completionAfterDotDotDot_test.go | 6 +- .../completionAfterExtendsL10nInJs_test.go | 4 +- .../completionAfterImportWithJSDoc_test.go | 6 +- .../tests/completionAfterNewline2_test.go | 8 +- .../tests/completionAfterNewline_test.go | 8 +- .../tests/completionAfterQuestionDot_test.go | 8 +- .../completionAfterTrailingAtInJSDoc1_test.go | 8 +- ...mpletionAmbientPropertyDeclaration_test.go | 6 +- .../tests/completionAsKeyword_test.go | 10 +- .../tests/completionAtCaseClause_test.go | 6 +- .../tests/completionAtDottedNamespace_test.go | 6 +- .../completionAutoInsertQuestionDot_test.go | 8 +- ...emanticDiagnosticsInArrowFunction1_test.go | 8 +- ...ocWithInvalidJSDocTagInTheComment1_test.go | 6 +- ...ssMemberSnippetCrossFileNodeReuse1_test.go | 12 +- ...bersAfterConstAssertionInitializer_test.go | 10 +- .../completionCloneQuestionToken_test.go | 12 +- .../tests/completionColonToken_test.go | 6 +- .../tests/completionDetailSignature_test.go | 10 +- ...OfContextSensitiveParameterNoCrash_test.go | 4 +- ...tionEntryAfterASIExpressionInClass_test.go | 6 +- ...ersWithInferredFunctionReturnType1_test.go | 12 +- ...ntryForArgumentConstrainedToString_test.go | 6 +- ...orArrayElementConstrainedToString2_test.go | 6 +- ...ForArrayElementConstrainedToString_test.go | 6 +- ...rs_StaticWhenBaseTypeIsNotResolved_test.go | 6 +- .../tests/completionEntryForConst_test.go | 8 +- ...nEntryForDeferredMappedTypeMembers_test.go | 6 +- ...ntryForPropertyConstrainedToString_test.go | 6 +- ...ryForPropertyFromUnionOfModuleType_test.go | 8 +- ...ntryForShorthandPropertyAssignment_test.go | 8 +- .../completionEntryForUnionProperty2_test.go | 8 +- .../completionEntryForUnionProperty_test.go | 8 +- .../completionEntryOnNarrowedType_test.go | 8 +- .../tests/completionExportFrom_test.go | 10 +- .../tests/completionFilterText1_test.go | 10 +- .../tests/completionFilterText2_test.go | 10 +- .../tests/completionFilterText3_test.go | 10 +- .../tests/completionFilterText4_test.go | 10 +- ...pletionForComputedStringProperties_test.go | 10 +- .../tests/completionForMetaProperty_test.go | 8 +- .../tests/completionForObjectProperty_test.go | 10 +- ...uotedPropertyInPropertyAssignment1_test.go | 8 +- ...uotedPropertyInPropertyAssignment2_test.go | 8 +- ...uotedPropertyInPropertyAssignment3_test.go | 8 +- ...uotedPropertyInPropertyAssignment4_test.go | 8 +- .../completionForStringLiteral11_test.go | 6 +- .../completionForStringLiteral12_test.go | 8 +- .../completionForStringLiteral13_test.go | 6 +- .../completionForStringLiteral14_test.go | 8 +- .../completionForStringLiteral15_test.go | 8 +- .../completionForStringLiteral16_test.go | 6 +- .../tests/completionForStringLiteral2_test.go | 8 +- .../tests/completionForStringLiteral3_test.go | 8 +- .../tests/completionForStringLiteral4_test.go | 8 +- .../tests/completionForStringLiteral5_test.go | 6 +- .../tests/completionForStringLiteral8_test.go | 6 +- .../completionForStringLiteralExport_test.go | 8 +- ...tionForStringLiteralFromSignature2_test.go | 6 +- ...etionForStringLiteralFromSignature_test.go | 8 +- .../completionForStringLiteralImport1_test.go | 8 +- .../completionForStringLiteralImport2_test.go | 6 +- ...nForStringLiteralInIndexedAccess01_test.go | 8 +- ...orStringLiteralNonrelativeImport10_test.go | 6 +- ...orStringLiteralNonrelativeImport12_test.go | 6 +- ...orStringLiteralNonrelativeImport17_test.go | 6 +- ...orStringLiteralNonrelativeImport18_test.go | 6 +- ...ForStringLiteralNonrelativeImport2_test.go | 6 +- ...ForStringLiteralNonrelativeImport3_test.go | 6 +- ...ForStringLiteralNonrelativeImport4_test.go | 6 +- ...ForStringLiteralNonrelativeImport7_test.go | 6 +- ...ForStringLiteralNonrelativeImport9_test.go | 6 +- ...ngLiteralNonrelativeImportTypings1_test.go | 6 +- ...ngLiteralNonrelativeImportTypings2_test.go | 6 +- ...ngLiteralNonrelativeImportTypings3_test.go | 6 +- ...ionForStringLiteralRelativeImport4_test.go | 6 +- ...ionForStringLiteralRelativeImport5_test.go | 6 +- ...ionForStringLiteralRelativeImport6_test.go | 6 +- ...ngLiteralRelativeImportAllowJSTrue_test.go | 6 +- ...nForStringLiteralWithDynamicImport_test.go | 8 +- ...completionForStringLiteral_details_test.go | 8 +- ...ForStringLiteral_mappedTypeMembers_test.go | 8 +- ...nForStringLiteral_quotePreference1_test.go | 10 +- ...nForStringLiteral_quotePreference2_test.go | 10 +- ...nForStringLiteral_quotePreference3_test.go | 10 +- ...nForStringLiteral_quotePreference4_test.go | 8 +- ...nForStringLiteral_quotePreference5_test.go | 10 +- ...nForStringLiteral_quotePreference6_test.go | 10 +- ...nForStringLiteral_quotePreference7_test.go | 10 +- ...nForStringLiteral_quotePreference8_test.go | 10 +- ...onForStringLiteral_quotePreference_test.go | 10 +- .../tests/completionForStringLiteral_test.go | 8 +- .../tests/completionImportAttributes_test.go | 4 +- .../completionImportKeywordNoCrash_test.go | 4 +- ...ionImportMetaWithGlobalDeclaration_test.go | 6 +- .../tests/completionImportMeta_test.go | 6 +- ...tionImportModuleSpecifierEndingDts_test.go | 10 +- ...etionImportModuleSpecifierEndingJs_test.go | 10 +- ...tionImportModuleSpecifierEndingJsx_test.go | 10 +- ...etionImportModuleSpecifierEndingTs_test.go | 10 +- ...rtModuleSpecifierEndingTsxPreserve_test.go | 10 +- ...mportModuleSpecifierEndingTsxReact_test.go | 10 +- ...pecifierEndingUnsupportedExtension_test.go | 8 +- ...onInArrayLiteralAfterInvalidToken1_test.go | 6 +- .../completionInAugmentedClassModule_test.go | 6 +- .../tests/completionInChecks1_test.go | 6 +- ...ionLikeBody_includesPrimitiveTypes_test.go | 10 +- ...mpletionInIncompleteCallExpression_test.go | 6 +- .../completionInJSDocFunctionNew_test.go | 10 +- .../completionInJSDocFunctionThis_test.go | 10 +- ...ionInJSDocPropertyWithLinkNoCrash1_test.go | 4 +- .../completionInJsDocQualifiedNames_test.go | 8 +- .../fourslash/tests/completionInJsDoc_test.go | 10 +- .../completionInNamedImportLocation_test.go | 10 +- .../completionInTernaryConditional_test.go | 8 +- .../tests/completionInTypeOf1_test.go | 4 +- .../tests/completionInTypeOf2_test.go | 6 +- .../tests/completionInUncheckedJSFile_test.go | 10 +- ...etionInfoWithExplicitTypeArguments_test.go | 8 +- ...ionInsideFunctionContainsArguments_test.go | 6 +- ...xpressionWithInstantiatedClassType_test.go | 6 +- .../tests/completionJSDocNamePath_test.go | 6 +- .../tests/completionJSDocNoCrash2_test.go | 4 +- .../tests/completionJSDocNoCrash_test.go | 4 +- .../tests/completionJsxNoCrash_test.go | 4 +- .../tests/completionListAfterAnyType_test.go | 6 +- .../completionListAfterClassExtends_test.go | 6 +- .../completionListAfterFunction2_test.go | 6 +- .../completionListAfterFunction3_test.go | 6 +- .../tests/completionListAfterFunction_test.go | 6 +- ...ompletionListAfterInvalidCharacter_test.go | 6 +- ...completionListAfterNumericLiteral1_test.go | 6 +- .../completionListAfterNumericLiteral_test.go | 6 +- .../completionListAfterObjectLiteral1_test.go | 6 +- .../completionListAfterPropertyName_test.go | 6 +- ...istAfterRegularExpressionLiteral01_test.go | 10 +- ...istAfterRegularExpressionLiteral02_test.go | 4 +- ...istAfterRegularExpressionLiteral03_test.go | 6 +- ...istAfterRegularExpressionLiteral04_test.go | 6 +- ...istAfterRegularExpressionLiteral05_test.go | 4 +- ...ListAfterRegularExpressionLiteral1_test.go | 10 +- .../tests/completionListAfterSlash_test.go | 4 +- ...ompletionListAfterSpreadOperator01_test.go | 6 +- .../completionListAfterStringLiteral1_test.go | 10 +- ...eWithNoSubstitutionTemplateLiteral_test.go | 8 +- ...lreadyImportedNamespaceExportAlias_test.go | 8 +- ...ionListAndMemberListOnCommentedDot_test.go | 4 +- ...onListAndMemberListOnCommentedLine_test.go | 4 +- ...AndMemberListOnCommentedWhiteSpace_test.go | 4 +- .../completionListAtBeginningOfFile01_test.go | 6 +- ...nningOfIdentifierInArrowFunction01_test.go | 6 +- ...onListAtDeclarationOfParameterType_test.go | 6 +- .../tests/completionListAtEOF1_test.go | 6 +- .../tests/completionListAtEOF2_test.go | 6 +- .../tests/completionListAtEOF_test.go | 6 +- ...onListAtEndOfWordInArrowFunction01_test.go | 6 +- ...onListAtEndOfWordInArrowFunction02_test.go | 10 +- ...onListAtEndOfWordInArrowFunction03_test.go | 10 +- ...tifierDefinitionLocations_Generics_test.go | 4 +- ...dentifierDefinitionLocations_catch_test.go | 4 +- ...ntifierDefinitionLocations_classes_test.go | 4 +- ...rDefinitionLocations_destructuring_test.go | 4 +- ...erDefinitionLocations_enumMembers2_test.go | 4 +- ...ierDefinitionLocations_enumMembers_test.go | 4 +- ...dentifierDefinitionLocations_enums_test.go | 4 +- ...ifierDefinitionLocations_functions_test.go | 4 +- ...entifierDefinitionLocations_infers_test.go | 4 +- ...fierDefinitionLocations_interfaces_test.go | 4 +- ...fierDefinitionLocations_properties_test.go | 6 +- ...efinitionLocations_varDeclarations_test.go | 4 +- .../completionListAtInvalidLocations_test.go | 6 +- .../completionListAtNodeBoundary_test.go | 6 +- .../tests/completionListAtThisType_test.go | 6 +- .../tests/completionListBeforeKeyword_test.go | 6 +- .../completionListBeforeNewScope01_test.go | 6 +- .../completionListBeforeNewScope02_test.go | 6 +- ...letionListBuilderLocations_Modules_test.go | 6 +- ...lderLocations_VariableDeclarations_test.go | 6 +- ...ionListBuilderLocations_parameters_test.go | 6 +- ...ionListBuilderLocations_properties_test.go | 6 +- .../tests/completionListCladule_test.go | 10 +- ...WithSuperClassFromUnknownNamespace_test.go | 6 +- .../tests/completionListClassMembers_test.go | 10 +- .../completionListClassPrivateFields_test.go | 6 +- .../tests/completionListClassThisJS_test.go | 10 +- ...efaultTypeArgumentPositionTypeOnly_test.go | 6 +- .../tests/completionListEnumMembers_test.go | 6 +- .../tests/completionListEnumValues_test.go | 6 +- .../completionListForDerivedType1_test.go | 8 +- .../completionListForExportEquals2_test.go | 10 +- .../completionListForExportEquals_test.go | 10 +- .../completionListForGenericInstance1_test.go | 8 +- ...AmbientModuleWithExportAssignment1_test.go | 4 +- .../completionListForObjectSpread_test.go | 8 +- .../tests/completionListForRest_test.go | 8 +- ...istForShorthandPropertyAssignment2_test.go | 6 +- ...ListForShorthandPropertyAssignment_test.go | 6 +- ...stForTransitivelyExportedMembers01_test.go | 6 +- ...stForTransitivelyExportedMembers02_test.go | 6 +- ...stForTransitivelyExportedMembers03_test.go | 6 +- ...stForTransitivelyExportedMembers04_test.go | 6 +- ...completionListForUnicodeEscapeName_test.go | 6 +- .../completionListFunctionExpression_test.go | 6 +- .../completionListFunctionMembers_test.go | 6 +- ...ListImplementingInterfaceFunctions_test.go | 6 +- ...nArrowFunctionInUnclosedCallSite01_test.go | 6 +- ...InClassExpressionWithTypeParameter_test.go | 8 +- .../completionListInClassStaticBlocks_test.go | 10 +- .../completionListInClosedFunction01_test.go | 6 +- .../completionListInClosedFunction02_test.go | 6 +- .../completionListInClosedFunction03_test.go | 6 +- .../completionListInClosedFunction04_test.go | 6 +- .../completionListInClosedFunction05_test.go | 6 +- .../completionListInClosedFunction06_test.go | 6 +- .../completionListInClosedFunction07_test.go | 6 +- ...osedObjectTypeLiteralInSignature01_test.go | 6 +- ...osedObjectTypeLiteralInSignature02_test.go | 6 +- ...osedObjectTypeLiteralInSignature03_test.go | 6 +- ...osedObjectTypeLiteralInSignature04_test.go | 10 +- .../tests/completionListInComments2_test.go | 4 +- .../tests/completionListInComments3_test.go | 6 +- .../tests/completionListInComments_test.go | 4 +- ...ionListInContextuallyTypedArgument_test.go | 6 +- .../tests/completionListInEmptyFile_test.go | 6 +- .../completionListInExportClause01_test.go | 10 +- .../completionListInExportClause02_test.go | 10 +- .../completionListInExportClause03_test.go | 10 +- ...completionListInExtendsClauseAtEOF_test.go | 6 +- .../completionListInExtendsClause_test.go | 10 +- .../tests/completionListInFatArrow_test.go | 6 +- ...ompletionListInFunctionDeclaration_test.go | 6 +- .../completionListInImportClause01_test.go | 6 +- .../completionListInImportClause02_test.go | 10 +- .../completionListInImportClause03_test.go | 10 +- .../completionListInImportClause04_test.go | 10 +- .../completionListInImportClause05_test.go | 6 +- .../completionListInImportClause06_test.go | 6 +- ...iddleOfIdentifierInArrowFunction01_test.go | 6 +- ...nNamedClassExpressionWithShadowing_test.go | 8 +- ...mpletionListInNamedClassExpression_test.go | 8 +- ...tionListInNamedFunctionExpression1_test.go | 8 +- ...medFunctionExpressionWithShadowing_test.go | 8 +- ...etionListInNamedFunctionExpression_test.go | 6 +- ...pletionListInNamespaceImportName01_test.go | 4 +- ...letionListInObjectBindingPattern01_test.go | 6 +- ...letionListInObjectBindingPattern02_test.go | 6 +- ...letionListInObjectBindingPattern03_test.go | 4 +- ...letionListInObjectBindingPattern04_test.go | 6 +- ...letionListInObjectBindingPattern05_test.go | 6 +- ...letionListInObjectBindingPattern06_test.go | 4 +- ...letionListInObjectBindingPattern07_test.go | 6 +- ...letionListInObjectBindingPattern08_test.go | 6 +- ...letionListInObjectBindingPattern09_test.go | 6 +- ...letionListInObjectBindingPattern10_test.go | 6 +- ...letionListInObjectBindingPattern11_test.go | 6 +- ...letionListInObjectBindingPattern12_test.go | 6 +- ...letionListInObjectBindingPattern13_test.go | 6 +- ...letionListInObjectBindingPattern14_test.go | 4 +- ...letionListInObjectBindingPattern15_test.go | 6 +- ...letionListInObjectBindingPattern16_test.go | 6 +- .../completionListInObjectLiteral2_test.go | 6 +- .../completionListInObjectLiteral3_test.go | 6 +- .../completionListInObjectLiteral4_test.go | 6 +- .../completionListInObjectLiteral5_test.go | 6 +- .../completionListInObjectLiteral6_test.go | 10 +- .../completionListInObjectLiteral7_test.go | 6 +- .../completionListInObjectLiteral8_test.go | 10 +- ...tInObjectLiteralAssignmentPattern1_test.go | 6 +- ...tInObjectLiteralAssignmentPattern2_test.go | 6 +- ...tInObjectLiteralPropertyAssignment_test.go | 6 +- ...teralThatIsParameterOfFunctionCall_test.go | 6 +- .../completionListInObjectLiteral_test.go | 6 +- ...tionListInReturnWithContextualThis_test.go | 6 +- ...nScope_doesNotIncludeAugmentations_test.go | 6 +- .../tests/completionListInScope_test.go | 6 +- .../completionListInStringLiterals1_test.go | 6 +- .../completionListInStringLiterals2_test.go | 6 +- ...pletionListInTemplateLiteralParts1_test.go | 6 +- ...stInTemplateLiteralPartsNegatives1_test.go | 4 +- ...ListInTypeLiteralInTypeParameter10_test.go | 6 +- ...ListInTypeLiteralInTypeParameter11_test.go | 6 +- ...ListInTypeLiteralInTypeParameter12_test.go | 6 +- ...ListInTypeLiteralInTypeParameter13_test.go | 6 +- ...ListInTypeLiteralInTypeParameter14_test.go | 6 +- ...ListInTypeLiteralInTypeParameter15_test.go | 6 +- ...ListInTypeLiteralInTypeParameter16_test.go | 6 +- ...ListInTypeLiteralInTypeParameter17_test.go | 6 +- ...ListInTypeLiteralInTypeParameter18_test.go | 6 +- ...ListInTypeLiteralInTypeParameter19_test.go | 6 +- ...nListInTypeLiteralInTypeParameter1_test.go | 6 +- ...ListInTypeLiteralInTypeParameter20_test.go | 6 +- ...ListInTypeLiteralInTypeParameter21_test.go | 6 +- ...nListInTypeLiteralInTypeParameter2_test.go | 6 +- ...nListInTypeLiteralInTypeParameter3_test.go | 6 +- ...nListInTypeLiteralInTypeParameter4_test.go | 6 +- ...nListInTypeLiteralInTypeParameter5_test.go | 6 +- ...nListInTypeLiteralInTypeParameter6_test.go | 6 +- ...nListInTypeLiteralInTypeParameter7_test.go | 6 +- ...nListInTypeLiteralInTypeParameter8_test.go | 6 +- ...tInTypeParameterOfClassExpression1_test.go | 6 +- ...ionListInTypeParameterOfTypeAlias1_test.go | 6 +- ...ionListInTypeParameterOfTypeAlias2_test.go | 6 +- ...ionListInTypeParameterOfTypeAlias3_test.go | 4 +- ...mpletionListInTypedObjectLiterals2_test.go | 6 +- ...mpletionListInTypedObjectLiterals3_test.go | 6 +- ...mpletionListInTypedObjectLiterals4_test.go | 6 +- ...tLiteralsWithPartialPropertyNames2_test.go | 6 +- ...ctLiteralsWithPartialPropertyNames_test.go | 6 +- ...ionListInUnclosedCommaExpression01_test.go | 6 +- ...ionListInUnclosedCommaExpression02_test.go | 6 +- ...onListInUnclosedDeleteExpression01_test.go | 6 +- ...onListInUnclosedDeleteExpression02_test.go | 6 +- ...nUnclosedElementAccessExpression01_test.go | 6 +- ...nUnclosedElementAccessExpression02_test.go | 6 +- .../completionListInUnclosedForLoop01_test.go | 6 +- .../completionListInUnclosedForLoop02_test.go | 6 +- ...completionListInUnclosedFunction01_test.go | 6 +- ...completionListInUnclosedFunction02_test.go | 6 +- ...completionListInUnclosedFunction03_test.go | 6 +- ...completionListInUnclosedFunction04_test.go | 6 +- ...completionListInUnclosedFunction05_test.go | 6 +- ...completionListInUnclosedFunction06_test.go | 6 +- ...completionListInUnclosedFunction07_test.go | 6 +- ...completionListInUnclosedFunction08_test.go | 6 +- ...completionListInUnclosedFunction09_test.go | 6 +- ...completionListInUnclosedFunction10_test.go | 6 +- ...completionListInUnclosedFunction11_test.go | 6 +- ...completionListInUnclosedFunction12_test.go | 6 +- ...completionListInUnclosedFunction13_test.go | 6 +- ...completionListInUnclosedFunction14_test.go | 6 +- ...completionListInUnclosedFunction15_test.go | 6 +- ...completionListInUnclosedFunction16_test.go | 6 +- ...completionListInUnclosedFunction17_test.go | 6 +- ...completionListInUnclosedFunction18_test.go | 6 +- ...completionListInUnclosedFunction19_test.go | 6 +- ...tionListInUnclosedIndexSignature01_test.go | 6 +- ...tionListInUnclosedIndexSignature02_test.go | 6 +- ...tionListInUnclosedIndexSignature03_test.go | 6 +- ...osedObjectTypeLiteralInSignature01_test.go | 6 +- ...osedObjectTypeLiteralInSignature02_test.go | 6 +- ...osedObjectTypeLiteralInSignature03_test.go | 6 +- ...osedObjectTypeLiteralInSignature04_test.go | 10 +- ...onListInUnclosedSpreadExpression01_test.go | 6 +- ...onListInUnclosedSpreadExpression02_test.go | 6 +- ...tionListInUnclosedTaggedTemplate01_test.go | 6 +- ...tionListInUnclosedTaggedTemplate02_test.go | 6 +- ...completionListInUnclosedTemplate01_test.go | 6 +- ...completionListInUnclosedTemplate02_test.go | 6 +- ...pletionListInUnclosedTypeArguments_test.go | 6 +- ...onListInUnclosedTypeOfExpression01_test.go | 6 +- ...onListInUnclosedTypeOfExpression02_test.go | 6 +- ...tionListInUnclosedVoidExpression01_test.go | 6 +- .../tests/completionListInferKeyword_test.go | 10 +- ...etionListInsideTargetTypedFunction_test.go | 8 +- ...etionListInstanceProtectedMembers2_test.go | 6 +- ...etionListInstanceProtectedMembers3_test.go | 6 +- ...etionListInstanceProtectedMembers4_test.go | 6 +- ...letionListInstanceProtectedMembers_test.go | 6 +- .../completionListInvalidMemberNames2_test.go | 6 +- ...ListInvalidMemberNames_escapeQuote_test.go | 10 +- ...tInvalidMemberNames_startWithSpace_test.go | 8 +- .../completionListInvalidMemberNames_test.go | 8 +- ...MemberNames_withExistingIdentifier_test.go | 8 +- .../tests/completionListKeywords_test.go | 6 +- .../tests/completionListModuleMembers_test.go | 6 +- ...ionListNewIdentifierBindingElement_test.go | 4 +- ...stNewIdentifierFunctionDeclaration_test.go | 6 +- ...stNewIdentifierVariableDeclaration_test.go | 4 +- ...ectMembersInTypeLocationWithTypeof_test.go | 8 +- .../tests/completionListObjectMembers_test.go | 8 +- .../completionListOfGenericSymbol_test.go | 8 +- .../completionListOfSplitInterface_test.go | 6 +- .../tests/completionListOfUnion_test.go | 8 +- .../completionListOnAliasedModule_test.go | 6 +- .../tests/completionListOnAliases2_test.go | 10 +- .../tests/completionListOnAliases3_test.go | 6 +- .../tests/completionListOnAliases_test.go | 8 +- ...OnFunctionCallWithOptionalArgument_test.go | 6 +- ...ompletionListOnMethodParameterName_test.go | 4 +- .../completionListOnParamInClass_test.go | 6 +- .../tests/completionListOnParam_test.go | 6 +- ...etionListOnPrivateVariableInModule_test.go | 8 +- .../tests/completionListOnSuper_test.go | 6 +- .../completionListOnVarBetweenModules_test.go | 6 +- ...ListOutsideOfClosedArrowFunction01_test.go | 6 +- ...ListOutsideOfClosedArrowFunction02_test.go | 6 +- ...tsideOfClosedFunctionDeclaration01_test.go | 6 +- .../completionListOutsideOfForLoop01_test.go | 6 +- .../completionListOutsideOfForLoop02_test.go | 6 +- .../completionListPrivateMembers2_test.go | 6 +- .../completionListPrivateMembers3_test.go | 6 +- .../completionListPrivateMembers_test.go | 6 +- ...ompletionListPrivateNamesAccessors_test.go | 6 +- .../completionListPrivateNamesMethods_test.go | 6 +- .../tests/completionListPrivateNames_test.go | 6 +- .../completionListProtectedMembers_test.go | 6 +- .../tests/completionListStaticMembers_test.go | 10 +- ...pletionListStaticProtectedMembers2_test.go | 10 +- ...pletionListStaticProtectedMembers3_test.go | 10 +- ...mpletionListStaticProtectedMembers_test.go | 10 +- ...nListStringParenthesizedExpression_test.go | 8 +- ...pletionListStringParenthesizedType_test.go | 8 +- .../tests/completionListSuperMembers_test.go | 6 +- ...mpletionListWithAmbientDeclaration_test.go | 6 +- .../tests/completionListWithLabel_test.go | 6 +- ...completionListWithUnresolvedModule_test.go | 10 +- ...tionListWithoutVariableinitializer_test.go | 6 +- .../completionList_getExportsOfModule_test.go | 6 +- ...teralTypeAsIndexedAccessTypeObject_test.go | 8 +- ...tionNoAutoInsertQuestionDotForThis_test.go | 8 +- ...oInsertQuestionDotForTypeParameter_test.go | 8 +- ...tQuestionDotWithUserPreferencesOff_test.go | 6 +- .../tests/completionOfAwaitPromise1_test.go | 8 +- .../tests/completionOfAwaitPromise2_test.go | 8 +- .../tests/completionOfAwaitPromise3_test.go | 8 +- .../tests/completionOfAwaitPromise4_test.go | 6 +- .../tests/completionOfAwaitPromise5_test.go | 8 +- .../tests/completionOfAwaitPromise6_test.go | 6 +- .../tests/completionOfAwaitPromise7_test.go | 8 +- .../tests/completionOfInterfaceAndVar_test.go | 8 +- .../completionPreferredSuggestions1_test.go | 6 +- ...PropertyShorthandForObjectLiteral2_test.go | 6 +- ...PropertyShorthandForObjectLiteral3_test.go | 6 +- ...PropertyShorthandForObjectLiteral4_test.go | 6 +- ...PropertyShorthandForObjectLiteral5_test.go | 10 +- .../tests/completionResolveAfterEdit_test.go | 8 +- .../tests/completionResolveKeyword_test.go | 8 +- .../completionReturnConstAssertion_test.go | 8 +- .../tests/completionSatisfiesKeyword_test.go | 10 +- .../tests/completionTypeAssertion_test.go | 6 +- .../tests/completionTypeGuard_test.go | 6 +- .../tests/completionTypeofExpressions_test.go | 6 +- .../tests/completionUsingKeyword_test.go | 10 +- ...ithConditionalOperatorMissingColon_test.go | 6 +- ...nWithDotFollowedByNamespaceKeyword_test.go | 8 +- ...pletionWithNamespaceInsideFunction_test.go | 8 +- ...WithUnterminatedJSDocEndingWithAt1_test.go | 8 +- ...WithUnterminatedJSDocEndingWithAt2_test.go | 8 +- .../fourslash/tests/completions01_test.go | 6 +- .../fourslash/tests/completions03_test.go | 6 +- ...mpletionsAfterAsyncInObjectLiteral_test.go | 6 +- .../tests/completionsAfterJSDoc_test.go | 10 +- .../completionsAfterKeywordsInBlock_test.go | 10 +- .../completionsAfterLessThanToken_test.go | 10 +- .../tests/completionsAssertKeyword_test.go | 10 +- .../tests/completionsAsserts_test.go | 8 +- .../completionsAtGenericTypeArguments_test.go | 6 +- ...sAtIncompleteObjectLiteralProperty_test.go | 10 +- ...AtTopLevelImportAssignmentNoCrash1_test.go | 4 +- .../tests/completionsAtTypeArguments_test.go | 6 +- .../completionsAugmentedTypesClass2_test.go | 8 +- .../tests/completionsBeforeRestArg1_test.go | 6 +- ...completionsBigIntShowNoCompletions_test.go | 6 +- ...lassMemberImportTypeNodeParameter1_test.go | 12 +- ...lassMemberImportTypeNodeParameter2_test.go | 12 +- ...lassMemberImportTypeNodeParameter3_test.go | 12 +- ...lassMemberImportTypeNodeParameter4_test.go | 12 +- ...lassPropertiesAfterPrivateProperty_test.go | 6 +- ...ionsCombineOverloads_restParameter_test.go | 6 +- ...letionsCombineOverloads_returnType_test.go | 6 +- .../tests/completionsCombineOverloads_test.go | 6 +- .../completionsConditionalMember_test.go | 8 +- .../tests/completionsDefaultExport_test.go | 8 +- ...tKeywordWhenDefaultExportAvailable_test.go | 10 +- .../tests/completionsDeprecatedTags_test.go | 10 +- .../tests/completionsDestructuring_test.go | 6 +- .../completionsDiscriminatedUnion_test.go | 6 +- ...mpletionsDotDotDotInObjectLiteral1_test.go | 6 +- ...nsDotInArrayLiteralInObjectLiteral_test.go | 6 +- ...sECMAPrivateMemberTriggerCharacter_test.go | 6 +- .../completionsECMAPrivateMember_test.go | 8 +- .../completionsElementAccessNumeric_test.go | 8 +- .../tests/completionsExportImport_test.go | 8 +- ...ResolutionOrderInImportDeclaration_test.go | 6 +- ...etionsExternalModuleRenamedExports_test.go | 6 +- ...ForContextualConstraintTypeInJsDoc_test.go | 4 +- ...LatterTypeParametersInConstraints1_test.go | 6 +- ...ineDefaultImportWithFromOnNextLine_test.go | 6 +- ...ionsForRecursiveGenericTypesMember_test.go | 6 +- ...sForSelfTypeParameterInConstraint1_test.go | 6 +- ...ependingOnContexSensitiveSignature_test.go | 6 +- .../tests/completionsFromUntitledFile_test.go | 8 +- .../completionsGeneratorFunctions_test.go | 10 +- .../completionsGenericIndexedAccess1_test.go | 8 +- .../completionsGenericIndexedAccess2_test.go | 8 +- .../completionsGenericIndexedAccess3_test.go | 10 +- .../completionsGenericIndexedAccess4_test.go | 10 +- .../completionsGenericIndexedAccess5_test.go | 10 +- .../completionsGenericIndexedAccess6_test.go | 8 +- ...tionsGenericTypeWithMultipleBases1_test.go | 8 +- .../completionsGenericUnconstrained_test.go | 10 +- .../tests/completionsImportBaseUrl_test.go | 10 +- ...ionAttributesEmptyModuleSpecifier1_test.go | 6 +- ...ionAttributesErrorModuleSpecifier1_test.go | 6 +- ...mpletionsImportDefaultExportCrash1_test.go | 8 +- ...mpletionsImportDefaultExportCrash2_test.go | 10 +- .../tests/completionsImportFromJSXTag_test.go | 4 +- ...ionsImportModuleAugmentationWithJS_test.go | 4 +- ...completionsImportOrExportSpecifier_test.go | 10 +- .../completionsImportPathsConflict_test.go | 10 +- .../completionsImportTypeKeyword_test.go | 10 +- .../completionsImportYieldExpression_test.go | 4 +- .../tests/completionsImport_46332_test.go | 10 +- ..._addToNamedWithDifferentCacheValue_test.go | 10 +- .../tests/completionsImport_ambient_test.go | 10 +- .../completionsImport_augmentation_test.go | 10 +- ...etionsImport_compilerOptionsModule_test.go | 10 +- ...mpletionsImport_computedSymbolName_test.go | 6 +- ...ionsImport_defaultAndNamedConflict_test.go | 10 +- ...letionsImport_defaultFalsePositive_test.go | 14 +- ...nsImport_default_addToNamedImports_test.go | 10 +- ...mport_default_addToNamespaceImport_test.go | 10 +- ...t_default_alreadyExistedWithRename_test.go | 10 +- ...ompletionsImport_default_anonymous_test.go | 10 +- ...nsImport_default_didNotExistBefore_test.go | 10 +- ...rt_default_exportDefaultIdentifier_test.go | 10 +- ...ort_default_fromMergedDeclarations_test.go | 10 +- ...completionsImport_default_reExport_test.go | 10 +- ...mpletionsImport_default_symbolName_test.go | 10 +- ...sImport_details_withMisspelledName_test.go | 6 +- ...atePackages_scopedTypesAndNotTypes_test.go | 10 +- ...port_duplicatePackages_scopedTypes_test.go | 10 +- ...onsImport_duplicatePackages_scoped_test.go | 10 +- ...duplicatePackages_typesAndNotTypes_test.go | 10 +- ...ionsImport_duplicatePackages_types_test.go | 10 +- ..._exportEqualsNamespace_noDuplicate_test.go | 10 +- ...tionsImport_exportEquals_anonymous_test.go | 10 +- ...pletionsImport_exportEquals_global_test.go | 10 +- .../completionsImport_exportEquals_test.go | 10 +- ...ilteredByInvalidPackageJson_direct_test.go | 10 +- ...lteredByPackageJson_@typesImplicit_test.go | 10 +- ...t_filteredByPackageJson_@typesOnly_test.go | 10 +- ...port_filteredByPackageJson_ambient_test.go | 10 +- ...mport_filteredByPackageJson_direct_test.go | 10 +- ...mport_filteredByPackageJson_nested_test.go | 10 +- ...eredByPackageJson_peerDependencies_test.go | 10 +- ...ompletionsImport_fromAmbientModule_test.go | 4 +- .../completionsImport_importType_test.go | 10 +- ...nsImport_jsModuleExportsAssignment_test.go | 10 +- ...sImport_jsxOpeningTagImportDefault_test.go | 10 +- .../completionsImport_mergedReExport_test.go | 10 +- ...letionsImport_multipleWithSameName_test.go | 10 +- ...ionsImport_named_addToNamedImports_test.go | 10 +- ...ionsImport_named_didNotExistBefore_test.go | 10 +- ...named_exportEqualsNamespace_merged_test.go | 10 +- ...Import_named_exportEqualsNamespace_test.go | 10 +- ...mport_named_fromMergedDeclarations_test.go | 10 +- ...Import_named_namespaceImportExists_test.go | 10 +- .../completionsImport_noSemicolons_test.go | 4 +- ...Import_notFromUnrelatedNodeModules_test.go | 6 +- ...ionsImport_ofAlias_preferShortPath_test.go | 10 +- ...mport_packageJsonImportsPreference_test.go | 12 +- ...mport_preferUpdatingExistingImport_test.go | 10 +- ...onsImport_previousTokenIsSemicolon_test.go | 10 +- ...completionsImport_promoteTypeOnly2_test.go | 8 +- .../completionsImport_quoteStyle_test.go | 6 +- ...completionsImport_reExportDefault2_test.go | 10 +- .../completionsImport_reExportDefault_test.go | 10 +- ...mpletionsImport_reExport_wrongName_test.go | 10 +- ...ompletionsImport_reexportTransient_test.go | 10 +- .../completionsImport_require_addNew_test.go | 10 +- ...etionsImport_require_addToExisting_test.go | 10 +- .../tests/completionsImport_require_test.go | 10 +- .../completionsImport_shadowedByLocal_test.go | 8 +- ...ionsImport_sortingModuleSpecifiers_test.go | 10 +- .../tests/completionsImport_tsx_test.go | 10 +- .../tests/completionsImport_typeOnly_test.go | 4 +- ...mpletionsImport_umdDefaultNoCrash1_test.go | 10 +- ...mpletionsImport_umdDefaultNoCrash2_test.go | 8 +- ...onsImport_umdModules1_globalAccess_test.go | 10 +- ...nsImport_umdModules2_moduleExports_test.go | 10 +- ...mpletionsImport_umdModules3_script_test.go | 10 +- ...onsImport_uriStyleNodeCoreModules1_test.go | 10 +- ...onsImport_uriStyleNodeCoreModules2_test.go | 10 +- ...onsImport_uriStyleNodeCoreModules3_test.go | 10 +- ...etionsImport_weirdDefaultSynthesis_test.go | 4 +- ...Import_windowsPathsProjectRelative_test.go | 12 +- ...nsInArrayLiteralWithContextualType_test.go | 6 +- .../tests/completionsInEmptyTupleType_test.go | 6 +- .../tests/completionsInExport_invalid_test.go | 10 +- .../completionsInExport_moduleBlock_test.go | 10 +- .../tests/completionsInExport_test.go | 10 +- ...nJsxTagDifferentSpreadElementTypes_test.go | 4 +- .../tests/completionsInJsxTag_test.go | 8 +- ...completionsInMapConstructorNoCrash_test.go | 6 +- .../tests/completionsInRequire_test.go | 6 +- ...mpletionsIndexSignatureConstraint1_test.go | 10 +- .../tests/completionsInterfaceElement_test.go | 10 +- .../completionsIsTypeOnlyCompletion_test.go | 6 +- ...TagAttributesEmptyModuleSpecifier1_test.go | 6 +- ...TagAttributesErrorModuleSpecifier1_test.go | 6 +- ...SDocImportTagEmptyModuleSpecifier1_test.go | 6 +- .../tests/completionsJSDocNoCrash1_test.go | 6 +- .../tests/completionsJSDocNoCrash2_test.go | 6 +- .../tests/completionsJSDocNoCrash3_test.go | 10 +- .../tests/completionsJSDocSignature_test.go | 6 +- .../tests/completionsJSDocTrivia_test.go | 6 +- .../completionsJsPropertyAssignment_test.go | 8 +- ...ompletionsJsdocParamTypeBeforeName_test.go | 6 +- .../tests/completionsJsdocTag_test.go | 8 +- .../tests/completionsJsdocTypeTagCast_test.go | 10 +- .../tests/completionsJsxAttribute2_test.go | 6 +- ...ompletionsJsxAttributeInitializer2_test.go | 8 +- .../tests/completionsJsxExpression_test.go | 12 +- .../fourslash/tests/completionsKeyof_test.go | 8 +- .../tests/completionsKeywordsExtends_test.go | 10 +- ...lyInArgumentWithNullableConstraint_test.go | 6 +- ...rectlyInRestConstrainedToArrayType_test.go | 6 +- ...rectlyInRestConstrainedToTupleType_test.go | 6 +- ...alFromInferenceWithinInferredType1_test.go | 6 +- ...alFromInferenceWithinInferredType2_test.go | 6 +- ...alFromInferenceWithinInferredType3_test.go | 6 +- ...onsLiteralMatchingGenericSignature_test.go | 6 +- ...eralOnPropertyValueMatchingGeneric_test.go | 6 +- .../tests/completionsLiteralOverload_test.go | 6 +- .../tests/completionsLiterals_test.go | 8 +- .../completionsMergedDeclarations1_test.go | 6 +- .../completionsMergedDeclarations2_test.go | 6 +- ...ompletionsNamespaceMergedWithClass_test.go | 10 +- ...mpletionsNamespaceMergedWithObject_test.go | 6 +- .../tests/completionsNamespaceName_test.go | 6 +- .../tests/completionsNewTarget_test.go | 6 +- .../completionsNonExistentImport_test.go | 6 +- .../completionsObjectLiteralMethod1_test.go | 14 +- .../completionsObjectLiteralMethod2_test.go | 14 +- .../completionsObjectLiteralMethod3_test.go | 14 +- .../completionsObjectLiteralMethod4_test.go | 14 +- .../completionsObjectLiteralMethod5_test.go | 14 +- .../completionsObjectLiteralMethod6_test.go | 10 +- ...pletionsObjectLiteralModuleExports_test.go | 6 +- ...bjectLiteralUnionStringMappingType_test.go | 8 +- ...ectLiteralUnionTemplateLiteralType_test.go | 8 +- ...ObjectLiteralWithPartialConstraint_test.go | 10 +- .../completionsOptionalKindModifier_test.go | 8 +- .../tests/completionsOptionalMethod_test.go | 6 +- .../completionsOverridingMethod0_test.go | 14 +- .../completionsOverridingMethod10_test.go | 14 +- .../completionsOverridingMethod11_test.go | 14 +- .../completionsOverridingMethod12_test.go | 14 +- .../completionsOverridingMethod14_test.go | 14 +- .../completionsOverridingMethod17_test.go | 14 +- .../completionsOverridingMethod18_test.go | 14 +- .../completionsOverridingMethod19_test.go | 14 +- .../completionsOverridingMethod1_test.go | 14 +- .../completionsOverridingMethod20_test.go | 14 +- .../completionsOverridingMethod21_test.go | 14 +- .../completionsOverridingMethod22_test.go | 14 +- .../completionsOverridingMethod2_test.go | 14 +- .../completionsOverridingMethod3_test.go | 14 +- .../completionsOverridingMethod4_test.go | 14 +- .../completionsOverridingMethod5_test.go | 14 +- .../completionsOverridingMethod6_test.go | 14 +- .../completionsOverridingMethod7_test.go | 14 +- .../completionsOverridingMethod8_test.go | 14 +- .../completionsOverridingMethod9_test.go | 14 +- .../completionsOverridingMethodCrash1_test.go | 14 +- .../completionsOverridingMethodCrash2_test.go | 14 +- ...onsOverridingMethodDefaultExported_test.go | 14 +- .../completionsOverridingProperties1_test.go | 14 +- .../completionsOverridingProperties2_test.go | 12 +- .../completionsOverridingProperties3_test.go | 12 +- .../completionsPathUnknownExtension_test.go | 6 +- ...JsonModuleWithoutResolveJsonModule_test.go | 6 +- .../tests/completionsPathsJsonModule_test.go | 8 +- ...completionsPathsRelativeJsonModule_test.go | 8 +- .../tests/completionsPaths_importType_test.go | 8 +- .../tests/completionsPaths_kinds_test.go | 8 +- ...s_pathMapping_nonTrailingWildcard1_test.go | 8 +- ...s_pathMapping_notInNestedDirectory_test.go | 6 +- ...sPaths_pathMapping_parentDirectory_test.go | 8 +- .../completionsPaths_pathMapping_test.go | 8 +- .../completionsPrivateProperties_Js_test.go | 6 +- .../completionsPropertiesPriorities_test.go | 10 +- ...ionsPropertiesWithPromiseUnionType_test.go | 8 +- ...ompletionsQuotedObjectLiteralUnion_test.go | 6 +- .../completionsRecommended_equals_test.go | 8 +- .../completionsRecommended_namespace_test.go | 10 +- ...onsRecommended_nonAccessibleSymbol_test.go | 6 +- .../completionsRecommended_switch_test.go | 8 +- .../completionsRecommended_union_test.go | 8 +- .../completionsRecursiveNamespace_test.go | 4 +- ...completionsRedeclareModuleAsGlobal_test.go | 10 +- .../tests/completionsSelfDeclaring1_test.go | 10 +- .../tests/completionsSelfDeclaring2_test.go | 6 +- .../tests/completionsSelfDeclaring3_test.go | 6 +- ...nsStringLiteral_fromTypeConstraint_test.go | 8 +- ...letionsStringsWithTriggerCharacter_test.go | 8 +- .../tests/completionsSymbolMembers_test.go | 10 +- .../tests/completionsTriggerCharacter_test.go | 8 +- .../fourslash/tests/completionsTuple_test.go | 8 +- .../completionsTypeAssertionKeywords_test.go | 6 +- .../tests/completionsTypeKeywords_test.go | 6 +- .../completionsTypeOnlyNamespace_test.go | 8 +- ...pletionsUnionStringLiteralProperty_test.go | 6 +- .../fourslash/tests/completionsUnion_test.go | 6 +- .../tests/completionsUniqueSymbol1_test.go | 10 +- .../completionsUniqueSymbol_import_test.go | 10 +- .../completionsUnterminatedLiteral_test.go | 6 +- .../completionsWithDeprecatedTag10_test.go | 10 +- .../completionsWithDeprecatedTag1_test.go | 10 +- .../completionsWithDeprecatedTag2_test.go | 10 +- .../completionsWithDeprecatedTag3_test.go | 10 +- .../completionsWithDeprecatedTag4_test.go | 10 +- .../completionsWithDeprecatedTag5_test.go | 10 +- .../completionsWithDeprecatedTag6_test.go | 10 +- .../completionsWithDeprecatedTag7_test.go | 10 +- ...ompletionsWithGenericStringLiteral_test.go | 6 +- ...tionalPropertiesGenericConstructor_test.go | 10 +- ...sWithOptionalPropertiesGenericDeep_test.go | 10 +- ...hOptionalPropertiesGenericPartial2_test.go | 10 +- ...hOptionalPropertiesGenericPartial3_test.go | 10 +- ...thOptionalPropertiesGenericPartial_test.go | 10 +- ...ionalPropertiesGenericValidBoolean_test.go | 10 +- ...tionsWithOptionalPropertiesGeneric_test.go | 10 +- .../completionsWithOptionalProperties_test.go | 10 +- .../tests/completionsWithOverride1_test.go | 6 +- .../tests/completionsWithOverride2_test.go | 6 +- ...pletionsWithStringReplacementMode1_test.go | 8 +- .../tests/completionsWrappedClass_test.go | 6 +- .../completionsWritingSpreadArgument_test.go | 6 +- ...onsOfObjectsInAListAfterFormatting_test.go | 4 +- ...tentContextualTypeErrorsAfterEdits_test.go | 4 +- ...onstEnumQuickInfoAndCompletionList_test.go | 8 +- .../constQuickInfoAndCompletionList_test.go | 8 +- .../tests/constructorBraceFormatting_test.go | 4 +- .../constructorFindAllReferences1VS_test.go | 6 +- .../constructorFindAllReferences1_test.go | 4 +- .../constructorFindAllReferences2_test.go | 4 +- .../constructorFindAllReferences3_test.go | 4 +- .../constructorFindAllReferences4_test.go | 4 +- .../tests/constructorQuickInfo_test.go | 4 +- .../tests/contentMapperAutoImports_test.go | 16 +-- .../tests/contentMapperCodeActions_test.go | 4 +- .../tests/contentMapperCompletions_test.go | 10 +- ...tentMapperDeclarationMapNavigation_test.go | 4 +- .../tests/contentMapperDefinition_test.go | 4 +- .../tests/contentMapperDiagnostics_test.go | 6 +- .../contentMapperDocumentHighlights_test.go | 4 +- .../contentMapperDocumentSymbols_test.go | 4 +- .../contentMapperDuplicateMappings_test.go | 4 +- .../contentMapperDuplicateProjections_test.go | 4 +- .../tests/contentMapperEditSafety_test.go | 12 +- .../tests/contentMapperHover_test.go | 4 +- .../tests/contentMapperImplementation_test.go | 4 +- .../tests/contentMapperRangeFeatures_test.go | 4 +- .../tests/contentMapperReferences_test.go | 4 +- .../tests/contentMapperRename_test.go | 4 +- .../tests/contentMapperSignatureHelp_test.go | 6 +- ...ontentMapperSupplementalDefinition_test.go | 6 +- .../tests/contentMapperTypeDefinition_test.go | 4 +- .../fourslash/tests/contentMapper_test.go | 4 +- ...contextualTypingFromTypeAssertion1_test.go | 4 +- .../contextualTypingGenericFunction1_test.go | 4 +- ...tualTypingOfGenericCallSignatures1_test.go | 4 +- ...tualTypingOfGenericCallSignatures2_test.go | 4 +- .../contextualTypingReturnExpressions_test.go | 4 +- ...llyTypedFunctionExpressionGeneric1_test.go | 4 +- ...ectLiteralMethodDeclarationParam01_test.go | 4 +- .../tests/contextuallyTypedParameters_test.go | 4 +- ...ctionToEs6Class_noQuickInfoForIIFE_test.go | 4 +- ...ssionsDontCrashGettingOutlineSpans_test.go | 4 +- ...foExportedTypeDoesNotUseImportType_test.go | 4 +- .../declarationMapGoToDefinition_test.go | 4 +- ...psGoToDefinitionRelativeSourceRoot_test.go | 4 +- ...finitionSameNameDifferentDirectory_test.go | 4 +- .../declarationMapsOutOfDateMapping_test.go | 4 +- .../fourslash/tests/declareFunction_test.go | 6 +- .../tests/decoratorOnPrivateMethod_test.go | 6 +- ...cateDuplicateMergedBindCheckErrors_test.go | 4 +- .../defaultParamsAndContextualTypes_test.go | 4 +- .../fourslash/tests/definition01_test.go | 4 +- .../tests/definitionNameOnEnumMember_test.go | 4 +- .../fourslash/tests/definition_test.go | 4 +- .../tests/deleteClassWithEnumPresent_test.go | 4 +- ...deleteExtensionInReopenedInterface_test.go | 4 +- .../deleteModifierBeforeVarStatement1_test.go | 4 +- .../tests/deleteTypeParameter_test.go | 4 +- ...precatedContextualPropertyOverload_test.go | 6 +- .../deprecatedInheritedJSDocOverload_test.go | 4 +- ...dTypeIndexerWithGenericConstraints_test.go | 4 +- .../tests/destructuredInterfaceJSDoc_test.go | 4 +- .../destructuredIntersectionJSDoc_test.go | 4 +- ...ultImportMergedWithJSDocTypeAlias1_test.go | 4 +- .../docCommentTemplateClassDecl01_test.go | 4 +- ...cCommentTemplateClassDeclMethods01_test.go | 4 +- ...cCommentTemplateClassDeclMethods02_test.go | 4 +- ...CommentTemplateClassDeclProperty01_test.go | 4 +- .../docCommentTemplateConstructor01_test.go | 4 +- .../tests/docCommentTemplateEmptyFile_test.go | 4 +- ...cCommentTemplateExportAssignmentJS_test.go | 4 +- ...cCommentTemplateFunctionExpression_test.go | 4 +- ...tTemplateFunctionWithParameters_js_test.go | 4 +- ...mentTemplateFunctionWithParameters_test.go | 4 +- ...cCommentTemplateInMultiLineComment_test.go | 4 +- ...CommentTemplateInSingleLineComment_test.go | 4 +- .../docCommentTemplateIndentation_test.go | 4 +- ...tTemplateInsideFunctionDeclaration_test.go | 4 +- ...plateInterfacePropertyFunctionType_test.go | 4 +- ...plateInterfacesEnumsAndTypeAliases_test.go | 4 +- ...emplateJsSpecialPropertyAssignment_test.go | 4 +- ...mentTemplateNamespacesAndModules01_test.go | 4 +- ...mentTemplateNamespacesAndModules02_test.go | 4 +- ...mentTemplateObjectLiteralMethods01_test.go | 4 +- .../docCommentTemplatePrototypeMethod_test.go | 4 +- .../tests/docCommentTemplateRegex_test.go | 4 +- .../docCommentTemplateReturnsTag1_test.go | 4 +- .../docCommentTemplateReturnsTag2_test.go | 4 +- ...ommentTemplateVariableStatements01_test.go | 4 +- ...ommentTemplateVariableStatements02_test.go | 4 +- ...ommentTemplateVariableStatements03_test.go | 4 +- ...ocCommentTemplateWithExistingJSDoc_test.go | 4 +- ...cCommentTemplateWithMultipleJSDoc1_test.go | 4 +- ...cCommentTemplateWithMultipleJSDoc2_test.go | 4 +- ...cCommentTemplateWithMultipleJSDoc3_test.go | 4 +- ...lateWithMultipleJSDocAndParameters_test.go | 4 +- ...CommentTemplate_insideEmptyComment_test.go | 4 +- ...entHighlightAtInheritedProperties1_test.go | 6 +- ...entHighlightAtInheritedProperties2_test.go | 6 +- ...entHighlightAtInheritedProperties3_test.go | 6 +- ...entHighlightAtInheritedProperties4_test.go | 6 +- ...entHighlightAtInheritedProperties5_test.go | 6 +- ...entHighlightAtInheritedProperties6_test.go | 6 +- ...ghtAtParameterPropertyDeclaration1_test.go | 6 +- ...ghtAtParameterPropertyDeclaration2_test.go | 6 +- ...ghtAtParameterPropertyDeclaration3_test.go | 6 +- .../documentHighlightDefaultInKeyword_test.go | 6 +- .../documentHighlightDefaultInSwitch_test.go | 4 +- .../tests/documentHighlightImportPath_test.go | 4 +- .../tests/documentHighlightInExport1_test.go | 6 +- .../tests/documentHighlightInKeyword_test.go | 6 +- .../documentHighlightInTypeExport_test.go | 6 +- ...SDocThisFunctionExpressionNoCrash1_test.go | 4 +- .../documentHighlightJSDocTypedef_test.go | 6 +- ...MalformedAmbientModuleExportEquals_test.go | 4 +- ...tHighlightMultilineTemplateStrings_test.go | 4 +- ...ghtNoCrashNestedRequireDestructure_test.go | 4 +- ...ocumentHighlightReferenceDirective_test.go | 4 +- ...ghlightRequirePropertyDestructure1_test.go | 4 +- .../documentHighlightTemplateStrings_test.go | 4 +- ...ameterConstraintExpressionNoCrash1_test.go | 4 +- .../tests/documentHighlightTypeofThis_test.go | 4 +- ...documentHighlightVarianceModifiers_test.go | 6 +- .../tests/documentHighlightYield_test.go | 4 +- .../tests/documentHighlights01_test.go | 6 +- .../tests/documentHighlights02_test.go | 6 +- ...ightsExportEqualsInMergedNamespace_test.go | 4 +- ...ocumentHighlightsInvalidGlobalThis_test.go | 6 +- ...HighlightsInvalidModifierLocations_test.go | 6 +- ...htsTypeParameterInHeritageClause01_test.go | 6 +- .../tests/documentHighlights_33722_test.go | 4 +- .../tests/documentHighlights_40082_test.go | 4 +- .../documentHighlights_filesToSearch_test.go | 6 +- ...mport_filesToSearchWithInvalidFile_test.go | 6 +- ...hlights_moduleImport_filesToSearch_test.go | 6 +- .../documentHighlights_windowsPath_test.go | 4 +- .../tests/documentSymbolPrivateName_test.go | 4 +- .../tests/doubleUnderscoreCompletions_test.go | 10 +- .../tests/doubleUnderscoreRenames_test.go | 4 +- .../duplicateFunctionImplementation_test.go | 4 +- .../fourslash/tests/duplicateIndexers_test.go | 4 +- ...plicatePackageServices_fileChanges_test.go | 4 +- .../tests/duplicatePackageServices_test.go | 4 +- .../tests/duplicateTypeParameters_test.go | 4 +- .../fourslash/tests/editJsdocType_test.go | 4 +- .../editLambdaArgToTypeParameter1_test.go | 4 +- .../tests/editTemplateConstraint_test.go | 4 +- .../tests/emptyArrayInference_test.go | 4 +- .../tests/emptyExportFindReferences_test.go | 4 +- .../fourslash/tests/enumAddition_test.go | 4 +- .../fourslash/tests/enumUpdate1_test.go | 4 +- .../fourslash/tests/errorConsistency_test.go | 4 +- ...rInIncompleteMethodInObjectLiteral_test.go | 4 +- ...leDeclOfMergedVariableAndClassDecl_test.go | 4 +- .../esModuleInteropFindAllReferences2_test.go | 4 +- .../esModuleInteropFindAllReferences_test.go | 4 +- ...sivelyLargeArrayLiteralCompletions_test.go | 6 +- .../tests/exhaustiveCaseCompletions10_test.go | 10 +- .../tests/exhaustiveCaseCompletions11_test.go | 10 +- .../tests/exhaustiveCaseCompletions1_test.go | 10 +- .../tests/exhaustiveCaseCompletions2_test.go | 10 +- .../tests/exhaustiveCaseCompletions3_test.go | 10 +- .../tests/exhaustiveCaseCompletions4_test.go | 10 +- .../tests/exhaustiveCaseCompletions5_test.go | 10 +- .../tests/exhaustiveCaseCompletions6_test.go | 12 +- .../tests/exhaustiveCaseCompletions7_test.go | 10 +- .../tests/exhaustiveCaseCompletions8_test.go | 10 +- .../exhaustiveCaseCompletionsUntitled_test.go | 10 +- ...ainFilesNodeNextWithTypesReference_test.go | 4 +- .../tests/exportAssignmentMissingName_test.go | 4 +- .../tests/exportDefaultClass_test.go | 8 +- .../tests/exportDefaultFunction_test.go | 8 +- .../exportEqualCallableInterface_test.go | 6 +- ...EqualNamespaceClassESModuleInterop_test.go | 6 +- .../fourslash/tests/exportEqualTypes_test.go | 6 +- .../tests/exportEqualsInterfaceA_test.go | 4 +- .../tests/exportInLabeledStatement_test.go | 4 +- .../tests/exportInObjectLiteral_test.go | 4 +- .../extendInterfaceOverloadedMethod_test.go | 4 +- .../tests/extendsKeywordCompletion1_test.go | 10 +- .../tests/extendsKeywordCompletion2_test.go | 10 +- .../fourslash/tests/extendsTArray_test.go | 4 +- .../tests/externalModuleIntellisense_test.go | 6 +- .../tests/failureToImplementClass_test.go | 4 +- ...ertyAccessExpressionHeritageClause_test.go | 4 +- .../findAllReferencesDynamicImport1_test.go | 4 +- .../findAllReferencesDynamicImport2_test.go | 4 +- .../findAllReferencesDynamicImport3_test.go | 4 +- ...erencesFilteringMappedTypeProperty_test.go | 4 +- ...AllReferencesFromLinkTagReference1_test.go | 4 +- ...AllReferencesFromLinkTagReference2_test.go | 4 +- ...AllReferencesFromLinkTagReference3_test.go | 4 +- ...AllReferencesFromLinkTagReference4_test.go | 4 +- ...AllReferencesFromLinkTagReference5_test.go | 4 +- .../tests/findAllReferencesImportMeta_test.go | 4 +- .../findAllReferencesJSDocFunctionNew_test.go | 4 +- ...findAllReferencesJSDocFunctionThis_test.go | 4 +- .../findAllReferencesJsDocTypeLiteral_test.go | 4 +- ...encesJsOverloadedFunctionParameter_test.go | 4 +- ...lReferencesJsRequireDestructuring1_test.go | 4 +- ...llReferencesJsRequireDestructuring_test.go | 4 +- .../tests/findAllReferencesLinkTag1_test.go | 4 +- .../tests/findAllReferencesLinkTag2_test.go | 4 +- .../tests/findAllReferencesLinkTag3_test.go | 4 +- ...ReferencesNonExistentExportBinding_test.go | 4 +- ...eferencesOfConstructor_badOverload_test.go | 4 +- .../findAllReferencesOfConstructor_test.go | 4 +- .../findAllReferencesOfJsonModule_test.go | 4 +- .../findAllReferencesTripleSlash_test.go | 4 +- ...llReferencesUmdModuleAsGlobalConst_test.go | 4 +- .../tests/findAllReferencesUndefined_test.go | 4 +- .../tests/findAllRefsBadImport_test.go | 4 +- .../tests/findAllRefsCatchClause_test.go | 4 +- .../tests/findAllRefsClassExpression0_test.go | 4 +- .../tests/findAllRefsClassExpression1_test.go | 4 +- .../tests/findAllRefsClassExpression2_test.go | 4 +- .../findAllRefsClassStaticBlocks_test.go | 4 +- ...ndAllRefsClassWithStaticThisAccess_test.go | 4 +- .../tests/findAllRefsCommonJsRequire2_test.go | 4 +- .../tests/findAllRefsCommonJsRequire3_test.go | 4 +- .../tests/findAllRefsCommonJsRequire_test.go | 4 +- .../fourslash/tests/findAllRefsConst_test.go | 4 +- .../findAllRefsConstructorFunctions_test.go | 4 +- .../tests/findAllRefsDeclareClass_test.go | 4 +- .../tests/findAllRefsDefaultImport_test.go | 4 +- .../tests/findAllRefsDefinition_test.go | 4 +- .../findAllRefsDestructureGeneric_test.go | 4 +- .../findAllRefsDestructureGetter_test.go | 4 +- .../tests/findAllRefsEnumAsNamespace_test.go | 4 +- .../tests/findAllRefsEnumMember_test.go | 4 +- .../findAllRefsExportAsNamespace_test.go | 4 +- ...findAllRefsExportConstEqualToClass_test.go | 4 +- ...lRefsExportDefaultClassConstructor_test.go | 4 +- .../tests/findAllRefsExportEquals_test.go | 4 +- .../findAllRefsExportNotAtTopLevel_test.go | 4 +- .../findAllRefsExportStringRename_test.go | 4 +- .../findAllRefsForComputedProperties2_test.go | 4 +- .../findAllRefsForComputedProperties_test.go | 4 +- .../findAllRefsForDefaultExport01_test.go | 4 +- .../findAllRefsForDefaultExport02_test.go | 4 +- .../findAllRefsForDefaultExport03_test.go | 4 +- .../findAllRefsForDefaultExport04_test.go | 4 +- .../findAllRefsForDefaultExport08_test.go | 4 +- .../findAllRefsForDefaultExport09_test.go | 4 +- .../findAllRefsForDefaultExportVS_test.go | 6 +- ...dAllRefsForDefaultExport_anonymous_test.go | 4 +- ...xport_allowSyntheticDefaultImports_test.go | 4 +- ...ndAllRefsForDefaultExport_reExport_test.go | 4 +- .../tests/findAllRefsForDefaultExport_test.go | 4 +- .../findAllRefsForDefaultKeyword_test.go | 4 +- ...findAllRefsForFunctionExpression01_test.go | 4 +- .../findAllRefsForImportCallType_test.go | 4 +- .../tests/findAllRefsForImportCall_test.go | 4 +- .../tests/findAllRefsForMappedType_test.go | 4 +- .../tests/findAllRefsForModuleGlobal_test.go | 4 +- .../tests/findAllRefsForModule_test.go | 4 +- ...dAllRefsForObjectLiteralProperties_test.go | 4 +- .../tests/findAllRefsForObjectSpread_test.go | 4 +- .../tests/findAllRefsForRest_test.go | 4 +- ...ForStaticInstanceMethodInheritance_test.go | 4 +- ...rStaticInstancePropertyInheritance_test.go | 4 +- .../findAllRefsForStringLiteralTypes_test.go | 4 +- .../tests/findAllRefsForStringLiteral_test.go | 4 +- .../findAllRefsForUMDModuleAlias1_test.go | 4 +- ...llRefsForVariableInExtendsClause01_test.go | 4 +- ...llRefsForVariableInExtendsClause02_test.go | 4 +- ...efsForVariableInImplementsClause01_test.go | 4 +- ...indAllRefsFromContextualUnionType1_test.go | 4 +- ...indAllRefsGlobalModuleAugmentation_test.go | 4 +- ...ndAllRefsGlobalThisKeywordInModule_test.go | 4 +- .../tests/findAllRefsImportDefault_test.go | 4 +- .../findAllRefsImportEqualsJsonFile_test.go | 4 +- .../tests/findAllRefsImportEquals_test.go | 4 +- .../tests/findAllRefsImportNamed_test.go | 4 +- ...indAllRefsImportStarOfExportEquals_test.go | 4 +- .../tests/findAllRefsImportType_test.go | 4 +- .../findAllRefsInClassExpression_test.go | 4 +- .../findAllRefsIndexedAccessTypes_test.go | 4 +- .../findAllRefsInheritedProperties1VS_test.go | 6 +- .../findAllRefsInheritedProperties1_test.go | 4 +- .../findAllRefsInheritedProperties2_test.go | 4 +- .../findAllRefsInheritedProperties3_test.go | 4 +- .../findAllRefsInheritedProperties4_test.go | 4 +- .../findAllRefsInheritedProperties5_test.go | 4 +- .../tests/findAllRefsInsideTemplates1_test.go | 4 +- .../tests/findAllRefsInsideTemplates2_test.go | 4 +- .../tests/findAllRefsInsideWithBlock_test.go | 4 +- .../tests/findAllRefsIsDefinition_test.go | 4 +- .../findAllRefsJSDocNamespacedTypedef_test.go | 4 +- .../tests/findAllRefsJsDocImportTag2_test.go | 4 +- .../tests/findAllRefsJsDocImportTag3_test.go | 4 +- .../tests/findAllRefsJsDocImportTag4_test.go | 4 +- .../tests/findAllRefsJsDocImportTag5_test.go | 4 +- .../tests/findAllRefsJsDocImportTag_test.go | 4 +- ...ndAllRefsJsDocTemplateTag_class_js_test.go | 4 +- .../findAllRefsJsDocTemplateTag_class_test.go | 4 +- ...llRefsJsDocTemplateTag_function_js_test.go | 4 +- ...ndAllRefsJsDocTemplateTag_function_test.go | 4 +- .../tests/findAllRefsJsDocTypeDef_js_test.go | 4 +- .../tests/findAllRefsJsDocTypeDef_test.go | 4 +- ...ndAllRefsJsThisPropertyAssignment2_test.go | 4 +- ...indAllRefsJsThisPropertyAssignment_test.go | 4 +- ...ndAllRefsMappedType_nonHomomorphic_test.go | 4 +- .../tests/findAllRefsMappedType_test.go | 4 +- ...issingModulesOverlappingSpecifiers_test.go | 4 +- .../findAllRefsModuleAugmentation_test.go | 4 +- .../tests/findAllRefsModuleDotExports_test.go | 4 +- .../tests/findAllRefsNoImportClause_test.go | 4 +- ...ubstitutionTemplateLiteralNoCrash1_test.go | 4 +- .../tests/findAllRefsNonModule_test.go | 4 +- ...AllRefsNonexistentPropertyNoCrash1_test.go | 4 +- ...ObjectBindingElementPropertyName01_test.go | 4 +- ...ObjectBindingElementPropertyName02_test.go | 4 +- ...ObjectBindingElementPropertyName03_test.go | 4 +- ...ObjectBindingElementPropertyName04_test.go | 4 +- ...ObjectBindingElementPropertyName05_test.go | 4 +- ...ObjectBindingElementPropertyName06_test.go | 4 +- ...ObjectBindingElementPropertyName07_test.go | 4 +- ...ObjectBindingElementPropertyName10_test.go | 4 +- .../tests/findAllRefsOfConstructor2_test.go | 4 +- ...AllRefsOfConstructor_multipleFiles_test.go | 4 +- .../tests/findAllRefsOfConstructor_test.go | 4 +- ...dAllRefsOfConstructor_withModifier_test.go | 4 +- .../tests/findAllRefsOnDecorators_test.go | 4 +- .../tests/findAllRefsOnDefinition2_test.go | 4 +- .../tests/findAllRefsOnDefinition_test.go | 4 +- .../tests/findAllRefsOnImportAliases2_test.go | 4 +- .../tests/findAllRefsOnImportAliases_test.go | 4 +- ...AllRefsOnPrivateParameterProperty1_test.go | 4 +- ...lRefsParameterPropertyDeclaration1_test.go | 4 +- ...lRefsParameterPropertyDeclaration2_test.go | 4 +- ...lRefsParameterPropertyDeclaration3_test.go | 4 +- ...terPropertyDeclaration_inheritance_test.go | 4 +- ...meterPropertyWithConflictingMember_test.go | 4 +- .../findAllRefsPrefixSuffixPreference_test.go | 8 +- .../tests/findAllRefsPrimitiveJsDoc_test.go | 4 +- .../findAllRefsPrivateNameAccessors_test.go | 4 +- .../findAllRefsPrivateNameMethods_test.go | 4 +- .../findAllRefsPrivateNameProperties_test.go | 4 +- ...ertyContextuallyTypedByTypeParam01_test.go | 4 +- .../tests/findAllRefsReExportLocal_test.go | 4 +- ...llRefsReExportRightNameWrongSymbol_test.go | 4 +- .../tests/findAllRefsReExportStarAs_test.go | 4 +- .../tests/findAllRefsReExportStar_test.go | 4 +- .../tests/findAllRefsReExport_broken2_test.go | 4 +- .../tests/findAllRefsReExport_broken_test.go | 4 +- .../tests/findAllRefsReExports2_test.go | 4 +- ...indAllRefsReExportsUseInImportType_test.go | 8 +- ...declaredPropertyInDerivedInterface_test.go | 4 +- ...indAllRefsRenameImportWithSameName_test.go | 4 +- .../tests/findAllRefsRootSymbols_test.go | 4 +- ...indAllRefsThisKeywordMultipleFiles_test.go | 4 +- .../tests/findAllRefsThisKeyword_test.go | 4 +- .../tests/findAllRefsTripleSlashRef1_test.go | 4 +- ...RefsTypeParameterInMergedInterface_test.go | 4 +- .../findAllRefsTypedef_importType_test.go | 4 +- .../tests/findAllRefsTypedef_test.go | 4 +- .../tests/findAllRefsTypeofImport_test.go | 4 +- .../tests/findAllRefsUnionProperty_test.go | 4 +- .../findAllRefsUnresolvedSymbols1_test.go | 4 +- .../findAllRefsUnresolvedSymbols2_test.go | 4 +- .../findAllRefsUnresolvedSymbols3_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames1_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames2_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames3_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames4_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames5_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames6_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames7_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames8_test.go | 4 +- ...AllRefsWithLeadingUnderscoreNames9_test.go | 4 +- ...fsWithShorthandPropertyAssignment2_test.go | 4 +- ...efsWithShorthandPropertyAssignment_test.go | 4 +- .../tests/findAllRefsWriteAccess_test.go | 4 +- .../tests/findAllRefs_importType_js1_test.go | 4 +- .../tests/findAllRefs_importType_js2_test.go | 4 +- .../tests/findAllRefs_importType_js3_test.go | 4 +- .../tests/findAllRefs_importType_js4_test.go | 4 +- .../tests/findAllRefs_importType_js_test.go | 4 +- ...lRefs_importType_meaningAtLocation_test.go | 4 +- .../findAllRefs_importType_named_test.go | 4 +- ...indAllRefs_importType_typeofImport_test.go | 4 +- .../tests/findAllRefs_jsEnum_test.go | 4 +- ...ReferencesAcrossMultipleProjectsVS_test.go | 6 +- ...ndReferencesAcrossMultipleProjects_test.go | 4 +- .../tests/findReferencesAfterEdit_test.go | 4 +- ...encesBindingPatternInJsdocNoCrash1_test.go | 4 +- ...encesBindingPatternInJsdocNoCrash2_test.go | 4 +- ...ndReferencesDefinitionDisplayParts_test.go | 4 +- .../tests/findReferencesJSXTagName2_test.go | 4 +- .../tests/findReferencesJSXTagName3_test.go | 4 +- .../tests/findReferencesJSXTagName_test.go | 4 +- .../tests/findReferencesSeeTagInTs_test.go | 4 +- ...actOptionalUnassignableProperties3_test.go | 4 +- ...actOptionalUnassignableProperties7_test.go | 4 +- ...actOptionalUnassignableProperties9_test.go | 4 +- .../fixingTypeParametersQuickInfo_test.go | 4 +- .../foldingRangeJSXPropertyAccess_test.go | 4 +- .../tests/foldingRangeLineFoldingOnly_test.go | 6 +- .../forceIndentAfterNewLineInsert_test.go | 4 +- .../fourslash/tests/format01_test.go | 4 +- .../tests/formatAfterMultilineComment_test.go | 4 +- .../tests/formatAfterObjectLiteral_test.go | 4 +- .../tests/formatAfterPasteInString_test.go | 4 +- .../tests/formatAfterWhitespace_test.go | 4 +- .../tests/formatAnyTypeLiteral_test.go | 4 +- .../formatArrayLiteralExpression_test.go | 4 +- ...rrayOrObjectLiteralsInVariableList_test.go | 4 +- .../tests/formatAsyncClassMethod1_test.go | 4 +- .../tests/formatAsyncClassMethod2_test.go | 4 +- .../tests/formatAsyncComputedMethod_test.go | 4 +- .../tests/formatAsyncKeyword_test.go | 4 +- .../tests/formatBracketInSwitchCase_test.go | 4 +- .../tests/formatColonAndQMark_test.go | 4 +- .../fourslash/tests/formatComments_test.go | 4 +- .../tests/formatConflictDiff3Marker1_test.go | 4 +- .../tests/formatConflictMarker1_test.go | 4 +- .../tests/formatControlFlowConstructs_test.go | 4 +- .../tests/formatDebuggerStatement_test.go | 4 +- ...matDocumentGrammarErrorInitializer_test.go | 4 +- ...ntNoCrashJsxAttrUnterminatedString_test.go | 4 +- ...tDocumentNoCrashJsxNamespacedName1_test.go | 4 +- ...tDocumentNoCrashJsxNamespacedName2_test.go | 4 +- ...tDocumentNoCrashLeadingWhitespace1_test.go | 4 +- ...tDocumentNoCrashLeadingWhitespace2_test.go | 4 +- ...formatDocumentNoCrashShortLastLine_test.go | 4 +- ...DocumentPreserveTrailingWhitespace_test.go | 6 +- .../tests/formatDocumentWithJSDoc_test.go | 4 +- .../tests/formatDocumentWithTrivia_test.go | 4 +- .../tests/formatDocumentZeroTabSize_test.go | 6 +- .../tests/formatDotAfterNumber_test.go | 4 +- .../fourslash/tests/formatEmptyBlock_test.go | 4 +- .../tests/formatEmptyParamList_test.go | 4 +- .../tests/formatExportAssignment_test.go | 4 +- .../tests/formatIfTryCatchBlocks_test.go | 6 +- .../tests/formatIfWithEmptyCondition_test.go | 6 +- .../tests/formatImplicitModule_test.go | 4 +- .../tests/formatImportDeclaration_test.go | 4 +- .../tests/formatInTryCatchFinally_test.go | 4 +- .../fourslash/tests/formatInTsxFiles_test.go | 4 +- ...eAfterCloseBraceBeforeCloseBracket_test.go | 6 +- ...issingBraceAndLaterTemplateString1_test.go | 4 +- ...issingBraceAndLaterTemplateString2_test.go | 4 +- .../tests/formatJsxDottedTagName_test.go | 4 +- .../formatJsxWithKeywordInIdentifier_test.go | 4 +- ...teralTypeInUnionOrIntersectionType_test.go | 4 +- .../tests/formatMultilineComment_test.go | 4 +- .../tests/formatMultilineImportBrace_test.go | 4 +- .../formatMultilineTypesWithMapped_test.go | 4 +- .../formatMultipleFunctionArguments_test.go | 4 +- ...NestedClassWithOpenBraceOnNewLines_test.go | 6 +- ...tNoSpaceAfterTemplateHeadAndMiddle_test.go | 6 +- .../formatNoSpaceBeforeCloseBrace1_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace2_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace3_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace4_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace5_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace6_test.go | 4 +- .../formatNoSpaceBeforeCloseBrace_test.go | 4 +- ...tweenClosingParenAndTemplateString_test.go | 4 +- ...attern_restElementWithPropertyName_test.go | 4 +- .../tests/formatObjectBindingPattern_test.go | 4 +- .../formatOnEnterFunctionDeclaration_test.go | 4 +- .../tests/formatOnEnterInComment_test.go | 4 +- .../formatOnEnterOpenBraceAddNewLine_test.go | 6 +- ...ormatOnOpenCurlyBraceRemoveNewLine_test.go | 6 +- .../tests/formatOnSemiColonAfterBreak_test.go | 4 +- .../fourslash/tests/formatParameter_test.go | 4 +- .../formatRangeEndingAfterCommaOfCall_test.go | 4 +- .../formatRemoveNewLineAfterOpenBrace_test.go | 4 +- ...veSpaceBetweenDotDotDotAndTypeName_test.go | 4 +- .../tests/formatSatisfiesExpression_test.go | 4 +- ...rmatSelectionAfterTemplateLiteral1_test.go | 4 +- .../formatSelectionDocCommentInBlock_test.go | 4 +- .../formatSelectionEditAtEndOfRange_test.go | 4 +- ...electionInJSDocTypeLiteralNoCrash1_test.go | 4 +- ...atSelectionJsxWithBinaryExpression_test.go | 4 +- ...electionPreserveTrailingWhitespace_test.go | 6 +- .../formatSelectionSingleProperty_test.go | 4 +- ...nterminatedBacktickInJSDocNoCrash1_test.go | 4 +- .../tests/formatSelectionWithTrivia2_test.go | 4 +- .../tests/formatSelectionWithTrivia3_test.go | 4 +- .../tests/formatSelectionWithTrivia4_test.go | 4 +- .../tests/formatSelectionWithTrivia5_test.go | 4 +- .../tests/formatSelectionWithTrivia6_test.go | 4 +- .../tests/formatSelectionWithTrivia7_test.go | 4 +- .../tests/formatSelectionWithTrivia8_test.go | 4 +- .../tests/formatSelectionWithTrivia_test.go | 4 +- .../formatSimulatingScriptBlocks_test.go | 4 +- .../formatSpaceAfterImplementsExtends_test.go | 4 +- ...matSpaceAfterTemplateHeadAndMiddle_test.go | 6 +- ...tSpaceBetweenFunctionAndArrayIndex_test.go | 4 +- .../tests/formatTSXWithInlineComment_test.go | 4 +- .../tests/formatTemplateStringOnPaste_test.go | 4 +- .../tests/formatTrimRemainingRange_test.go | 4 +- .../fourslash/tests/formatTryCatch_test.go | 4 +- .../fourslash/tests/formatTryFinally_test.go | 4 +- .../formatTsxClosingAfterJsxText_test.go | 4 +- .../formatTsxMultilineAttributeString_test.go | 4 +- .../fourslash/tests/formatTsx_test.go | 4 +- .../tests/formatTypeAnnotation1_test.go | 6 +- .../tests/formatTypeAnnotation2_test.go | 4 +- .../tests/formatTypeArgumentOnNewLine_test.go | 4 +- .../tests/formatTypeParameters_test.go | 4 +- .../fourslash/tests/formatV8Directive_test.go | 4 +- .../formatVariableDeclarationList_test.go | 4 +- .../tests/formatWithStatement_test.go | 6 +- .../fourslash/tests/formatonkey01_test.go | 4 +- .../formattingAfterChainedFatArrow_test.go | 4 +- ...ormattingAfterMultiLineIfCondition_test.go | 4 +- .../formattingAfterMultiLineString_test.go | 4 +- .../tests/formattingArrayLiteral_test.go | 4 +- .../fourslash/tests/formattingAwait_test.go | 4 +- .../formattingBlockInCaseClauses_test.go | 4 +- .../tests/formattingChainingMethods_test.go | 4 +- .../fourslash/tests/formattingComma_test.go | 4 +- .../formattingCommentsBeforeErrors_test.go | 4 +- .../formattingConditionalOperator_test.go | 4 +- .../tests/formattingConditionalTypes_test.go | 4 +- .../fourslash/tests/formattingCrash_test.go | 6 +- .../tests/formattingDecorators_test.go | 4 +- .../tests/formattingDoubleLessThan_test.go | 4 +- .../formattingElseInsideAFunction_test.go | 4 +- ...tingEqualsBeforeBracketInTypeAlias_test.go | 4 +- ...formattingExpressionsInIfCondition_test.go | 4 +- .../tests/formattingFatArrowFunctions_test.go | 4 +- .../fourslash/tests/formattingForIn_test.go | 4 +- .../tests/formattingForLoopSemicolons_test.go | 6 +- .../tests/formattingForOfKeyword_test.go | 4 +- .../formattingGlobalAugmentation1_test.go | 4 +- .../formattingGlobalAugmentation2_test.go | 4 +- .../tests/formattingHexLiteral_test.go | 4 +- .../tests/formattingIfInElseBlock_test.go | 4 +- .../formattingIllegalImportClause_test.go | 4 +- .../tests/formattingInComment_test.go | 4 +- .../tests/formattingInDestructuring1_test.go | 4 +- .../tests/formattingInDestructuring2_test.go | 4 +- .../tests/formattingInDestructuring3_test.go | 4 +- .../tests/formattingInDestructuring4_test.go | 6 +- .../tests/formattingInDestructuring5_test.go | 4 +- .../formattingInExpressionsInTsx_test.go | 4 +- .../formattingInMultilineComments_test.go | 4 +- .../tests/formattingJsxTexts1_test.go | 4 +- .../tests/formattingJsxTexts2_test.go | 4 +- .../tests/formattingJsxTexts3_test.go | 4 +- .../tests/formattingJsxTexts4_test.go | 4 +- .../formattingKeywordAsIdentifier_test.go | 4 +- .../tests/formattingMappedType_test.go | 4 +- ...rmattingMultilineCommentsWithTabs1_test.go | 4 +- ...ormattingMultilineTemplateLiterals_test.go | 4 +- .../tests/formattingNestedScopes_test.go | 4 +- ...formattingNonNullAssertionOperator_test.go | 4 +- ...tLiteralOpenCurlyNewlineAssignment_test.go | 6 +- ...bjectLiteralOpenCurlyNewlineTyping_test.go | 4 +- ...ttingObjectLiteralOpenCurlyNewline_test.go | 6 +- ...ngObjectLiteralOpenCurlySingleLine_test.go | 4 +- .../tests/formattingObjectLiteral_test.go | 4 +- .../tests/formattingOfChainedLambda_test.go | 4 +- .../tests/formattingOfExportDefault_test.go | 4 +- ...rmattingOfMultilineBlockConstructs_test.go | 4 +- ...hainedCallbacksAndPropertyAccesses_test.go | 4 +- .../tests/formattingOnClasses_test.go | 4 +- .../tests/formattingOnCloseBrace_test.go | 4 +- .../tests/formattingOnClosingBracket_test.go | 6 +- .../tests/formattingOnCommaOperator_test.go | 4 +- .../formattingOnConstructorSignature_test.go | 4 +- .../formattingOnDoWhileNoSemicolon_test.go | 4 +- .../formattingOnDocumentReadyFunction_test.go | 4 +- .../formattingOnEmptyInterfaceLiteral_test.go | 4 +- .../tests/formattingOnEnterInComments_test.go | 4 +- .../tests/formattingOnEnterInStrings_test.go | 4 +- .../fourslash/tests/formattingOnEnter_test.go | 4 +- .../tests/formattingOnInterfaces_test.go | 4 +- .../tests/formattingOnInvalidCodes_test.go | 4 +- .../formattingOnModuleIndentation_test.go | 4 +- .../formattingOnNestedDoWhileByEnter_test.go | 4 +- .../formattingOnNestedStatements_test.go | 4 +- .../tests/formattingOnObjectLiteral_test.go | 4 +- .../formattingOnOpenBraceOfFunctions_test.go | 4 +- .../tests/formattingOnSemiColon_test.go | 4 +- .../formattingOnSingleLineBlocks_test.go | 4 +- ...mattingOnStatementsWithNoSemicolon_test.go | 4 +- .../formattingOnTabAfterCloseCurly_test.go | 4 +- .../tests/formattingOnVariety_test.go | 4 +- .../tests/formattingOverrideKeyword_test.go | 4 +- .../fourslash/tests/formattingQMark_test.go | 4 +- .../tests/formattingReadonly_test.go | 4 +- .../fourslash/tests/formattingRegexes_test.go | 4 +- .../formattingReplaceTabsWithSpaces_test.go | 4 +- ...tingSingleLineWithNewLineOptionSet_test.go | 6 +- .../tests/formattingSkippedTokens_test.go | 4 +- ...tingSpaceAfterCommaBeforeOpenParen_test.go | 4 +- .../formattingSpaceBeforeCloseParen_test.go | 6 +- ...formattingSpaceBeforeFunctionParen_test.go | 6 +- ...attingSpaceBetweenOptionalChaining_test.go | 4 +- .../formattingSpaceBetweenParent_test.go | 6 +- .../formattingSpacesAfterConstructor_test.go | 6 +- .../formattingTemplatesWithNewline_test.go | 4 +- .../tests/formattingTemplates_test.go | 4 +- .../tests/formattingTypeInfer_test.go | 4 +- .../fourslash/tests/formattingVoid_test.go | 4 +- .../formattingWithMultilineComments_test.go | 4 +- ...mattingofSingleLineBlockConstructs_test.go | 4 +- .../fourslash/tests/forwardReference_test.go | 6 +- .../tests/functionFormatting_test.go | 4 +- .../tests/functionIndentation_test.go | 4 +- .../tests/functionOverloadCount_test.go | 4 +- .../fourslash/tests/functionProperty_test.go | 8 +- .../tests/functionTypeFormatting_test.go | 4 +- .../functionTypePredicateFormatting_test.go | 4 +- .../fourslash/tests/functionTypes_test.go | 6 +- .../funduleWithRecursiveReference_test.go | 4 +- .../generatorDeclarationFormatting_test.go | 4 +- .../genericArityEnforcementAfterEdit_test.go | 4 +- .../tests/genericAssignmentCompat_test.go | 4 +- ...icCallSignaturesInNonGenericTypes1_test.go | 4 +- ...icCallSignaturesInNonGenericTypes2_test.go | 4 +- .../genericCallsWithOptionalParams1_test.go | 4 +- .../genericCloduleCompletionList_test.go | 6 +- .../genericCombinatorWithConstraints1_test.go | 4 +- .../tests/genericCombinators1_test.go | 4 +- .../tests/genericCombinators3_test.go | 4 +- ...icDerivedTypeAcrossModuleBoundary1_test.go | 4 +- .../tests/genericFunctionReturnType2_test.go | 4 +- .../tests/genericFunctionReturnType_test.go | 4 +- .../genericFunctionSignatureHelp1_test.go | 4 +- .../genericFunctionSignatureHelp2_test.go | 4 +- ...ricFunctionSignatureHelp3MultiFile_test.go | 4 +- .../genericFunctionSignatureHelp3_test.go | 4 +- .../genericFunctionWithGenericParams1_test.go | 4 +- ...genericInterfacePropertyInference1_test.go | 4 +- ...genericInterfacePropertyInference2_test.go | 4 +- ...nericInterfaceWithInheritanceEdit1_test.go | 4 +- .../genericInterfacesWithConstraints1_test.go | 4 +- .../fourslash/tests/genericMapTyping1_test.go | 4 +- .../tests/genericMethodParam_test.go | 4 +- .../tests/genericObjectBaseType_test.go | 4 +- ...nericParameterHelpConstructorCalls_test.go | 4 +- ...genericParameterHelpTypeReferences_test.go | 4 +- .../tests/genericParameterHelp_test.go | 4 +- .../tests/genericRespecialization1_test.go | 4 +- ...enericSignaturesAreProperlyCleaned_test.go | 4 +- ...icTypeAliasIntersectionCompletions_test.go | 6 +- ...ericTypeParamUnrelatedToArguments1_test.go | 4 +- ...ricTypeWithMultipleBases1MultiFile_test.go | 8 +- .../genericWithSpecializedProperties1_test.go | 4 +- .../genericWithSpecializedProperties2_test.go | 4 +- .../genericWithSpecializedProperties3_test.go | 4 +- .../tests/genericsFormattingMultiline_test.go | 4 +- .../tests/genericsFormatting_test.go | 4 +- .../tests/getDeclarationDiagnostics_test.go | 4 +- ...orFileRenameWithSolutionConfigFile_test.go | 8 +- ...etEditsForFileRename_ambientModule_test.go | 4 +- .../tests/getEditsForFileRename_amd_test.go | 4 +- ...EditsForFileRename_caseInsensitive_test.go | 4 +- .../getEditsForFileRename_casing_test.go | 4 +- .../getEditsForFileRename_cssImport2_test.go | 4 +- .../getEditsForFileRename_cssImport3_test.go | 4 +- .../getEditsForFileRename_cssImport4_test.go | 4 +- ...tEditsForFileRename_directory_down_test.go | 4 +- ...irectory_noUpdateNodeModulesImport_test.go | 4 +- .../getEditsForFileRename_directory_test.go | 4 +- ...getEditsForFileRename_directory_up_test.go | 4 +- ...eRename_duplicateUnresolvedImports_test.go | 4 +- .../getEditsForFileRename_jsExtension_test.go | 4 +- .../getEditsForFileRename_jsRename_test.go | 4 +- .../getEditsForFileRename_js_simple_test.go | 4 +- ...tsForFileRename_keepFileExtensions_test.go | 4 +- ...FileRename_nodeModuleDirectoryCase_test.go | 4 +- ...sForFileRename_notAffectedByJsFile_test.go | 4 +- .../getEditsForFileRename_preferences_test.go | 6 +- ...tsForFileRename_preservePathEnding_test.go | 4 +- ...EditsForFileRename_renameFromIndex_test.go | 4 +- ...etEditsForFileRename_renameToIndex_test.go | 4 +- ...itsForFileRename_resolveJsonModule_test.go | 4 +- ...ForFileRename_shortenRelativePaths_test.go | 4 +- .../getEditsForFileRename_subDir_test.go | 4 +- .../getEditsForFileRename_symlink_test.go | 4 +- .../tests/getEditsForFileRename_test.go | 4 +- ...rFileRename_tsconfig_empty_include_test.go | 4 +- ...ForFileRename_tsconfig_include_add_test.go | 4 +- ...leRename_tsconfig_include_noChange_test.go | 4 +- .../getEditsForFileRename_tsconfig_test.go | 4 +- ...leRename_unaffectedNonRelativePath_test.go | 4 +- ...tsForFileRename_unresolvableImport_test.go | 4 +- ...rFileRename_unresolvableNodeModule_test.go | 4 +- .../tests/getJSXOutliningSpans_test.go | 4 +- .../tests/getJavaScriptCompletions10_test.go | 8 +- .../tests/getJavaScriptCompletions11_test.go | 8 +- .../tests/getJavaScriptCompletions12_test.go | 10 +- .../tests/getJavaScriptCompletions13_test.go | 10 +- .../tests/getJavaScriptCompletions14_test.go | 8 +- .../tests/getJavaScriptCompletions15_test.go | 10 +- .../tests/getJavaScriptCompletions16_test.go | 8 +- .../tests/getJavaScriptCompletions18_test.go | 8 +- .../tests/getJavaScriptCompletions19_test.go | 8 +- .../tests/getJavaScriptCompletions1_test.go | 8 +- .../tests/getJavaScriptCompletions20_test.go | 10 +- .../tests/getJavaScriptCompletions21_test.go | 8 +- .../tests/getJavaScriptCompletions22_test.go | 4 +- .../tests/getJavaScriptCompletions2_test.go | 8 +- .../tests/getJavaScriptCompletions3_test.go | 8 +- .../tests/getJavaScriptCompletions4_test.go | 8 +- .../tests/getJavaScriptCompletions5_test.go | 8 +- .../tests/getJavaScriptCompletions8_test.go | 8 +- .../tests/getJavaScriptCompletions9_test.go | 8 +- .../getJavaScriptCompletions_tsCheck_test.go | 6 +- .../getJavaScriptGlobalCompletions1_test.go | 10 +- .../tests/getJavaScriptQuickInfo1_test.go | 4 +- .../tests/getJavaScriptQuickInfo2_test.go | 4 +- .../tests/getJavaScriptQuickInfo3_test.go | 4 +- .../tests/getJavaScriptQuickInfo4_test.go | 4 +- .../tests/getJavaScriptQuickInfo5_test.go | 4 +- .../tests/getJavaScriptQuickInfo6_test.go | 4 +- .../tests/getJavaScriptQuickInfo7_test.go | 4 +- .../tests/getJavaScriptQuickInfo8_test.go | 8 +- ...etJavaScriptSyntacticDiagnostics01_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics02_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics10_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics11_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics12_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics13_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics14_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics15_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics16_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics17_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics18_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics19_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics1_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics21_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics22_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics23_test.go | 4 +- ...etJavaScriptSyntacticDiagnostics24_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics2_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics3_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics4_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics5_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics6_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics7_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics8_test.go | 4 +- ...getJavaScriptSyntacticDiagnostics9_test.go | 4 +- .../tests/getNavigationBarItems_test.go | 4 +- .../tests/getOccurrencesAbstract01_test.go | 6 +- .../tests/getOccurrencesAbstract02_test.go | 6 +- .../tests/getOccurrencesAbstract03_test.go | 6 +- .../tests/getOccurrencesAfterEdit_test.go | 4 +- .../tests/getOccurrencesAsyncAwait2_test.go | 6 +- .../tests/getOccurrencesAsyncAwait3_test.go | 4 +- .../tests/getOccurrencesAsyncAwait_test.go | 6 +- ...urrencesClassExpressionConstructor_test.go | 6 +- ...tOccurrencesClassExpressionPrivate_test.go | 6 +- ...etOccurrencesClassExpressionPublic_test.go | 6 +- ...currencesClassExpressionStaticThis_test.go | 6 +- ...etOccurrencesClassExpressionStatic_test.go | 6 +- .../getOccurrencesClassExpressionThis_test.go | 6 +- .../tests/getOccurrencesConst01_test.go | 6 +- .../tests/getOccurrencesConst02_test.go | 6 +- .../tests/getOccurrencesConst03_test.go | 6 +- .../tests/getOccurrencesConst04_test.go | 4 +- .../tests/getOccurrencesConstructor2_test.go | 6 +- .../tests/getOccurrencesConstructor_test.go | 6 +- .../tests/getOccurrencesDeclare1_test.go | 6 +- .../tests/getOccurrencesDeclare2_test.go | 6 +- .../tests/getOccurrencesDeclare3_test.go | 6 +- .../tests/getOccurrencesExport1_test.go | 6 +- .../tests/getOccurrencesExport2_test.go | 6 +- .../tests/getOccurrencesExport3_test.go | 6 +- .../tests/getOccurrencesIfElse2_test.go | 6 +- .../tests/getOccurrencesIfElse3_test.go | 6 +- .../tests/getOccurrencesIfElse4_test.go | 6 +- .../tests/getOccurrencesIfElse5_test.go | 6 +- .../tests/getOccurrencesIfElseBroken_test.go | 6 +- .../tests/getOccurrencesIfElse_test.go | 6 +- ...rrencesIsDefinitionOfArrowFunction_test.go | 4 +- ...rencesIsDefinitionOfBindingPattern_test.go | 4 +- .../getOccurrencesIsDefinitionOfClass_test.go | 4 +- ...ncesIsDefinitionOfComputedProperty_test.go | 4 +- .../getOccurrencesIsDefinitionOfEnum_test.go | 4 +- ...getOccurrencesIsDefinitionOfExport_test.go | 4 +- ...tOccurrencesIsDefinitionOfFunction_test.go | 4 +- ...sIsDefinitionOfInterfaceClassMerge_test.go | 4 +- ...OccurrencesIsDefinitionOfInterface_test.go | 4 +- ...OccurrencesIsDefinitionOfNamespace_test.go | 4 +- ...sIsDefinitionOfNumberNamedProperty_test.go | 4 +- ...OccurrencesIsDefinitionOfParameter_test.go | 4 +- ...sIsDefinitionOfStringNamedProperty_test.go | 4 +- ...OccurrencesIsDefinitionOfTypeAlias_test.go | 4 +- ...tOccurrencesIsDefinitionOfVariable_test.go | 4 +- .../tests/getOccurrencesIsWriteAccess_test.go | 4 +- .../getOccurrencesLoopBreakContinue2_test.go | 6 +- .../getOccurrencesLoopBreakContinue3_test.go | 6 +- .../getOccurrencesLoopBreakContinue4_test.go | 6 +- .../getOccurrencesLoopBreakContinue5_test.go | 6 +- .../getOccurrencesLoopBreakContinue6_test.go | 6 +- ...urrencesLoopBreakContinueNegatives_test.go | 6 +- .../getOccurrencesLoopBreakContinue_test.go | 6 +- .../getOccurrencesModifiersNegatives1_test.go | 6 +- ...ccurrencesNonStringImportAssertion_test.go | 4 +- ...currencesNonStringImportAttributes_test.go | 4 +- ...getOccurrencesOfAnonymousFunction2_test.go | 4 +- .../getOccurrencesOfAnonymousFunction_test.go | 6 +- .../tests/getOccurrencesOfDecorators_test.go | 4 +- .../getOccurrencesOfUndefinedSymbol_test.go | 4 +- .../tests/getOccurrencesPrivate1_test.go | 6 +- .../tests/getOccurrencesPrivate2_test.go | 6 +- ...urrencesPropertyInAliasedInterface_test.go | 6 +- .../tests/getOccurrencesProtected1_test.go | 6 +- .../tests/getOccurrencesProtected2_test.go | 6 +- .../tests/getOccurrencesPublic1_test.go | 6 +- .../tests/getOccurrencesPublic2_test.go | 6 +- .../tests/getOccurrencesReadonly1_test.go | 6 +- .../tests/getOccurrencesReadonly2_test.go | 6 +- .../tests/getOccurrencesReadonly3_test.go | 6 +- .../tests/getOccurrencesReturn2_test.go | 6 +- .../tests/getOccurrencesReturn3_test.go | 6 +- .../tests/getOccurrencesReturn4_test.go | 6 +- .../tests/getOccurrencesReturnBroken_test.go | 6 +- .../tests/getOccurrencesReturn_test.go | 6 +- .../tests/getOccurrencesSetAndGet2_test.go | 6 +- .../tests/getOccurrencesSetAndGet3_test.go | 6 +- .../tests/getOccurrencesSetAndGet_test.go | 6 +- .../tests/getOccurrencesStatic1_test.go | 6 +- .../getOccurrencesStringLiteralTypes_test.go | 6 +- .../getOccurrencesStringLiterals_test.go | 6 +- .../tests/getOccurrencesSuper2_test.go | 6 +- .../tests/getOccurrencesSuper3_test.go | 6 +- .../getOccurrencesSuperNegatives_test.go | 6 +- .../tests/getOccurrencesSuper_test.go | 6 +- .../getOccurrencesSwitchCaseDefault2_test.go | 6 +- .../getOccurrencesSwitchCaseDefault3_test.go | 6 +- .../getOccurrencesSwitchCaseDefault4_test.go | 6 +- .../getOccurrencesSwitchCaseDefault5_test.go | 6 +- ...OccurrencesSwitchCaseDefaultBroken_test.go | 6 +- .../getOccurrencesSwitchCaseDefault_test.go | 6 +- .../tests/getOccurrencesThis2_test.go | 6 +- .../tests/getOccurrencesThis3_test.go | 6 +- .../tests/getOccurrencesThis4_test.go | 6 +- .../tests/getOccurrencesThis5_test.go | 6 +- .../tests/getOccurrencesThis6_test.go | 6 +- .../getOccurrencesThisNegatives2_test.go | 6 +- .../tests/getOccurrencesThis_test.go | 6 +- .../tests/getOccurrencesThrow2_test.go | 6 +- .../tests/getOccurrencesThrow3_test.go | 6 +- .../tests/getOccurrencesThrow4_test.go | 6 +- .../tests/getOccurrencesThrow5_test.go | 6 +- .../tests/getOccurrencesThrow6_test.go | 6 +- .../tests/getOccurrencesThrow7_test.go | 6 +- .../tests/getOccurrencesThrow8_test.go | 6 +- .../tests/getOccurrencesThrow_test.go | 6 +- .../getOccurrencesTryCatchFinally2_test.go | 6 +- .../getOccurrencesTryCatchFinally3_test.go | 6 +- .../getOccurrencesTryCatchFinally4_test.go | 6 +- ...etOccurrencesTryCatchFinallyBroken_test.go | 6 +- .../getOccurrencesTryCatchFinally_test.go | 6 +- .../tests/getOccurrencesYield_test.go | 6 +- .../getOutliningForArrayDestructuring_test.go | 4 +- .../getOutliningForBlockComments_test.go | 4 +- ...getOutliningForObjectDestructuring_test.go | 4 +- .../getOutliningForObjectsInArray_test.go | 4 +- .../getOutliningForSingleLineComments_test.go | 4 +- .../tests/getOutliningForTupleType_test.go | 4 +- .../tests/getOutliningForTypeLiteral_test.go | 4 +- ...getOutliningSpansDepthChainedCalls_test.go | 4 +- .../getOutliningSpansDepthElseIf_test.go | 4 +- .../getOutliningSpansForComments_test.go | 6 +- .../tests/getOutliningSpansForImports_test.go | 6 +- ...ngSpansForRegionsNoSingleLineFolds_test.go | 4 +- .../tests/getOutliningSpansForRegions_test.go | 6 +- ...etOutliningSpansForTemplateLiteral_test.go | 4 +- ...tliningSpansForUnbalancedEndRegion_test.go | 6 +- ...tOutliningSpansForUnbalancedRegion_test.go | 6 +- .../fourslash/tests/getOutliningSpans_test.go | 4 +- .../tests/getPreProcessedFile_test.go | 4 +- ...rtySymbolsFromBaseTypesDoesntCrash_test.go | 6 +- .../getQuickInfoForIntersectionTypes_test.go | 4 +- .../tests/getRenameInfoTests1_test.go | 4 +- .../tests/getRenameInfoTests2_test.go | 4 +- ...tSemanticDiagnosticForDeclaration1_test.go | 4 +- ...etSemanticDiagnosticForDeclaration_test.go | 4 +- ...SemanticDiagnosticForNoDeclaration_test.go | 4 +- .../tests/globalThisCompletion_test.go | 6 +- ...ToDefinitionAcrossMultipleProjects_test.go | 4 +- .../tests/goToDefinitionAlias_test.go | 4 +- .../tests/goToDefinitionAmbiants_test.go | 4 +- ...ToDefinitionApparentTypeProperties_test.go | 4 +- .../tests/goToDefinitionAwait1_test.go | 4 +- .../tests/goToDefinitionAwait2_test.go | 4 +- .../tests/goToDefinitionAwait3_test.go | 4 +- .../tests/goToDefinitionAwait4_test.go | 4 +- .../tests/goToDefinitionBuiltInTypes_test.go | 4 +- .../tests/goToDefinitionBuiltInValues_test.go | 4 +- ...oDefinitionCSSPatternAmbientModule_test.go | 4 +- .../goToDefinitionClassConstructors_test.go | 4 +- .../goToDefinitionClassStaticBlocks_test.go | 4 +- ...tionConstructorOfClassExpression01_test.go | 4 +- ...ssWhenClassIsPrecededByNamespace01_test.go | 4 +- ...goToDefinitionConstructorOverloads_test.go | 4 +- .../goToDefinitionDecoratorOverloads_test.go | 4 +- .../tests/goToDefinitionDecorator_test.go | 4 +- ...goToDefinitionDestructuredRequire1_test.go | 4 +- ...goToDefinitionDestructuredRequire2_test.go | 4 +- ...oDefinitionDifferentFileIndirectly_test.go | 4 +- .../tests/goToDefinitionDifferentFile_test.go | 4 +- .../goToDefinitionDynamicImport1_test.go | 4 +- .../goToDefinitionDynamicImport2_test.go | 4 +- .../goToDefinitionDynamicImport3_test.go | 4 +- .../goToDefinitionDynamicImport4_test.go | 4 +- .../tests/goToDefinitionExpandoClass1_test.go | 4 +- .../tests/goToDefinitionExpandoClass2_test.go | 4 +- ...goToDefinitionExpandoElementAccess_test.go | 4 +- .../goToDefinitionExternalModuleName2_test.go | 4 +- .../goToDefinitionExternalModuleName3_test.go | 4 +- .../goToDefinitionExternalModuleName4_test.go | 4 +- .../goToDefinitionExternalModuleName5_test.go | 4 +- .../goToDefinitionExternalModuleName6_test.go | 4 +- .../goToDefinitionExternalModuleName7_test.go | 4 +- .../goToDefinitionExternalModuleName8_test.go | 4 +- .../goToDefinitionExternalModuleName9_test.go | 4 +- .../goToDefinitionExternalModuleName_test.go | 4 +- ...DefinitionFunctionOverloadsInClass_test.go | 4 +- .../goToDefinitionFunctionOverloads_test.go | 4 +- .../tests/goToDefinitionFunctionType_test.go | 4 +- ...onGetterReturningCallableInterface_test.go | 4 +- .../goToDefinitionImplicitConstructor_test.go | 4 +- .../tests/goToDefinitionImport1_test.go | 4 +- .../tests/goToDefinitionImport2_test.go | 4 +- .../tests/goToDefinitionImport3_test.go | 4 +- .../tests/goToDefinitionImportMeta_test.go | 4 +- .../goToDefinitionImportedNames10_test.go | 4 +- .../goToDefinitionImportedNames11_test.go | 4 +- .../goToDefinitionImportedNames2_test.go | 4 +- .../goToDefinitionImportedNames3_test.go | 4 +- .../goToDefinitionImportedNames4_test.go | 4 +- .../goToDefinitionImportedNames5_test.go | 4 +- .../goToDefinitionImportedNames6_test.go | 4 +- .../goToDefinitionImportedNames7_test.go | 4 +- .../goToDefinitionImportedNames8_test.go | 4 +- .../goToDefinitionImportedNames9_test.go | 4 +- .../tests/goToDefinitionImportedNames_test.go | 4 +- .../tests/goToDefinitionImports_test.go | 4 +- .../goToDefinitionInMemberDeclaration_test.go | 4 +- .../goToDefinitionInTypeArgument_test.go | 4 +- .../goToDefinitionIndexSignature2_test.go | 4 +- .../goToDefinitionIndexSignature_test.go | 4 +- .../tests/goToDefinitionInstanceof1_test.go | 4 +- .../tests/goToDefinitionInstanceof2_test.go | 4 +- ...oDefinitionInterfaceAfterImplement_test.go | 4 +- .../goToDefinitionJsDocImportTag1_test.go | 4 +- .../goToDefinitionJsDocImportTag2_test.go | 4 +- .../goToDefinitionJsDocImportTag3_test.go | 4 +- .../goToDefinitionJsDocImportTag4_test.go | 4 +- .../goToDefinitionJsDocImportTag5_test.go | 4 +- .../goToDefinitionJsModuleExports_test.go | 4 +- ...DefinitionJsModuleNameAtImportName_test.go | 4 +- .../tests/goToDefinitionJsModuleName_test.go | 4 +- .../tests/goToDefinitionJsxCall_test.go | 4 +- .../tests/goToDefinitionJsxNotSet_test.go | 4 +- .../goToDefinitionJsxTagNameRightEdge_test.go | 4 +- .../tests/goToDefinitionLabels_test.go | 4 +- .../tests/goToDefinitionMember_test.go | 4 +- .../tests/goToDefinitionMetaProperty_test.go | 4 +- .../goToDefinitionMethodOverloads_test.go | 4 +- .../tests/goToDefinitionModifiers_test.go | 4 +- .../goToDefinitionMultipleDefinitions_test.go | 4 +- ...initionNewExpressionTargetNotClass_test.go | 4 +- ...ObjectBindingElementPropertyName01_test.go | 4 +- ...goToDefinitionObjectBindingPattern_test.go | 4 +- ...DefinitionObjectLiteralProperties1_test.go | 4 +- ...DefinitionObjectLiteralProperties2_test.go | 4 +- ...DefinitionObjectLiteralProperties3_test.go | 4 +- ...oDefinitionObjectLiteralProperties_test.go | 4 +- .../tests/goToDefinitionObjectSpread_test.go | 4 +- ...initionOnInvalidParameterDecorator_test.go | 4 +- ...verloadsInMultiplePropertyAccesses_test.go | 4 +- .../goToDefinitionOverriddenMember10_test.go | 4 +- .../goToDefinitionOverriddenMember11_test.go | 4 +- .../goToDefinitionOverriddenMember12_test.go | 4 +- .../goToDefinitionOverriddenMember13_test.go | 4 +- .../goToDefinitionOverriddenMember14_test.go | 4 +- .../goToDefinitionOverriddenMember15_test.go | 4 +- .../goToDefinitionOverriddenMember16_test.go | 4 +- .../goToDefinitionOverriddenMember17_test.go | 4 +- .../goToDefinitionOverriddenMember18_test.go | 4 +- .../goToDefinitionOverriddenMember19_test.go | 4 +- .../goToDefinitionOverriddenMember1_test.go | 4 +- .../goToDefinitionOverriddenMember20_test.go | 4 +- .../goToDefinitionOverriddenMember21_test.go | 4 +- .../goToDefinitionOverriddenMember22_test.go | 4 +- .../goToDefinitionOverriddenMember23_test.go | 4 +- .../goToDefinitionOverriddenMember24_test.go | 4 +- .../goToDefinitionOverriddenMember25_test.go | 4 +- .../goToDefinitionOverriddenMember26_test.go | 4 +- .../goToDefinitionOverriddenMember2_test.go | 4 +- .../goToDefinitionOverriddenMember3_test.go | 4 +- .../goToDefinitionOverriddenMember4_test.go | 4 +- .../goToDefinitionOverriddenMember5_test.go | 4 +- .../goToDefinitionOverriddenMember6_test.go | 4 +- .../goToDefinitionOverriddenMember7_test.go | 4 +- .../goToDefinitionOverriddenMember8_test.go | 4 +- .../goToDefinitionOverriddenMember9_test.go | 4 +- ...oToDefinitionPartialImplementation_test.go | 4 +- ...ToDefinitionPreferSourceDefinition_test.go | 6 +- .../tests/goToDefinitionPrimitives_test.go | 4 +- .../tests/goToDefinitionPrivateName_test.go | 4 +- .../goToDefinitionPropertyAssignment_test.go | 4 +- .../tests/goToDefinitionRest_test.go | 4 +- .../tests/goToDefinitionReturn1_test.go | 4 +- .../tests/goToDefinitionReturn2_test.go | 4 +- .../tests/goToDefinitionReturn3_test.go | 4 +- .../tests/goToDefinitionReturn4_test.go | 4 +- .../tests/goToDefinitionReturn5_test.go | 4 +- .../tests/goToDefinitionReturn6_test.go | 4 +- .../tests/goToDefinitionReturn7_test.go | 4 +- .../tests/goToDefinitionSameFile_test.go | 4 +- ...goToDefinitionSatisfiesExpression1_test.go | 4 +- .../goToDefinitionScriptImportServer_test.go | 4 +- .../tests/goToDefinitionScriptImport_test.go | 4 +- ...finitionShadowVariableInsideModule_test.go | 4 +- .../goToDefinitionShadowVariable_test.go | 4 +- ...horthandObjectLiteralWithInterface_test.go | 4 +- .../goToDefinitionShorthandProperty01_test.go | 4 +- .../goToDefinitionShorthandProperty02_test.go | 4 +- .../goToDefinitionShorthandProperty03_test.go | 4 +- .../goToDefinitionShorthandProperty04_test.go | 4 +- .../goToDefinitionShorthandProperty05_test.go | 4 +- .../goToDefinitionShorthandProperty06_test.go | 4 +- ...ToDefinitionSignatureAlias_require_test.go | 4 +- .../goToDefinitionSignatureAlias_test.go | 4 +- .../tests/goToDefinitionSimple_test.go | 4 +- .../tests/goToDefinitionSourceUnit_test.go | 4 +- .../tests/goToDefinitionSwitchCase1_test.go | 4 +- .../tests/goToDefinitionSwitchCase2_test.go | 4 +- .../tests/goToDefinitionSwitchCase3_test.go | 4 +- .../tests/goToDefinitionSwitchCase4_test.go | 4 +- .../tests/goToDefinitionSwitchCase5_test.go | 4 +- .../tests/goToDefinitionSwitchCase6_test.go | 4 +- .../tests/goToDefinitionSwitchCase7_test.go | 4 +- ...oDefinitionTaggedTemplateOverloads_test.go | 4 +- .../tests/goToDefinitionThis_test.go | 4 +- .../goToDefinitionTypeOnlyImport_test.go | 4 +- .../tests/goToDefinitionTypePredicate_test.go | 4 +- ...ToDefinitionTypeReferenceDirective_test.go | 4 +- .../tests/goToDefinitionTypeofThis_test.go | 4 +- .../goToDefinitionUndefinedSymbols_test.go | 4 +- .../goToDefinitionUnionTypeProperty1_test.go | 4 +- .../goToDefinitionUnionTypeProperty2_test.go | 4 +- .../goToDefinitionUnionTypeProperty3_test.go | 4 +- .../goToDefinitionUnionTypeProperty4_test.go | 4 +- ...ionUnionTypeProperty_discriminated_test.go | 4 +- .../goToDefinitionVariableAssignment1_test.go | 4 +- .../goToDefinitionVariableAssignment2_test.go | 4 +- .../goToDefinitionVariableAssignment3_test.go | 4 +- .../goToDefinitionVariableAssignment_test.go | 4 +- .../tests/goToDefinitionYield1_test.go | 4 +- .../tests/goToDefinitionYield2_test.go | 4 +- .../tests/goToDefinitionYield3_test.go | 4 +- .../tests/goToDefinitionYield4_test.go | 4 +- ...inition_filteringGenericMappedType_test.go | 4 +- ...goToDefinition_filteringMappedType_test.go | 4 +- .../tests/goToDefinition_mappedType_test.go | 4 +- .../tests/goToDefinition_super_test.go | 4 +- .../goToDefinition_untypedModule_test.go | 4 +- .../goToImplementationClassMethod_00_test.go | 4 +- .../goToImplementationClassMethod_01_test.go | 4 +- .../tests/goToImplementationEnum_00_test.go | 4 +- .../tests/goToImplementationEnum_01_test.go | 4 +- ...ToImplementationInterfaceMethod_00_test.go | 4 +- ...ToImplementationInterfaceMethod_01_test.go | 4 +- ...ToImplementationInterfaceMethod_02_test.go | 4 +- ...ToImplementationInterfaceMethod_03_test.go | 4 +- ...ToImplementationInterfaceMethod_04_test.go | 4 +- ...ToImplementationInterfaceMethod_05_test.go | 4 +- ...ToImplementationInterfaceMethod_06_test.go | 4 +- ...ToImplementationInterfaceMethod_08_test.go | 4 +- ...ToImplementationInterfaceMethod_09_test.go | 4 +- ...ToImplementationInterfaceMethod_10_test.go | 4 +- ...ToImplementationInterfaceMethod_11_test.go | 4 +- ...plementationInterfaceObjectLiteral_test.go | 4 +- ...ImplementationInterfaceProperty_00_test.go | 4 +- ...ImplementationInterfaceProperty_01_test.go | 4 +- .../goToImplementationInterface_00_test.go | 4 +- .../goToImplementationInterface_01_test.go | 4 +- .../goToImplementationInterface_02_test.go | 4 +- .../goToImplementationInterface_03_test.go | 4 +- .../goToImplementationInterface_04_test.go | 4 +- .../goToImplementationInterface_05_test.go | 4 +- .../goToImplementationInterface_06_test.go | 4 +- .../goToImplementationInterface_07_test.go | 4 +- .../goToImplementationInterface_08_test.go | 4 +- .../goToImplementationInterface_09_test.go | 4 +- .../goToImplementationInterface_10_test.go | 4 +- .../tests/goToImplementationInvalid_test.go | 4 +- .../tests/goToImplementationLocal_00_test.go | 4 +- .../tests/goToImplementationLocal_01_test.go | 4 +- .../tests/goToImplementationLocal_02_test.go | 4 +- .../tests/goToImplementationLocal_03_test.go | 4 +- .../tests/goToImplementationLocal_04_test.go | 4 +- .../tests/goToImplementationLocal_05_test.go | 4 +- .../tests/goToImplementationLocal_06_test.go | 4 +- .../tests/goToImplementationLocal_07_test.go | 4 +- .../tests/goToImplementationLocal_08_test.go | 4 +- .../goToImplementationNamespace_00_test.go | 4 +- .../goToImplementationNamespace_01_test.go | 4 +- .../goToImplementationNamespace_02_test.go | 4 +- .../goToImplementationNamespace_03_test.go | 4 +- .../goToImplementationNamespace_04_test.go | 4 +- .../goToImplementationNamespace_05_test.go | 4 +- .../goToImplementationNamespace_06_test.go | 4 +- ...mplementationNoCrashMultiSourceDts_test.go | 4 +- ...plementationNoCrashTripleSlashRef2_test.go | 4 +- ...mplementationNoCrashTripleSlashRef_test.go | 4 +- ...ntationNoCrashUMDWithDynamicImport_test.go | 4 +- ...entationReachingNonExistentExport1_test.go | 4 +- ...entationReachingNonExistentExport2_test.go | 4 +- ...entationReachingNonExistentExport3_test.go | 4 +- ...tationReexportedTypeOnlyNamespace1_test.go | 4 +- ...tationReexportedTypeOnlyNamespace2_test.go | 4 +- ...tationReexportedTypeOnlyNamespace3_test.go | 4 +- ...tionShorthandPropertyAssignment_00_test.go | 4 +- ...tionShorthandPropertyAssignment_01_test.go | 4 +- ...tionShorthandPropertyAssignment_02_test.go | 4 +- .../tests/goToImplementationSuper_00_test.go | 4 +- .../tests/goToImplementationSuper_01_test.go | 4 +- .../tests/goToImplementationThis_00_test.go | 4 +- .../tests/goToImplementationThis_01_test.go | 4 +- .../goToImplementationTypeAlias_00_test.go | 4 +- ...oToImplementation_inDifferentFiles_test.go | 4 +- .../goToImplementation_satisfies_test.go | 4 +- .../tests/goToModuleAliasDefinition_test.go | 4 +- .../goToSource10_mapFromAtTypes3_test.go | 4 +- .../goToSource11_propertyOfAlias_test.go | 4 +- .../tests/goToSource12_callbackParam_test.go | 4 +- .../tests/goToSource13_nodenext_test.go | 4 +- ...e14_unresolvedRequireDestructuring_test.go | 4 +- .../tests/goToSource15_bundler_test.go | 4 +- ...ource16_callbackParamDifferentFile_test.go | 4 +- .../goToSource17_AddsFileToProject_test.go | 4 +- ...Source18_reusedFromDifferentFolder_test.go | 4 +- .../goToSource1_localJsBesideDts_test.go | 4 +- .../goToSource2_nodeModulesWithTypes_test.go | 4 +- .../goToSource3_nodeModulesAtTypes_test.go | 4 +- .../tests/goToSource5_sameAsGoToDef1_test.go | 4 +- .../tests/goToSource6_sameAsGoToDef2_test.go | 4 +- .../goToSource7_conditionallyMinified_test.go | 4 +- .../tests/goToSource8_mapFromAtTypes_test.go | 4 +- .../tests/goToSource9_mapFromAtTypes2_test.go | 4 +- ...SourceDefinitionAliasedImportUsage_test.go | 4 +- ...nAliasedImportWithPrecedingExports_test.go | 4 +- .../goToSourceDefinitionDefaultExport_test.go | 4 +- ...ToSourceDefinitionDefaultUsageSite_test.go | 4 +- ...oToSourceDefinitionEmptyAndMissing_test.go | 4 +- ...efinitionExtensionlessMappedSource_test.go | 4 +- ...goToSourceDefinitionImportVariants_test.go | 4 +- .../tests/goToSourceDefinitionImports_test.go | 4 +- ...SourceDefinitionMergedDeclarations_test.go | 4 +- ...oSourceDefinitionNestedNodeModules_test.go | 4 +- .../goToSourceDefinitionNestedScope_test.go | 4 +- ...oSourceDefinitionNonNodeModulesDts_test.go | 4 +- ...oSourceDefinitionPackageResolution_test.go | 4 +- .../goToSourceDefinitionProperties_test.go | 4 +- ...urceDefinitionPropertyAccessNoDecl_test.go | 4 +- ...goToSourceDefinitionPropertyAccess_test.go | 4 +- .../goToSourceDefinitionReExportChain_test.go | 4 +- .../goToSourceDefinitionScopedPackage_test.go | 4 +- ...rceDefinitionTripleSlashUnresolved_test.go | 4 +- .../goToSourceDefinitionTripleSlash_test.go | 4 +- ...goToSourceDefinitionTypeOnlySymbol_test.go | 4 +- .../tests/goToSourceDefinitionTypes_test.go | 4 +- .../tests/goToSourceDefinition_test.go | 4 +- .../tests/goToTypeDefinition2_test.go | 4 +- .../tests/goToTypeDefinition3_test.go | 4 +- .../tests/goToTypeDefinition4_test.go | 4 +- .../tests/goToTypeDefinition5_test.go | 4 +- .../tests/goToTypeDefinitionAliases_test.go | 4 +- .../goToTypeDefinitionEnumMembers_test.go | 4 +- .../goToTypeDefinitionImportMeta_test.go | 4 +- .../tests/goToTypeDefinitionModifiers_test.go | 4 +- .../tests/goToTypeDefinitionModule_test.go | 4 +- .../goToTypeDefinitionPrimitives_test.go | 4 +- .../tests/goToTypeDefinitionUnionType_test.go | 4 +- .../tests/goToTypeDefinition_Pick_test.go | 4 +- .../goToTypeDefinition_arrayType_test.go | 4 +- .../goToTypeDefinition_promiseType_test.go | 4 +- .../goToTypeDefinition_returnType_test.go | 4 +- .../tests/goToTypeDefinition_test.go | 4 +- .../goToTypeDefinition_typeReference_test.go | 4 +- .../tests/goToTypeDefinition_typedef_test.go | 4 +- .../tests/goToTypeWithTupleTypes_test.go | 4 +- .../gotoDefinitionConstructorFunction_test.go | 4 +- ...oDefinitionInObjectBindingPattern1_test.go | 4 +- ...oDefinitionInObjectBindingPattern2_test.go | 4 +- .../tests/gotoDefinitionLinkTag1_test.go | 4 +- .../tests/gotoDefinitionLinkTag2_test.go | 4 +- .../tests/gotoDefinitionLinkTag3_test.go | 4 +- .../tests/gotoDefinitionLinkTag4_test.go | 4 +- .../tests/gotoDefinitionLinkTag5_test.go | 4 +- .../tests/gotoDefinitionLinkTag6_test.go | 4 +- ...ertyAccessExpressionHeritageClause_test.go | 4 +- .../tests/gotoDefinitionSatisfiesTag_test.go | 4 +- .../tests/gotoDefinitionThrowsTag_test.go | 4 +- ...ghlightsForExportFromUnfoundModule_test.go | 4 +- .../tests/hoverAliasInImportedFile_test.go | 4 +- .../hoverCallSignatureDocumentation_test.go | 4 +- ...overCircularInheritedDocumentation_test.go | 4 +- .../hoverMappedTypePropertyJSDoc_test.go | 4 +- .../hoverMixinOverrideDocumentation_test.go | 4 +- .../hoverNilBaseSymbolIntersection_test.go | 4 +- .../tests/hoverOptionalMembers_test.go | 4 +- .../fourslash/tests/hoverOverComment_test.go | 4 +- .../tests/hoverOverPrivateName_test.go | 4 +- .../tests/hoverQualifiedGenericNames_test.go | 4 +- ...fReExportedNamespaceGenericNoCrash_test.go | 4 +- .../hoverThenDiagnosticsJsxIntrinsic_test.go | 6 +- .../tests/identifierErrorRecovery_test.go | 6 +- .../fourslash/tests/implementation01_test.go | 4 +- .../importAllowRenameOfImportPath_test.go | 8 +- ...portAttributesTypesLanguageService_test.go | 6 +- ...ackageJsonExportsSpecifierEndsInTs_test.go | 6 +- ...nsPackageJsonExportsTrailingSlash1_test.go | 6 +- ...tionsPackageJsonImportsConditions1_test.go | 6 +- ...mpletionsPackageJsonImportsLength1_test.go | 6 +- ...mpletionsPackageJsonImportsLength2_test.go | 6 +- ...pletionsPackageJsonImportsPattern2_test.go | 6 +- ...kageJsonImportsPatternRootWildcard_test.go | 6 +- ...kageJsonImportsPattern_capsInPath1_test.go | 6 +- ...kageJsonImportsPattern_capsInPath2_test.go | 6 +- ...etionsPackageJsonImportsPattern_js_test.go | 6 +- ...onsPackageJsonImportsPattern_js_ts_test.go | 6 +- ...mpletionsPackageJsonImportsPattern_test.go | 6 +- ...onsPackageJsonImportsPattern_ts_js_test.go | 6 +- ...etionsPackageJsonImportsPattern_ts_test.go | 6 +- ...onsPackageJsonImportsPattern_ts_ts_test.go | 6 +- ...rtCompletionsPackageJsonImports_js_test.go | 6 +- ...rtCompletionsPackageJsonImports_ts_test.go | 6 +- .../importCompletions_importsMap1_test.go | 6 +- .../importCompletions_importsMap2_test.go | 6 +- .../importCompletions_importsMap3_test.go | 6 +- .../importCompletions_importsMap4_test.go | 6 +- .../importCompletions_importsMap5_test.go | 6 +- ...mportFixFromAtTypesWithRealPackage_test.go | 4 +- .../tests/importFixIndentedStatements_test.go | 4 +- ...WithMultipleModuleExportAssignment_test.go | 4 +- .../importFixesGlobalTypingsCache_test.go | 4 +- ...tFixes_ambientCircularDefaultCrash_test.go | 4 +- ...uotePreferenceDouble_importHelpers_test.go | 4 +- ...uotePreferenceSingle_importHelpers_test.go | 4 +- ...sAfterScriptBecomesDecoratedModule_test.go | 4 +- .../tests/importMetaCompletionDetails_test.go | 8 +- .../tests/importModuleSpecifierEnding_test.go | 12 +- .../importModuleSpecifierPreference_test.go | 12 +- .../importNameCodeFixConvertTypeOnly1_test.go | 4 +- .../importNameCodeFixDefaultExport1_test.go | 4 +- .../importNameCodeFixDefaultExport2_test.go | 4 +- .../importNameCodeFixDefaultExport3_test.go | 4 +- .../importNameCodeFixDefaultExport4_test.go | 4 +- .../importNameCodeFixDefaultExport5_test.go | 8 +- .../importNameCodeFixDefaultExport6_test.go | 4 +- .../importNameCodeFixDefaultExport7_test.go | 4 +- .../importNameCodeFixDefaultExport_test.go | 4 +- .../importNameCodeFixExistingImport0_test.go | 4 +- .../importNameCodeFixExistingImport10_test.go | 4 +- .../importNameCodeFixExistingImport11_test.go | 4 +- .../importNameCodeFixExistingImport12_test.go | 4 +- .../importNameCodeFixExistingImport1_test.go | 4 +- .../importNameCodeFixExistingImport2_test.go | 4 +- .../importNameCodeFixExistingImport3_test.go | 4 +- .../importNameCodeFixExistingImport4_test.go | 4 +- .../importNameCodeFixExistingImport5_test.go | 4 +- .../importNameCodeFixExistingImport6_test.go | 4 +- .../importNameCodeFixExistingImport7_test.go | 4 +- .../importNameCodeFixExistingImport8_test.go | 4 +- .../importNameCodeFixExistingImport9_test.go | 4 +- ...rtNameCodeFixExistingImportEquals0_test.go | 4 +- ...deFixExportAsDefaultExistingImport_test.go | 4 +- .../importNameCodeFixExportAsDefault_test.go | 4 +- ...mportNameCodeFixIndentedIdentifier_test.go | 4 +- ...deFixInferEndingPreference_classic_test.go | 4 +- ...rtNameCodeFixInferEndingPreference_test.go | 4 +- .../tests/importNameCodeFixJsEnding_test.go | 8 +- ...mportAllowSyntheticDefaultImports0_test.go | 4 +- ...mportAllowSyntheticDefaultImports1_test.go | 4 +- ...mportAllowSyntheticDefaultImports2_test.go | 4 +- ...mportAllowSyntheticDefaultImports3_test.go | 4 +- ...mportAllowSyntheticDefaultImports5_test.go | 4 +- ...importNameCodeFixNewImportAmbient0_test.go | 4 +- ...importNameCodeFixNewImportAmbient1_test.go | 4 +- ...importNameCodeFixNewImportAmbient2_test.go | 4 +- ...importNameCodeFixNewImportAmbient3_test.go | 4 +- ...importNameCodeFixNewImportBaseUrl0_test.go | 4 +- ...importNameCodeFixNewImportBaseUrl1_test.go | 6 +- ...importNameCodeFixNewImportBaseUrl2_test.go | 6 +- ...importNameCodeFixNewImportDefault0_test.go | 4 +- ...mportExportEqualsCommonJSInteropOn_test.go | 4 +- ...ImportExportEqualsESNextInteropOff_test.go | 4 +- ...wImportExportEqualsESNextInteropOn_test.go | 4 +- .../importNameCodeFixNewImportFile0_test.go | 4 +- .../importNameCodeFixNewImportFile1_test.go | 4 +- .../importNameCodeFixNewImportFile2_test.go | 4 +- .../importNameCodeFixNewImportFile3_test.go | 4 +- .../importNameCodeFixNewImportFile4_test.go | 4 +- ...ameCodeFixNewImportFileAllComments_test.go | 4 +- ...deFixNewImportFileDetachedComments_test.go | 4 +- ...ameCodeFixNewImportFileQuoteStyle0_test.go | 4 +- ...ameCodeFixNewImportFileQuoteStyle1_test.go | 4 +- ...ameCodeFixNewImportFileQuoteStyle2_test.go | 4 +- ...ameCodeFixNewImportFileQuoteStyle3_test.go | 4 +- ...deFixNewImportFileQuoteStyleMixed0_test.go | 4 +- ...deFixNewImportFileQuoteStyleMixed1_test.go | 4 +- ...xNewImportFromAtTypesScopedPackage_test.go | 4 +- ...ortNameCodeFixNewImportFromAtTypes_test.go | 4 +- ...mportIndex_notForClassicResolution_test.go | 4 +- .../importNameCodeFixNewImportIndex_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules0_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules1_test.go | 8 +- ...rtNameCodeFixNewImportNodeModules2_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules3_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules4_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules6_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules7_test.go | 4 +- ...rtNameCodeFixNewImportNodeModules8_test.go | 4 +- .../importNameCodeFixNewImportPaths0_test.go | 4 +- .../importNameCodeFixNewImportPaths1_test.go | 4 +- .../importNameCodeFixNewImportPaths2_test.go | 4 +- ...odeFixNewImportPaths_withExtension_test.go | 4 +- ...NewImportPaths_withLeadingDotSlash_test.go | 4 +- ...ImportPaths_withParentRelativePath_test.go | 4 +- ...mportNameCodeFixNewImportRootDirs0_test.go | 4 +- ...mportNameCodeFixNewImportRootDirs1_test.go | 4 +- ...portNameCodeFixNewImportTypeRoots0_test.go | 4 +- ...portNameCodeFixNewImportTypeRoots1_test.go | 4 +- .../importNameCodeFixOptionalImport0_test.go | 4 +- .../importNameCodeFixOptionalImport1_test.go | 4 +- .../tests/importNameCodeFixReExport_test.go | 4 +- .../tests/importNameCodeFixShebang_test.go | 4 +- .../tests/importNameCodeFixUMDGlobal0_test.go | 4 +- .../tests/importNameCodeFixUMDGlobal1_test.go | 4 +- ...portNameCodeFixUMDGlobalJavaScript_test.go | 4 +- .../importNameCodeFixUMDGlobalReact0_test.go | 4 +- .../importNameCodeFixUMDGlobalReact1_test.go | 4 +- .../importNameCodeFixUMDGlobalReact2_test.go | 4 +- .../importNameCodeFix_HeaderComment1_test.go | 4 +- .../importNameCodeFix_HeaderComment2_test.go | 4 +- ...ameCodeFix_add_all_missing_imports_test.go | 4 +- .../tests/importNameCodeFix_all2_test.go | 4 +- .../tests/importNameCodeFix_all_js_test.go | 4 +- .../importNameCodeFix_all_promoteType_test.go | 4 +- .../tests/importNameCodeFix_all_test.go | 4 +- ...meCodeFix_avoidRelativeNodeModules_test.go | 4 +- .../importNameCodeFix_barrelExport2_test.go | 6 +- .../importNameCodeFix_barrelExport3_test.go | 6 +- .../importNameCodeFix_barrelExport4_test.go | 4 +- .../importNameCodeFix_barrelExport5_test.go | 4 +- .../importNameCodeFix_barrelExport_test.go | 4 +- ...ameCodeFix_commonjs_allowSynthetic_test.go | 4 +- .../importNameCodeFix_defaultExport_test.go | 4 +- .../tests/importNameCodeFix_dollar_test.go | 4 +- .../importNameCodeFix_exportEquals_test.go | 4 +- ...tNameCodeFix_externalNonRelateive2_test.go | 6 +- ...rtNameCodeFix_externalNonRelative1_test.go | 6 +- ...eCodeFix_fileWithNoTrailingNewline_test.go | 4 +- .../importNameCodeFix_fromPathMapping_test.go | 4 +- ...rtNameCodeFix_getCanonicalFileName_test.go | 4 +- .../importNameCodeFix_importType1_test.go | 4 +- .../importNameCodeFix_importType2_test.go | 4 +- .../importNameCodeFix_importType3_test.go | 4 +- .../importNameCodeFix_importType4_test.go | 4 +- .../importNameCodeFix_importType5_test.go | 4 +- .../importNameCodeFix_importType6_test.go | 4 +- .../importNameCodeFix_importType7_test.go | 6 +- .../importNameCodeFix_importType8_test.go | 4 +- .../importNameCodeFix_importType_test.go | 4 +- .../importNameCodeFix_jsCJSvsESM1_test.go | 4 +- .../importNameCodeFix_jsCJSvsESM2_test.go | 4 +- .../importNameCodeFix_jsCJSvsESM3_test.go | 4 +- .../importNameCodeFix_jsExtension_test.go | 4 +- .../tests/importNameCodeFix_jsx1_test.go | 4 +- .../tests/importNameCodeFix_jsx2_test.go | 4 +- .../tests/importNameCodeFix_jsx3_test.go | 4 +- .../tests/importNameCodeFix_jsx4_test.go | 4 +- .../tests/importNameCodeFix_jsx5_test.go | 4 +- .../tests/importNameCodeFix_jsx6_test.go | 4 +- .../tests/importNameCodeFix_jsx7_test.go | 4 +- ...CodeFix_jsxOpeningTagImportDefault_test.go | 4 +- .../importNameCodeFix_jsxReact17_test.go | 4 +- ...eFix_noDestructureNonObjectLiteral_test.go | 4 +- .../tests/importNameCodeFix_order2_test.go | 4 +- .../tests/importNameCodeFix_order_test.go | 4 +- ...portNameCodeFix_pathsWithExtension_test.go | 6 +- ...rtNameCodeFix_pathsWithoutBaseUrl1_test.go | 4 +- ...rtNameCodeFix_pathsWithoutBaseUrl2_test.go | 4 +- .../tests/importNameCodeFix_pnpm1_test.go | 4 +- .../importNameCodeFix_preferBaseUrl_test.go | 4 +- .../importNameCodeFix_quoteStyle_test.go | 6 +- .../importNameCodeFix_reExportDefault_test.go | 4 +- .../tests/importNameCodeFix_reExport_test.go | 4 +- .../importNameCodeFix_require_UMD_test.go | 4 +- ...tNameCodeFix_require_addToExisting_test.go | 4 +- ..._importVsRequire_addToExistingWins_test.go | 4 +- ...require_importVsRequire_importWins_test.go | 4 +- ...quire_importVsRequire_moduleTarget_test.go | 4 +- ...ameCodeFix_require_namedAndDefault_test.go | 4 +- .../tests/importNameCodeFix_require_test.go | 4 +- ...deFix_shorthandPropertyAssignment1_test.go | 4 +- ...deFix_shorthandPropertyAssignment2_test.go | 4 +- .../importNameCodeFix_sortByDistance_test.go | 4 +- ...tNameCodeFix_symlink_own_package_2_test.go | 4 +- ...ortNameCodeFix_symlink_own_package_test.go | 4 +- .../tests/importNameCodeFix_symlink_test.go | 4 +- .../importNameCodeFix_trailingComma_test.go | 4 +- ...ortNameCodeFix_tripleSlashOrdering_test.go | 4 +- .../tests/importNameCodeFix_typeOnly2_test.go | 4 +- .../tests/importNameCodeFix_typeOnly_test.go | 4 +- .../importNameCodeFix_typeUsedAsValue_test.go | 4 +- .../importNameCodeFix_typesVersions_test.go | 8 +- .../importNameCodeFix_types_classic_test.go | 4 +- ...meCodeFix_uriStyleNodeCoreModules1_test.go | 4 +- ...meCodeFix_uriStyleNodeCoreModules2_test.go | 4 +- ...meCodeFix_uriStyleNodeCoreModules3_test.go | 4 +- .../tests/importNameCodeFix_withJson_test.go | 4 +- .../importPreferTypeOnlyAutoImports_test.go | 8 +- .../tests/importStatementCompletion_test.go | 12 +- .../tests/importStatementCompletions4_test.go | 10 +- ...tementCompletions_esModuleInterop1_test.go | 10 +- ...tementCompletions_esModuleInterop2_test.go | 10 +- .../importStatementCompletions_js2_test.go | 8 +- .../importStatementCompletions_js_test.go | 8 +- ...tementCompletions_noPatternAmbient_test.go | 10 +- ...portStatementCompletions_noSnippet_test.go | 10 +- .../importStatementCompletions_pnpm1_test.go | 10 +- ...tatementCompletions_pnpmTransitive_test.go | 10 +- .../importStatementCompletions_quotes_test.go | 10 +- ...ortStatementCompletions_semicolons_test.go | 10 +- ...rtSuggestionsCache_exportUndefined_test.go | 10 +- ...uggestionsCache_invalidPackageJson_test.go | 10 +- .../tests/importTypeCompletions1_test.go | 8 +- .../tests/importTypeCompletions2_test.go | 6 +- .../tests/importTypeCompletions3_test.go | 8 +- .../tests/importTypeCompletions4_test.go | 8 +- .../tests/importTypeCompletions5_test.go | 8 +- .../tests/importTypeCompletions6_test.go | 8 +- .../tests/importTypeCompletions7_test.go | 10 +- .../tests/importTypeCompletions8_test.go | 8 +- .../tests/importTypeCompletions9_test.go | 8 +- .../tests/importTypeFormatting_test.go | 4 +- .../tests/importTypeMemberCompletions_test.go | 6 +- .../importTypeNodeGoToDefinition_test.go | 4 +- ...eclarationDiagnosticsNoServerError_test.go | 4 +- .../tests/importValueUsedAsType_test.go | 4 +- .../tests/incompatibleOverride_test.go | 4 +- ...xpressionAboveInterfaceDeclaration_test.go | 4 +- ...ncrementalJsDocAdjustsLengthsRight_test.go | 4 +- .../incrementalParsingDynamicImport1_test.go | 4 +- .../incrementalParsingDynamicImport2_test.go | 4 +- .../incrementalParsingDynamicImport3_test.go | 4 +- .../incrementalParsingDynamicImport4_test.go | 4 +- ...ncrementalParsingInsertIntoMethod1_test.go | 4 +- .../incrementalParsingTopLevelAwait1_test.go | 4 +- .../incrementalParsingTopLevelAwait2_test.go | 4 +- .../tests/incrementalParsingWithJsDoc_test.go | 4 +- .../tests/incrementalResolveAccessor_test.go | 4 +- ...entalResolveConstructorDeclaration_test.go | 4 +- ...lResolveFunctionPropertyAssignment_test.go | 4 +- ...ateToClassImplementingGenericClass_test.go | 4 +- .../indentAfterFunctionClosingBraces_test.go | 4 +- .../fourslash/tests/indentationInJsx3_test.go | 4 +- .../indexSignatureWithoutAnnotation_test.go | 4 +- .../tests/indexerReturnTypes1_test.go | 4 +- .../tests/indirectClassInstantiation_test.go | 10 +- .../tests/indirectJsRequireRename_test.go | 4 +- .../inheritedModuleMembersForClodule2_test.go | 4 +- .../fourslash/tests/inlayHintsCrash1_test.go | 8 +- .../tests/inlayHintsElementAccess_test.go | 8 +- .../tests/inlayHintsEnumMemberValue_test.go | 8 +- .../inlayHintsFunctionParameterTypes1_test.go | 8 +- .../inlayHintsFunctionParameterTypes2_test.go | 8 +- .../inlayHintsFunctionParameterTypes3_test.go | 8 +- .../inlayHintsFunctionParameterTypes4_test.go | 8 +- .../inlayHintsFunctionParameterTypes5_test.go | 8 +- .../inlayHintsIdentifierLocation_test.go | 8 +- .../tests/inlayHintsImportType1_test.go | 8 +- .../tests/inlayHintsImportType2_test.go | 8 +- .../inlayHintsInferredTypePredicate1_test.go | 8 +- ...inlayHintsInteractiveAnyParameter1_test.go | 6 +- ...inlayHintsInteractiveAnyParameter2_test.go | 6 +- ...InteractiveFunctionParameterTypes1_test.go | 8 +- ...InteractiveFunctionParameterTypes2_test.go | 8 +- ...InteractiveFunctionParameterTypes3_test.go | 8 +- ...InteractiveFunctionParameterTypes4_test.go | 8 +- ...InteractiveFunctionParameterTypes5_test.go | 8 +- .../inlayHintsInteractiveImportType1_test.go | 8 +- .../inlayHintsInteractiveImportType2_test.go | 8 +- ...sInteractiveInferredTypePredicate1_test.go | 8 +- ...intsInteractiveJsDocParameterNames_test.go | 6 +- .../inlayHintsInteractiveMultifile1_test.go | 8 +- ...sInteractiveMultifileFunctionCalls_test.go | 6 +- .../inlayHintsInteractiveOverloadCall_test.go | 6 +- ...tsInteractiveParameterNamesInSpan1_test.go | 8 +- ...tsInteractiveParameterNamesInSpan2_test.go | 8 +- ...eractiveParameterNamesWithComments_test.go | 6 +- ...nlayHintsInteractiveParameterNames_test.go | 6 +- ...layHintsInteractiveRestParameters1_test.go | 6 +- ...layHintsInteractiveRestParameters2_test.go | 6 +- ...layHintsInteractiveRestParameters3_test.go | 6 +- .../inlayHintsInteractiveReturnType_test.go | 8 +- ...ntsInteractiveTemplateLiteralTypes_test.go | 8 +- ...nlayHintsInteractiveVariableTypes1_test.go | 8 +- ...nlayHintsInteractiveVariableTypes2_test.go | 8 +- .../inlayHintsInteractiveWithClosures_test.go | 6 +- .../inlayHintsJsDocParameterNames_test.go | 6 +- .../tests/inlayHintsMultifile1_test.go | 8 +- ...HintsNoHintWhenArgumentMatchesName_test.go | 8 +- .../tests/inlayHintsNoParameterHints_test.go | 6 +- .../inlayHintsNoVariableTypeHints_test.go | 8 +- .../tests/inlayHintsOverloadCall1_test.go | 6 +- .../tests/inlayHintsOverloadCall2_test.go | 6 +- .../tests/inlayHintsParameterNames_test.go | 6 +- ...tsPropertyDeclarationComputedName1_test.go | 8 +- .../inlayHintsPropertyDeclarations2_test.go | 8 +- .../inlayHintsPropertyDeclarations_test.go | 8 +- .../tests/inlayHintsQuotePreference1_test.go | 8 +- .../tests/inlayHintsQuotePreference2_test.go | 8 +- .../tests/inlayHintsReparsedNodeCrash_test.go | 8 +- .../tests/inlayHintsRestParameters1_test.go | 6 +- .../tests/inlayHintsRestParameters2_test.go | 6 +- .../tests/inlayHintsReturnType_test.go | 8 +- .../tests/inlayHintsThisParameter_test.go | 8 +- .../tests/inlayHintsTupleTypeCrash_test.go | 8 +- .../tests/inlayHintsTypeMatchesName_test.go | 8 +- .../inlayHintsTypeParameterModifiers1_test.go | 8 +- .../fourslash/tests/inlayHintsUsing_test.go | 8 +- .../tests/inlayHintsVariableTypes1_test.go | 8 +- .../tests/inlayHintsVariableTypes2_test.go | 8 +- .../tests/inlayHintsVariableTypes3_test.go | 8 +- .../tests/inlayHintsWithClosures_test.go | 6 +- ...rgumentBeforeOverloadedConstructor_test.go | 4 +- ...tInterfaceAndCheckTypeLiteralField_test.go | 4 +- .../tests/insertMethodCallAboveOthers_test.go | 4 +- .../tests/insertPublicBeforeSetter_test.go | 4 +- ...ementInDuplicateIdentifierFunction_test.go | 4 +- .../tests/insertSecondTryCatchBlock_test.go | 4 +- .../insertVarAfterEmptyTypeParamList_test.go | 4 +- .../instanceTypesForGenericType1_test.go | 4 +- .../tests/intellisenseInObjectLiteral_test.go | 4 +- .../tests/interfaceExtendsPrimitive_test.go | 4 +- .../tests/invalidRestArgError_test.go | 4 +- .../invertedCloduleAfterQuickInfo_test.go | 4 +- .../invertedFunduleAfterQuickInfo_test.go | 4 +- .../isDefinitionAcrossGlobalProjects_test.go | 4 +- .../isDefinitionAcrossModuleProjects_test.go | 4 +- ...sDefinitionInterfaceImplementation_test.go | 4 +- .../tests/isDefinitionOverloads_test.go | 4 +- .../isDefinitionShorthandProperty_test.go | 4 +- .../tests/isDefinitionSingleImport_test.go | 4 +- .../tests/isDefinitionSingleReference_test.go | 4 +- .../fourslash/tests/issue57429_test.go | 6 +- .../fourslash/tests/issue57585-2_test.go | 4 +- .../fourslash/tests/javaScriptClass2_test.go | 4 +- .../fourslash/tests/javaScriptClass3_test.go | 4 +- .../fourslash/tests/javaScriptClass4_test.go | 8 +- .../tests/javaScriptModules12_test.go | 10 +- .../tests/javaScriptModules13_test.go | 10 +- .../tests/javaScriptModules14_test.go | 10 +- .../tests/javaScriptModules18_test.go | 6 +- .../tests/javaScriptModules19_test.go | 10 +- .../tests/javaScriptModulesError1_test.go | 4 +- .../javaScriptModulesWithBackticks_test.go | 6 +- .../tests/javascriptModules20_test.go | 10 +- .../tests/javascriptModules21_test.go | 10 +- .../tests/javascriptModules22_test.go | 6 +- .../tests/javascriptModules23_test.go | 6 +- .../tests/javascriptModules24_test.go | 4 +- .../tests/javascriptModules25_test.go | 6 +- ...javascriptModulesTypeImportAsValue_test.go | 6 +- .../tests/javascriptModulesTypeImport_test.go | 6 +- .../tests/jsDocAliasQuickInfo_test.go | 4 +- .../tests/jsDocAugmentsAndExtends_test.go | 6 +- .../fourslash/tests/jsDocAugments_test.go | 4 +- .../jsDocDontBreakWithNamespacesVS_test.go | 6 +- .../jsDocDontBreakWithNamespaces_test.go | 4 +- .../fourslash/tests/jsDocExtends_test.go | 4 +- .../fourslash/tests/jsDocForTypeAlias_test.go | 4 +- .../tests/jsDocFunctionSignatures10_test.go | 4 +- .../tests/jsDocFunctionSignatures11_test.go | 4 +- .../tests/jsDocFunctionSignatures12_test.go | 4 +- .../tests/jsDocFunctionSignatures13_test.go | 4 +- .../tests/jsDocFunctionSignatures2_test.go | 4 +- .../tests/jsDocFunctionSignatures3_test.go | 8 +- .../tests/jsDocFunctionSignatures4_test.go | 4 +- .../tests/jsDocFunctionSignatures5VS_test.go | 6 +- .../tests/jsDocFunctionSignatures5_test.go | 4 +- .../tests/jsDocFunctionSignatures6VS_test.go | 6 +- .../tests/jsDocFunctionSignatures6_test.go | 4 +- .../tests/jsDocFunctionSignatures7_test.go | 4 +- .../tests/jsDocFunctionSignatures8_test.go | 4 +- ...sDocFunctionTypeCompletionsNoCrash_test.go | 6 +- .../fourslash/tests/jsDocGenerics1_test.go | 8 +- .../fourslash/tests/jsDocGenerics2_test.go | 4 +- .../jsDocIndentationPreservation1_test.go | 4 +- .../jsDocIndentationPreservation2_test.go | 4 +- .../jsDocIndentationPreservation3_test.go | 4 +- .../fourslash/tests/jsDocInheritDoc_test.go | 4 +- .../tests/jsDocPropertyDescription10_test.go | 4 +- .../tests/jsDocPropertyDescription11_test.go | 4 +- .../tests/jsDocPropertyDescription12_test.go | 4 +- .../tests/jsDocPropertyDescription1_test.go | 4 +- .../tests/jsDocPropertyDescription2_test.go | 4 +- .../tests/jsDocPropertyDescription3_test.go | 4 +- .../tests/jsDocPropertyDescription4_test.go | 4 +- .../tests/jsDocPropertyDescription5_test.go | 4 +- .../tests/jsDocPropertyDescription6_test.go | 4 +- .../tests/jsDocPropertyDescription7_test.go | 4 +- .../tests/jsDocPropertyDescription8_test.go | 4 +- .../tests/jsDocPropertyDescription9_test.go | 4 +- .../fourslash/tests/jsDocSee1_test.go | 4 +- .../fourslash/tests/jsDocSee2_test.go | 4 +- .../fourslash/tests/jsDocSee3_test.go | 4 +- .../fourslash/tests/jsDocSee4_test.go | 4 +- .../fourslash/tests/jsDocSee_rename1_test.go | 6 +- .../fourslash/tests/jsDocServices_test.go | 4 +- .../tests/jsDocSignature-43394_test.go | 4 +- .../tests/jsDocTagsWithHyphen_test.go | 6 +- .../tests/jsDocTypeTagQuickInfo1_test.go | 4 +- .../tests/jsDocTypeTagQuickInfo2_test.go | 4 +- .../tests/jsDocTypedefQuickInfo1_test.go | 4 +- .../tests/jsFileImportNoTypes2_test.go | 8 +- ...bjectDefinePropertyRenameLocations_test.go | 4 +- ...jsQuickInfoGenerallyAcceptableSize_test.go | 4 +- .../tests/jsRequireQuickInfo_test.go | 4 +- .../fourslash/tests/jsSignature-41059_test.go | 4 +- .../fourslash/tests/jsconfig_test.go | 4 +- .../tests/jsdocCallbackTagRename01_test.go | 4 +- .../fourslash/tests/jsdocCallbackTag_test.go | 4 +- .../jsdocDeprecated_suggestion10_test.go | 6 +- .../jsdocDeprecated_suggestion11_test.go | 6 +- .../jsdocDeprecated_suggestion12_test.go | 6 +- .../jsdocDeprecated_suggestion13_test.go | 6 +- .../jsdocDeprecated_suggestion14_test.go | 6 +- .../jsdocDeprecated_suggestion15_test.go | 6 +- .../jsdocDeprecated_suggestion16_test.go | 6 +- .../jsdocDeprecated_suggestion17_test.go | 6 +- .../jsdocDeprecated_suggestion18_test.go | 6 +- .../jsdocDeprecated_suggestion19_test.go | 6 +- .../tests/jsdocDeprecated_suggestion1_test.go | 6 +- .../jsdocDeprecated_suggestion20_test.go | 6 +- .../jsdocDeprecated_suggestion21_test.go | 6 +- .../jsdocDeprecated_suggestion22_test.go | 4 +- .../tests/jsdocDeprecated_suggestion2_test.go | 6 +- .../tests/jsdocDeprecated_suggestion3_test.go | 6 +- .../tests/jsdocDeprecated_suggestion4_test.go | 6 +- .../tests/jsdocDeprecated_suggestion5_test.go | 4 +- .../tests/jsdocDeprecated_suggestion6_test.go | 6 +- .../tests/jsdocDeprecated_suggestion7_test.go | 4 +- .../tests/jsdocDeprecated_suggestion8_test.go | 4 +- .../tests/jsdocDeprecated_suggestion9_test.go | 4 +- .../tests/jsdocExtendsTagCompletion_test.go | 6 +- .../jsdocImplementsTagCompletion_test.go | 6 +- .../tests/jsdocImportTagCompletion1_test.go | 6 +- .../fourslash/tests/jsdocLink1_test.go | 4 +- .../fourslash/tests/jsdocLink2_test.go | 4 +- .../fourslash/tests/jsdocLink3_test.go | 4 +- .../fourslash/tests/jsdocLink4_test.go | 4 +- .../fourslash/tests/jsdocLink5_test.go | 4 +- .../fourslash/tests/jsdocLink6_test.go | 4 +- .../jsdocLink_findAllReferences1_test.go | 4 +- .../fourslash/tests/jsdocLink_rename1_test.go | 4 +- .../tests/jsdocNullableUnion_test.go | 6 +- .../tests/jsdocOnInheritedMembers1_test.go | 4 +- .../tests/jsdocOnInheritedMembers2_test.go | 4 +- .../tests/jsdocOverloadTagCompletion_test.go | 6 +- .../jsdocParamTagSpecialKeywords_test.go | 6 +- .../tests/jsdocParam_suggestion1_test.go | 4 +- .../jsdocParameterNameCompletion_test.go | 6 +- .../tests/jsdocPropTagCompletion_test.go | 6 +- .../tests/jsdocPropertyTagCompletion_test.go | 6 +- .../fourslash/tests/jsdocReturnsTagVS_test.go | 6 +- .../fourslash/tests/jsdocReturnsTag_test.go | 4 +- .../jsdocSatisfiesTagCompletion1_test.go | 6 +- .../jsdocSatisfiesTagCompletion2_test.go | 6 +- ...jsdocSatisfiesTagFindAllReferences_test.go | 4 +- .../tests/jsdocSatisfiesTagRename_test.go | 4 +- .../tests/jsdocSnippetCompletion_test.go | 10 +- .../jsdocTemplatePrototypeCompletions_test.go | 6 +- .../tests/jsdocTemplateTagCompletion_test.go | 6 +- .../tests/jsdocThrowsTagCompletion_test.go | 6 +- .../jsdocThrowsTag_findAllReferences_test.go | 4 +- .../tests/jsdocThrowsTag_rename_test.go | 4 +- .../fourslash/tests/jsdocTypedefTag1_test.go | 6 +- .../fourslash/tests/jsdocTypedefTag2_test.go | 6 +- .../jsdocTypedefTagGoToDefinition_test.go | 4 +- .../tests/jsdocTypedefTagNamespace_test.go | 10 +- .../tests/jsdocTypedefTagNavigateTo_test.go | 4 +- .../tests/jsdocTypedefTagRename01_test.go | 6 +- .../tests/jsdocTypedefTagRename02_test.go | 6 +- .../tests/jsdocTypedefTagRename03_test.go | 6 +- .../tests/jsdocTypedefTagRename04_test.go | 4 +- .../jsdocTypedefTagSemanticMeaning0_test.go | 4 +- .../jsdocTypedefTagSemanticMeaning1_test.go | 4 +- .../tests/jsdocTypedefTagServices_test.go | 6 +- ...TypedefTagTypeExpressionCompletion_test.go | 10 +- .../fourslash/tests/jsdocTypedefTag_test.go | 6 +- .../tests/jsxAriaLikeCompletions_test.go | 10 +- .../jsxAttributeCompletionStyleAuto_test.go | 12 +- .../jsxAttributeCompletionStyleBraces_test.go | 12 +- ...jsxAttributeCompletionStyleDefault_test.go | 10 +- ...xAttributeCompletionStyleNoSnippet_test.go | 12 +- .../jsxAttributeCompletionStyleNone_test.go | 12 +- ...buteSnippetCompletionAfterTypeArgs_test.go | 12 +- ...sxAttributeSnippetCompletionClosed_test.go | 12 +- ...AttributeSnippetCompletionUnclosed_test.go | 12 +- .../tests/jsxElementExtendsNoCrash1_test.go | 4 +- .../tests/jsxElementExtendsNoCrash2_test.go | 4 +- .../tests/jsxElementExtendsNoCrash3_test.go | 4 +- ...jsxElementMissingOpeningTagNoCrash_test.go | 4 +- ...eferencesOnRuntimeImportWithPaths1_test.go | 4 +- .../tests/jsxGenericQuickInfo_test.go | 4 +- .../tests/jsxQualifiedTagCompletion_test.go | 6 +- .../tests/jsxSpreadReference_test.go | 4 +- .../tests/jsxTagNameCompletionClosed_test.go | 10 +- .../jsxTagNameCompletionUnclosed_test.go | 10 +- ...agNameCompletionUnderElementClosed_test.go | 10 +- ...NameCompletionUnderElementUnclosed_test.go | 10 +- ...mpletionWithExistingJsxInitializer_test.go | 10 +- ...metershasInstantiatedSignatureHelp_test.go | 4 +- .../tests/keywordShadowsAutoImport_test.go | 16 +-- .../fourslash/tests/lambdaThisMembers_test.go | 6 +- .../letQuickInfoAndCompletionList_test.go | 8 +- .../tests/linkedEditingJsxTag10_test.go | 4 +- .../tests/linkedEditingJsxTag11_test.go | 4 +- .../tests/linkedEditingJsxTag12_test.go | 6 +- .../tests/linkedEditingJsxTag1_test.go | 6 +- .../tests/linkedEditingJsxTag2_test.go | 6 +- .../tests/linkedEditingJsxTag3_test.go | 6 +- .../tests/linkedEditingJsxTag4_test.go | 6 +- .../tests/linkedEditingJsxTag5_test.go | 6 +- .../tests/linkedEditingJsxTag6_test.go | 6 +- .../tests/linkedEditingJsxTag7_test.go | 6 +- .../tests/linkedEditingJsxTag8_test.go | 6 +- .../tests/linkedEditingJsxTag9_test.go | 6 +- .../fourslash/tests/localFunction_test.go | 4 +- .../tests/localGetReferences_test.go | 4 +- .../memberCompletionFromFunctionCall_test.go | 6 +- ...emberCompletionOnRightSideOfImport_test.go | 4 +- .../memberCompletionOnTypeParameters2_test.go | 6 +- .../memberCompletionOnTypeParameters_test.go | 8 +- .../tests/memberConstructorEdits_test.go | 4 +- .../tests/memberListAfterDoubleDot_test.go | 4 +- .../tests/memberListAfterSingleDot_test.go | 4 +- .../tests/memberListErrorRecovery_test.go | 10 +- .../tests/memberListInFunctionCall2_test.go | 8 +- .../tests/memberListInFunctionCall_test.go | 6 +- .../tests/memberListInReopenedEnum_test.go | 8 +- .../tests/memberListInWithBlock2_test.go | 4 +- .../tests/memberListInWithBlock3_test.go | 6 +- .../tests/memberListInWithBlock_test.go | 6 +- .../memberListInsideObjectLiterals_test.go | 8 +- .../fourslash/tests/memberListOfClass_test.go | 8 +- ...memberListOfEnumFromExternalModule_test.go | 6 +- .../tests/memberListOfEnumInModule_test.go | 6 +- .../tests/memberListOfExportedClass_test.go | 8 +- ...erListOfModuleAfterInvalidCharater_test.go | 8 +- .../memberListOfModuleBeforeKeyword_test.go | 6 +- .../tests/memberListOfModule_test.go | 6 +- .../memberListOfVarInArrowExpression_test.go | 8 +- .../tests/memberListOnConstructorType_test.go | 6 +- .../tests/memberListOnContextualThis_test.go | 8 +- .../tests/memberListOnExplicitThis_test.go | 8 +- .../memberListOnFunctionParameter_test.go | 6 +- ...emberListOnThisInClassWithPrivates_test.go | 8 +- .../tests/memberOverloadEdits_test.go | 4 +- .../fourslash/tests/memberlistOnDDot_test.go | 4 +- .../missingMethodAfterEditAfterImport_test.go | 4 +- .../fourslash/tests/moduleEnumModule_test.go | 4 +- .../tests/moduleMembersOfGenericType_test.go | 8 +- .../tests/moduleNodeNextAutoImport1_test.go | 4 +- .../tests/moduleNodeNextAutoImport2_test.go | 4 +- .../tests/moduleNodeNextAutoImport3_test.go | 4 +- ...oduleReexportedIntoGlobalQuickInfo_test.go | 4 +- .../tests/multiModuleClodule_test.go | 10 +- .../tests/multiModuleFundule_test.go | 6 +- .../multilineCommentBeforeOpenBrace_test.go | 4 +- .../fourslash/tests/navbar01_test.go | 4 +- .../tests/navbarNestedCommonJsExports_test.go | 4 +- .../fourslash/tests/navbar_const_test.go | 4 +- .../navbar_contains-no-duplicates_test.go | 4 +- .../tests/navbar_exportDefault_test.go | 4 +- .../fourslash/tests/navbar_let_test.go | 4 +- .../fourslash/tests/navigateItemsLet_test.go | 6 +- .../fourslash/tests/navigateToImport_test.go | 6 +- .../tests/navigateToSymbolIterator_test.go | 6 +- ...nymousClassAndFunctionExpressions2_test.go | 4 +- ...nymousClassAndFunctionExpressions3_test.go | 4 +- ...onymousClassAndFunctionExpressions_test.go | 4 +- .../navigationBarAssignmentTypes_test.go | 4 +- .../navigationBarClassStaticBlock_test.go | 4 +- .../navigationBarComputedPropertyName_test.go | 4 +- ...ionIndirectlyInVariableDeclaration_test.go | 4 +- ...BarFunctionLikePropertyAssignments_test.go | 4 +- .../navigationBarFunctionPrototype2_test.go | 4 +- .../navigationBarFunctionPrototype3_test.go | 4 +- .../navigationBarFunctionPrototype4_test.go | 4 +- ...vigationBarFunctionPrototypeBroken_test.go | 4 +- ...tionBarFunctionPrototypeInterlaced_test.go | 4 +- ...vigationBarFunctionPrototypeNested_test.go | 4 +- .../navigationBarFunctionPrototype_test.go | 4 +- .../navigationBarGetterAndSetter_test.go | 4 +- .../tests/navigationBarImports_test.go | 4 +- .../navigationBarInitializerSpans_test.go | 4 +- ...rItemsBindingPatternsInConstructor_test.go | 4 +- .../navigationBarItemsBindingPatterns_test.go | 4 +- .../tests/navigationBarItemsClass1_test.go | 4 +- .../tests/navigationBarItemsClass2_test.go | 4 +- .../tests/navigationBarItemsClass3_test.go | 4 +- .../tests/navigationBarItemsClass4_test.go | 4 +- .../tests/navigationBarItemsClass5_test.go | 4 +- .../tests/navigationBarItemsClass6_test.go | 4 +- .../navigationBarItemsComputedNames_test.go | 4 +- ...avigationBarItemsEmptyConstructors_test.go | 4 +- .../tests/navigationBarItemsExports_test.go | 4 +- ...vigationBarItemsFunctionProperties_test.go | 4 +- ...navigationBarItemsFunctionsBroken2_test.go | 4 +- .../navigationBarItemsFunctionsBroken_test.go | 4 +- .../tests/navigationBarItemsFunctions_test.go | 4 +- .../tests/navigationBarItemsImports_test.go | 4 +- ...rItemsInsideMethodsAndConstructors_test.go | 4 +- .../tests/navigationBarItemsItems2_test.go | 4 +- ...ationBarItemsItemsExternalModules2_test.go | 4 +- ...ationBarItemsItemsExternalModules3_test.go | 4 +- ...gationBarItemsItemsExternalModules_test.go | 4 +- ...gationBarItemsItemsModuleVariables_test.go | 4 +- .../tests/navigationBarItemsItems_test.go | 4 +- .../navigationBarItemsMissingName1_test.go | 4 +- .../navigationBarItemsMissingName2_test.go | 4 +- .../tests/navigationBarItemsModules1_test.go | 4 +- .../tests/navigationBarItemsModules2_test.go | 4 +- ...arItemsMultilineStringIdentifiers1_test.go | 4 +- ...arItemsMultilineStringIdentifiers2_test.go | 4 +- ...arItemsMultilineStringIdentifiers3_test.go | 4 +- ...igationBarItemsNamedArrowFunctions_test.go | 4 +- ...emsPropertiesDefinedInConstructors_test.go | 4 +- ...nBarItemsStaticAndNonStaticNoMerge_test.go | 4 +- .../tests/navigationBarItemsSymbols1_test.go | 4 +- .../tests/navigationBarItemsSymbols2_test.go | 4 +- .../tests/navigationBarItemsSymbols3_test.go | 4 +- .../tests/navigationBarItemsSymbols4_test.go | 4 +- .../tests/navigationBarItemsTypeAlias_test.go | 4 +- ...avigationBarJsDocCommentWithNoTags_test.go | 4 +- ...navigationBarMerging_grandchildren_test.go | 4 +- .../tests/navigationBarMerging_test.go | 4 +- ...gationBarNamespaceImportWithNoName_test.go | 4 +- .../navigationBarNestedObjectLiterals_test.go | 4 +- .../navigationBarPrivateNameMethod_test.go | 4 +- .../tests/navigationBarPrivateName_test.go | 4 +- .../navigationBarPropertyDeclarations_test.go | 4 +- .../tests/navigationBarVariables_test.go | 4 +- ...avigationBarWellKnownSymbolExpando_test.go | 4 +- .../navigationBarWithLocalVariables_test.go | 4 +- .../tests/navigationItemsExactMatch2_test.go | 6 +- ...ationItemsExportDefaultExpression2_test.go | 4 +- ...gationItemsExportDefaultExpression_test.go | 4 +- ...gationItemsExportEqualsExpression2_test.go | 4 +- ...igationItemsExportEqualsExpression_test.go | 4 +- ...ationItemsInConstructorsExactMatch_test.go | 6 +- .../tests/navigationItemsPrefixMatch2_test.go | 6 +- ...tionItemsSpecialPropertyAssignment_test.go | 6 +- .../tests/navto_emptyPattern_test.go | 6 +- .../fourslash/tests/navto_excludeLib1_test.go | 10 +- .../fourslash/tests/navto_excludeLib2_test.go | 10 +- .../fourslash/tests/navto_excludeLib3_test.go | 6 +- .../fourslash/tests/ngProxy1_test.go | 4 +- .../fourslash/tests/ngProxy2_test.go | 4 +- .../fourslash/tests/ngProxy3_test.go | 4 +- .../fourslash/tests/ngProxy4_test.go | 4 +- ...ListOnCommentsInsideObjectLiterals_test.go | 4 +- ...CurrentOrLaterParametersInDefaults_test.go | 6 +- ...tionsRequestWithinGenericFunction1_test.go | 4 +- ...tionsRequestWithinGenericFunction2_test.go | 4 +- .../tests/noQuickInfoForLabel_test.go | 4 +- .../tests/noQuickInfoInWhitespace_test.go | 4 +- .../tests/noSignatureHelpOnNewKeyword_test.go | 4 +- .../tests/noTypeParameterInLHS_test.go | 4 +- ...leEditStillAllowsResolutionsToWork_test.go | 4 +- .../nodeModulesImportCompletions1_test.go | 6 +- .../tests/nodeNextModuleKindCaching1_test.go | 4 +- .../fourslash/tests/nonExistingImport_test.go | 6 +- .../tests/numericPropertyNames_test.go | 4 +- .../objectLiteralBindingInParameter_test.go | 6 +- .../fourslash/tests/occurrences01_test.go | 6 +- .../fourslash/tests/occurrences02_test.go | 6 +- .../tests/optionalPropertyFormatting_test.go | 4 +- .../fourslash/tests/organizeImports10_test.go | 6 +- .../fourslash/tests/organizeImports11_test.go | 6 +- .../fourslash/tests/organizeImports12_test.go | 6 +- .../fourslash/tests/organizeImports13_test.go | 10 +- .../fourslash/tests/organizeImports14_test.go | 6 +- .../fourslash/tests/organizeImports15_test.go | 6 +- .../fourslash/tests/organizeImports16_test.go | 10 +- .../fourslash/tests/organizeImports17_test.go | 10 +- .../fourslash/tests/organizeImports18_test.go | 6 +- .../fourslash/tests/organizeImports19_test.go | 6 +- .../fourslash/tests/organizeImports1_test.go | 10 +- .../fourslash/tests/organizeImports20_test.go | 6 +- .../fourslash/tests/organizeImports21_test.go | 6 +- .../fourslash/tests/organizeImports22_test.go | 6 +- .../fourslash/tests/organizeImports23_test.go | 6 +- .../fourslash/tests/organizeImports2_test.go | 6 +- .../fourslash/tests/organizeImports3_test.go | 6 +- .../fourslash/tests/organizeImports4_test.go | 6 +- .../fourslash/tests/organizeImports5_test.go | 6 +- .../fourslash/tests/organizeImports6_test.go | 6 +- .../fourslash/tests/organizeImports7_test.go | 6 +- .../fourslash/tests/organizeImports8_test.go | 6 +- .../fourslash/tests/organizeImports9_test.go | 6 +- .../tests/organizeImportsAttributes2_test.go | 6 +- .../tests/organizeImportsAttributes3_test.go | 6 +- .../tests/organizeImportsAttributes4_test.go | 6 +- .../tests/organizeImportsAttributes_test.go | 6 +- ...anizeImportsGroup_CommentInNewline_test.go | 6 +- ...organizeImportsGroup_MultiNewlines_test.go | 6 +- ...rtsGroup_MultilineCommentInNewline_test.go | 6 +- .../organizeImportsGroup_Newline_test.go | 6 +- .../organizeImportsPathsUnicode1_test.go | 10 +- .../organizeImportsPathsUnicode2_test.go | 10 +- .../organizeImportsPathsUnicode3_test.go | 10 +- .../organizeImportsPathsUnicode4_test.go | 10 +- .../tests/organizeImportsReactJsxDev_test.go | 6 +- .../tests/organizeImportsReactJsx_test.go | 6 +- .../tests/organizeImportsShebang_test.go | 6 +- .../tests/organizeImportsType10_test.go | 10 +- .../tests/organizeImportsType11_test.go | 6 +- .../tests/organizeImportsType1_test.go | 8 +- .../tests/organizeImportsType2_test.go | 8 +- .../tests/organizeImportsType3_test.go | 10 +- .../tests/organizeImportsType4_test.go | 10 +- .../tests/organizeImportsType5_test.go | 10 +- .../tests/organizeImportsType6_test.go | 10 +- .../tests/organizeImportsType7_test.go | 10 +- .../tests/organizeImportsType8_test.go | 10 +- .../tests/organizeImportsType9_test.go | 10 +- .../tests/organizeImportsUnicode1_test.go | 10 +- .../tests/organizeImportsUnicode2_test.go | 10 +- .../tests/organizeImportsUnicode3_test.go | 10 +- .../tests/organizeImportsUnicode4_test.go | 10 +- ...rganizeImportsWithTraceResolution1_test.go | 6 +- .../organizeImports_coalesceExports_test.go | 8 +- .../organizeImports_coalesceImports_test.go | 8 +- ...ts_dtsUnusedImportWithAugmentation_test.go | 6 +- ...ganizeImports_exportLeadingComment_test.go | 6 +- .../tests/organizeImports_removeOnly_test.go | 6 +- ...ts_removeUnused_preservesMultiline_test.go | 8 +- ...ganizeImports_sortModuleSpecifiers_test.go | 8 +- ...rganizeImports_typeOrderSameModule_test.go | 6 +- ...pansBlockCommentsWithoutStatements_test.go | 4 +- ...ailingBlockCommentsAfterStatements_test.go | 4 +- ...ForNonCompleteInterfaceDeclaration_test.go | 4 +- .../outliningHintSpansForFunction_test.go | 4 +- .../tests/outliningSpansForArguments_test.go | 4 +- ...outliningSpansForArrowFunctionBody_test.go | 4 +- .../tests/outliningSpansForFunction_test.go | 4 +- ...gSpansForImportAndExportAttributes_test.go | 4 +- .../outliningSpansForImportTagJSDoc_test.go | 4 +- ...outliningSpansForImportsAndExports_test.go | 4 +- ...ingSpansForParenthesizedExpression_test.go | 4 +- .../tests/outliningSpansSwitchCases_test.go | 4 +- .../tests/overloadObjectLiteralCrash_test.go | 4 +- .../overloadOnConstCallSignature_test.go | 4 +- .../fourslash/tests/overloadQuickInfo_test.go | 4 +- .../packageJsonImportsFailedLookups_test.go | 4 +- .../tests/parameterWithDestructuring_test.go | 4 +- .../parameterWithNestedDestructuring_test.go | 4 +- .../tests/parameterlessSetter_test.go | 4 +- .../parserCorruptionAfterMapInClass_test.go | 6 +- ...ionPropertyCacheInconsistentErrors_test.go | 4 +- .../tests/pasteLambdaOverModule_test.go | 4 +- .../fourslash/tests/paste_test.go | 4 +- ...sAllowModuleAugmentationExtensions_test.go | 6 +- .../pathCompletionsAllowTsExtensions_test.go | 8 +- ...eJsonExportsBundlerNoNodeCondition_test.go | 8 +- ...PackageJsonExportsCustomConditions_test.go | 8 +- ...etionsPackageJsonExportsWildcard10_test.go | 8 +- ...etionsPackageJsonExportsWildcard11_test.go | 8 +- ...etionsPackageJsonExportsWildcard12_test.go | 8 +- ...letionsPackageJsonExportsWildcard1_test.go | 8 +- ...letionsPackageJsonExportsWildcard2_test.go | 8 +- ...letionsPackageJsonExportsWildcard3_test.go | 8 +- ...letionsPackageJsonExportsWildcard4_test.go | 8 +- ...letionsPackageJsonExportsWildcard5_test.go | 8 +- ...letionsPackageJsonExportsWildcard6_test.go | 8 +- ...letionsPackageJsonExportsWildcard7_test.go | 8 +- ...letionsPackageJsonExportsWildcard8_test.go | 8 +- ...letionsPackageJsonExportsWildcard9_test.go | 8 +- ...eJsonImportsBundlerNoNodeCondition_test.go | 8 +- ...PackageJsonImportsCustomConditions_test.go | 8 +- ...onImportsIgnoreMatchingNodeModule1_test.go | 6 +- ...onImportsIgnoreMatchingNodeModule2_test.go | 6 +- ...geJsonImportsOnlyFromClosestScope1_test.go | 6 +- ...ckageJsonImportsSrcNoDistWildcard1_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard2_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard3_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard4_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard5_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard6_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard7_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard8_test.go | 8 +- ...ckageJsonImportsSrcNoDistWildcard9_test.go | 8 +- ...etionsPackageJsonImportsWildcard10_test.go | 8 +- ...etionsPackageJsonImportsWildcard11_test.go | 8 +- ...etionsPackageJsonImportsWildcard12_test.go | 8 +- ...letionsPackageJsonImportsWildcard1_test.go | 8 +- ...letionsPackageJsonImportsWildcard2_test.go | 8 +- ...letionsPackageJsonImportsWildcard3_test.go | 8 +- ...letionsPackageJsonImportsWildcard4_test.go | 8 +- ...letionsPackageJsonImportsWildcard5_test.go | 8 +- ...letionsPackageJsonImportsWildcard6_test.go | 8 +- ...letionsPackageJsonImportsWildcard7_test.go | 8 +- ...letionsPackageJsonImportsWildcard8_test.go | 8 +- ...letionsPackageJsonImportsWildcard9_test.go | 8 +- .../tests/pathCompletionsPartialPath_test.go | 6 +- .../pathCompletionsTypesVersionsLocal_test.go | 6 +- ...hCompletionsTypesVersionsWildcard1_test.go | 6 +- ...hCompletionsTypesVersionsWildcard2_test.go | 6 +- ...hCompletionsTypesVersionsWildcard3_test.go | 6 +- ...hCompletionsTypesVersionsWildcard4_test.go | 6 +- ...hCompletionsTypesVersionsWildcard5_test.go | 6 +- ...hCompletionsTypesVersionsWildcard6_test.go | 6 +- .../privatePropertyOfUndefinedThis_test.go | 4 +- .../tests/processInvalidSyntax1_test.go | 4 +- .../fourslash/tests/promiseTyping1_test.go | 4 +- .../fourslash/tests/promiseTyping2_test.go | 4 +- .../propertyDuplicateIdentifierError_test.go | 4 +- .../protoPropertyInObjectLiteral_test.go | 8 +- .../protoVarInContextualObjectLiteral_test.go | 8 +- ...sibleWithOuterScopeUnderscoreProto_test.go | 8 +- .../fourslash/tests/prototypeProperty_test.go | 8 +- .../fourslash/tests/publicBreak_test.go | 4 +- ...aration-with-variable-entity-names_test.go | 8 +- .../tests/qualifyModuleTypeNames_test.go | 4 +- .../fourslash/tests/quickInfoAliasVS_test.go | 6 +- .../fourslash/tests/quickInfoAlias_test.go | 4 +- .../tests/quickInfoAmbientModule_test.go | 4 +- ...odeNotReusedWhenTypeNotEquivalent1_test.go | 4 +- .../quickInfoAssignToExistingClass_test.go | 4 +- ...foAtPropWithAmbientDeclarationInJs_test.go | 4 +- ...kInfoBindingPatternInJsdocNoCrash1_test.go | 4 +- .../tests/quickInfoCallProperty_test.go | 4 +- .../tests/quickInfoCanBeTruncated_test.go | 4 +- .../fourslash/tests/quickInfoCatch_test.go | 4 +- ...nfoCircularInstantiationExpression_test.go | 4 +- .../tests/quickInfoClassKeyword_test.go | 4 +- ...kInfoCloduleWithRecursiveReference_test.go | 4 +- .../quickInfoCommentsClassMembers_test.go | 4 +- .../tests/quickInfoCommentsClass_test.go | 4 +- .../quickInfoCommentsCommentParsing_test.go | 4 +- ...kInfoCommentsFunctionDeclarationVS_test.go | 6 +- ...ickInfoCommentsFunctionDeclaration_test.go | 4 +- ...uickInfoCommentsFunctionExpression_test.go | 4 +- .../tests/quickInfoConstAssertion_test.go | 4 +- ...ickInfoContextualObjectMethodJSDoc_test.go | 4 +- .../tests/quickInfoContextualTyping_test.go | 4 +- ...OptionalParameterFromIntersection1_test.go | 4 +- .../quickInfoDefaultTypeParameter1_test.go | 4 +- .../quickInfoDestructuredBinding_test.go | 4 +- ...isplayPartsArrowFunctionExpression_test.go | 4 +- ...uickInfoDisplayPartsClassAccessors_test.go | 4 +- ...InfoDisplayPartsClassAutoAccessors_test.go | 4 +- ...ckInfoDisplayPartsClassConstructor_test.go | 4 +- ...oDisplayPartsClassDefaultAnonymous_test.go | 4 +- ...kInfoDisplayPartsClassDefaultNamed_test.go | 4 +- ...ickInfoDisplayPartsClassIncomplete_test.go | 4 +- ...quickInfoDisplayPartsClassMethodVS_test.go | 6 +- .../quickInfoDisplayPartsClassMethod_test.go | 4 +- ...ickInfoDisplayPartsClassPropertyVS_test.go | 6 +- ...quickInfoDisplayPartsClassProperty_test.go | 4 +- .../tests/quickInfoDisplayPartsClass_test.go | 4 +- .../tests/quickInfoDisplayPartsConst_test.go | 4 +- .../tests/quickInfoDisplayPartsEnum1_test.go | 4 +- .../tests/quickInfoDisplayPartsEnum2_test.go | 4 +- .../tests/quickInfoDisplayPartsEnum3_test.go | 4 +- .../tests/quickInfoDisplayPartsEnum4_test.go | 4 +- ...nfoDisplayPartsExternalModuleAlias_test.go | 4 +- ...ickInfoDisplayPartsExternalModules_test.go | 4 +- ...InfoDisplayPartsFunctionExpression_test.go | 4 +- ...InfoDisplayPartsFunctionIncomplete_test.go | 4 +- .../quickInfoDisplayPartsFunctionVS_test.go | 6 +- .../quickInfoDisplayPartsFunction_test.go | 4 +- .../tests/quickInfoDisplayPartsIife_test.go | 4 +- ...ckInfoDisplayPartsInterfaceMembers_test.go | 4 +- .../quickInfoDisplayPartsInterface_test.go | 4 +- ...nfoDisplayPartsInternalModuleAlias_test.go | 4 +- .../tests/quickInfoDisplayPartsLet_test.go | 4 +- ...InfoDisplayPartsLiteralLikeNames01_test.go | 4 +- ...quickInfoDisplayPartsLocalFunction_test.go | 4 +- .../quickInfoDisplayPartsModules_test.go | 4 +- .../quickInfoDisplayPartsParameters_test.go | 4 +- .../quickInfoDisplayPartsTypeAlias_test.go | 4 +- ...foDisplayPartsTypeParameterInClass_test.go | 4 +- ...ParameterInFunctionLikeInTypeAlias_test.go | 4 +- ...isplayPartsTypeParameterInFunction_test.go | 4 +- ...splayPartsTypeParameterInInterface_test.go | 4 +- ...splayPartsTypeParameterInTypeAlias_test.go | 4 +- .../tests/quickInfoDisplayPartsUsing_test.go | 4 +- ...foDisplayPartsVarWithStringTypes01_test.go | 4 +- .../tests/quickInfoDisplayPartsVar_test.go | 4 +- .../quickInfoElementAccessDeclaration_test.go | 4 +- ...foEnumMembersAcceptNonAsciiStrings_test.go | 4 +- ...ExportAssignmentOfGenericInterface_test.go | 4 +- .../tests/quickInfoExtendArray_test.go | 4 +- .../tests/quickInfoForAliasedGeneric_test.go | 4 +- ...oForArgumentsPropertyNameInJsMode1_test.go | 4 +- ...oForArgumentsPropertyNameInJsMode2_test.go | 4 +- .../tests/quickInfoForConstAssertions_test.go | 4 +- .../quickInfoForConstDeclaration_test.go | 4 +- .../quickInfoForConstTypeReference_test.go | 4 +- ...uallyTypedArrowFunctionInSuperCall_test.go | 4 +- ...allyTypedFunctionInReturnStatement_test.go | 4 +- .../quickInfoForContextuallyTypedIife_test.go | 4 +- ...InfoForContextuallyTypedParameters_test.go | 4 +- .../tests/quickInfoForDecorators_test.go | 4 +- ...rDerivedGenericTypeWithConstructor_test.go | 4 +- ...rDestructuringShorthandInitializer_test.go | 4 +- .../quickInfoForFunctionDeclaration_test.go | 4 +- .../quickInfoForGenericConstraints1_test.go | 4 +- ...quickInfoForGenericPrototypeMember_test.go | 4 +- ...ForGenericTaggedTemplateExpression_test.go | 4 +- .../tests/quickInfoForGetterAndSetter_test.go | 4 +- .../fourslash/tests/quickInfoForIn_test.go | 4 +- ...InfoForIndexerResultWithConstraint_test.go | 4 +- .../tests/quickInfoForJSDocCodefence_test.go | 4 +- .../tests/quickInfoForJSDocUnknownTag_test.go | 4 +- .../quickInfoForJSDocWithHttpLinks_test.go | 4 +- ...nfoForJSDocWithUnresolvedHttpLinks_test.go | 4 +- .../quickInfoForNamedTupleMember_test.go | 4 +- ...kInfoForObjectBindingElementName01_test.go | 4 +- ...kInfoForObjectBindingElementName02_test.go | 4 +- ...kInfoForObjectBindingElementName03_test.go | 4 +- ...kInfoForObjectBindingElementName04_test.go | 4 +- ...kInfoForObjectBindingElementName05_test.go | 4 +- ...kInfoForObjectBindingElementName06_test.go | 4 +- ...ObjectBindingElementPropertyName01_test.go | 4 +- ...ObjectBindingElementPropertyName02_test.go | 4 +- ...ObjectBindingElementPropertyName04_test.go | 4 +- .../quickInfoForOverloadOnConst1_test.go | 4 +- .../tests/quickInfoForRequire_test.go | 4 +- .../quickInfoForShorthandProperty_test.go | 4 +- .../quickInfoForSyntaxErrorNoError_test.go | 4 +- ...ckInfoForTypeParameterInTypeAlias1_test.go | 4 +- ...ckInfoForTypeParameterInTypeAlias2_test.go | 4 +- .../tests/quickInfoForTypeofParameter_test.go | 4 +- .../tests/quickInfoForUMDModuleAlias_test.go | 4 +- .../tests/quickInfoFromContextualType_test.go | 4 +- .../quickInfoFromContextualUnionType1_test.go | 4 +- .../quickInfoFromContextualUnionType2_test.go | 4 +- .../quickInfoFromContextualUnionType3_test.go | 4 +- .../quickInfoFromEmptyBlockComment_test.go | 4 +- .../tests/quickInfoFunctionCheckType_test.go | 4 +- .../tests/quickInfoFunctionKeyword_test.go | 4 +- .../fourslash/tests/quickInfoFunction_test.go | 4 +- .../quickInfoGenericCombinators2_test.go | 4 +- .../quickInfoGenericPropertyAccessor_test.go | 4 +- ...kInfoGenericTypeArgumentInference1_test.go | 4 +- .../tests/quickInfoGenericTypePath_test.go | 4 +- .../fourslash/tests/quickInfoGenerics_test.go | 4 +- .../tests/quickInfoGetterSetter_test.go | 4 +- .../tests/quickInfoImportMeta_test.go | 4 +- .../quickInfoImportNonunicodePath_test.go | 4 +- .../quickInfoInFunctionTypeReference2_test.go | 4 +- .../quickInfoInFunctionTypeReference_test.go | 4 +- .../quickInfoInInvalidIndexSignature_test.go | 4 +- .../tests/quickInfoInJsdocInTsFile1_test.go | 4 +- .../tests/quickInfoInObjectLiteral_test.go | 4 +- .../tests/quickInfoInOptionalChain_test.go | 4 +- .../tests/quickInfoInWithBlock_test.go | 4 +- .../quickInfoIndexSignatureMappedType_test.go | 6 +- .../tests/quickInfoInheritDoc2_test.go | 4 +- .../tests/quickInfoInheritDoc3_test.go | 4 +- .../tests/quickInfoInheritDoc4_test.go | 4 +- .../tests/quickInfoInheritDoc5_test.go | 4 +- .../tests/quickInfoInheritDoc6_test.go | 4 +- .../tests/quickInfoInheritDoc_test.go | 4 +- .../tests/quickInfoInheritedLinkTag_test.go | 4 +- .../tests/quickInfoJSDocAtBeforeSpace_test.go | 4 +- .../tests/quickInfoJSDocBackticks_test.go | 4 +- .../quickInfoJSDocCodefenceAtSign_test.go | 4 +- .../tests/quickInfoJSDocFunctionNew_test.go | 4 +- .../tests/quickInfoJSDocFunctionThis_test.go | 4 +- .../tests/quickInfoJSDocLinkBackticks_test.go | 4 +- ...oJSDocParamWithInvalidTagInComment_test.go | 4 +- ...aramWithTrailingAtBeforeCommentEnd_test.go | 8 +- .../tests/quickInfoJSDocTags_test.go | 4 +- ...JSDocTypedefPropertyWithInvalidTag_test.go | 4 +- .../fourslash/tests/quickInfoJSExport_test.go | 4 +- .../tests/quickInfoJsDocAlias_test.go | 4 +- ...quickInfoJsDocGetterSetterNoCrash1_test.go | 4 +- .../tests/quickInfoJsDocGetterSetter_test.go | 4 +- .../tests/quickInfoJsDocInheritage_test.go | 4 +- ...DocNonDiscriminatedUnionSharedProp_test.go | 4 +- .../tests/quickInfoJsDocTags10_test.go | 4 +- .../tests/quickInfoJsDocTags11_test.go | 4 +- .../tests/quickInfoJsDocTags12_test.go | 4 +- .../tests/quickInfoJsDocTags13VS_test.go | 6 +- .../tests/quickInfoJsDocTags13_test.go | 4 +- .../tests/quickInfoJsDocTags14_test.go | 4 +- .../tests/quickInfoJsDocTags15_test.go | 4 +- .../tests/quickInfoJsDocTags16_test.go | 4 +- .../tests/quickInfoJsDocTags1_test.go | 4 +- .../tests/quickInfoJsDocTags2_test.go | 4 +- .../tests/quickInfoJsDocTags3_test.go | 4 +- .../tests/quickInfoJsDocTags4_test.go | 4 +- .../tests/quickInfoJsDocTags5_test.go | 4 +- .../tests/quickInfoJsDocTags6_test.go | 4 +- .../tests/quickInfoJsDocTags7_test.go | 4 +- .../tests/quickInfoJsDocTags8_test.go | 4 +- .../tests/quickInfoJsDocTags9_test.go | 4 +- .../tests/quickInfoJsDocTagsCallback_test.go | 4 +- ...ickInfoJsDocTagsFunctionOverload01_test.go | 4 +- ...ickInfoJsDocTagsFunctionOverload03_test.go | 4 +- ...ickInfoJsDocTagsFunctionOverload05_test.go | 4 +- .../tests/quickInfoJsDocTagsTypedef_test.go | 4 +- .../quickInfoJsDocTextFormatting1VS_test.go | 6 +- .../quickInfoJsDocTextFormatting1_test.go | 4 +- .../tests/quickInfoJsDocThisTag_test.go | 4 +- .../fourslash/tests/quickInfoJsDoc_test.go | 4 +- ...ertyAssignedAfterMethodDeclaration_test.go | 4 +- .../tests/quickInfoJsdocEnum_test.go | 4 +- .../quickInfoJsdocTypedefMissingType_test.go | 4 +- .../quickInfoJsxNamespacedIntrinsic_test.go | 4 +- .../fourslash/tests/quickInfoLink10_test.go | 4 +- .../fourslash/tests/quickInfoLink11_test.go | 4 +- .../fourslash/tests/quickInfoLink2_test.go | 4 +- .../fourslash/tests/quickInfoLink3_test.go | 4 +- .../fourslash/tests/quickInfoLink4_test.go | 4 +- .../fourslash/tests/quickInfoLink5_test.go | 4 +- .../fourslash/tests/quickInfoLink6_test.go | 4 +- .../fourslash/tests/quickInfoLink7_test.go | 4 +- .../fourslash/tests/quickInfoLink8_test.go | 4 +- .../fourslash/tests/quickInfoLink9_test.go | 4 +- .../tests/quickInfoLinkCodePlain_test.go | 4 +- .../tests/quickInfoMappedSpreadTypes_test.go | 4 +- .../tests/quickInfoMappedTypeMethods_test.go | 4 +- ...ckInfoMappedTypeRecursiveInference_test.go | 4 +- .../tests/quickInfoMappedType_test.go | 4 +- .../fourslash/tests/quickInfoMeaning_test.go | 6 +- .../tests/quickInfoMergedAlias_test.go | 4 +- .../tests/quickInfoModuleVariables_test.go | 4 +- .../tests/quickInfoNamedTupleMembers_test.go | 4 +- ...quickInfoNarrowedTypeOfAliasSymbol_test.go | 4 +- ...InfoNestedExportEqualExportDefault_test.go | 4 +- .../tests/quickInfoNestedGenericCalls_test.go | 4 +- .../quickInfoObjectTypeMultiline_test.go | 4 +- .../quickInfoOfGenericTypeAssertions1_test.go | 4 +- ...kInfoOfLablledForStatementIterator_test.go | 4 +- .../quickInfoOfStringPropertyNames1_test.go | 4 +- ...quickInfoOnArgumentsInsideFunction_test.go | 4 +- .../tests/quickInfoOnCatchVariable_test.go | 4 +- .../tests/quickInfoOnCircularTypes_test.go | 4 +- ...quickInfoOnClassMergedWithFunction_test.go | 4 +- .../tests/quickInfoOnClosingJsx_test.go | 4 +- ...oOnConstructorWithGenericParameter_test.go | 4 +- ...nfoOnElementAccessInWriteLocation1_test.go | 4 +- ...nfoOnElementAccessInWriteLocation2_test.go | 4 +- ...nfoOnElementAccessInWriteLocation3_test.go | 4 +- ...nfoOnElementAccessInWriteLocation4_test.go | 4 +- ...nfoOnElementAccessInWriteLocation5_test.go | 4 +- .../tests/quickInfoOnErrorTypes1_test.go | 4 +- ...kePropertyWithSetterDeclarationJs1_test.go | 4 +- ...kePropertyWithSetterDeclarationJs2_test.go | 4 +- ...opertyReturnedFromGenericFunction1_test.go | 4 +- ...opertyReturnedFromGenericFunction2_test.go | 4 +- ...opertyReturnedFromGenericFunction3_test.go | 4 +- .../tests/quickInfoOnGenericClass_test.go | 4 +- ...quickInfoOnGenericWithConstraints1_test.go | 4 +- .../tests/quickInfoOnInternalAliases_test.go | 4 +- ...claredUsingCatchCallIndexSignature_test.go | 4 +- ...UsingTemplateLiteralTypeSignatures_test.go | 4 +- ...ickInfoOnJsxNamespacedNameWithDoc1_test.go | 4 +- .../quickInfoOnJsxNamespacedName_test.go | 4 +- ...rgedInterfacesWithIncrementalEdits_test.go | 4 +- .../tests/quickInfoOnMergedInterfaces_test.go | 4 +- .../tests/quickInfoOnMergedModule_test.go | 4 +- .../quickInfoOnMethodOfImportEquals_test.go | 4 +- .../quickInfoOnNarrowedTypeInModule_test.go | 8 +- .../tests/quickInfoOnNarrowedType_test.go | 8 +- .../tests/quickInfoOnNewKeyword01_test.go | 4 +- ...ckInfoOnObjectLiteralWithAccessors_test.go | 8 +- ...kInfoOnObjectLiteralWithOnlyGetter_test.go | 8 +- ...kInfoOnObjectLiteralWithOnlySetter_test.go | 8 +- .../quickInfoOnParameterProperties_test.go | 4 +- .../quickInfoOnPrivateConstructorCall_test.go | 4 +- ...gIndexSignatureOnInterfaceWithBase_test.go | 4 +- ...foOnPropertyAccessInWriteLocation1_test.go | 4 +- ...foOnPropertyAccessInWriteLocation2_test.go | 4 +- ...foOnPropertyAccessInWriteLocation3_test.go | 4 +- ...foOnPropertyAccessInWriteLocation4_test.go | 4 +- ...foOnPropertyAccessInWriteLocation5_test.go | 4 +- ...uickInfoOnProtectedConstructorCall_test.go | 4 +- .../fourslash/tests/quickInfoOnThis2_test.go | 4 +- .../fourslash/tests/quickInfoOnThis3_test.go | 4 +- .../fourslash/tests/quickInfoOnThis4_test.go | 4 +- .../fourslash/tests/quickInfoOnThis5_test.go | 4 +- .../fourslash/tests/quickInfoOnThis_test.go | 4 +- ...UnResolvedBaseConstructorSignature_test.go | 4 +- .../tests/quickInfoOnUndefined_test.go | 4 +- ...ertiesWithIdenticalJSDocComments01_test.go | 4 +- ...houtExportWithSameNameExportSymbol_test.go | 4 +- .../quickInfoOnVarInArrowExpression_test.go | 4 +- ...ickInfoParameter_skipThisParameter_test.go | 4 +- ...eIdentifierInTypeReferenceNoCrash1_test.go | 4 +- .../tests/quickInfoPropertyTag_test.go | 4 +- .../quickInfoRecursiveObjectLiteral_test.go | 4 +- ...uickInfoRootSymbolJSDocAggregation_test.go | 4 +- ...thodsOnAssignedFunctionExpressions_test.go | 4 +- .../tests/quickInfoSatisfiesTag_test.go | 4 +- ...uickInfoShowsGenericSpecialization_test.go | 4 +- ...gnatureOptionalParameterFromUnion1_test.go | 4 +- ...foSignatureRestParameterFromUnion1_test.go | 4 +- ...foSignatureRestParameterFromUnion2_test.go | 4 +- ...foSignatureRestParameterFromUnion3_test.go | 4 +- ...foSignatureRestParameterFromUnion4_test.go | 4 +- ...uickInfoSignatureWithTrailingComma_test.go | 4 +- ...quickInfoSpecialPropertyAssignment_test.go | 4 +- ...InfoStaticPrototypePropertyOnClass_test.go | 4 +- .../tests/quickInfoTemplateTag_test.go | 4 +- .../tests/quickInfoThrowsTag_test.go | 4 +- ...nfoTypeAliasDefinedInDifferentFile_test.go | 4 +- ...mentInferenceWithMethodWithoutBody_test.go | 4 +- .../tests/quickInfoTypeError_test.go | 4 +- .../quickInfoTypeOfThisInStatics_test.go | 4 +- ...quickInfoTypeOnlyNamespaceAndClass_test.go | 4 +- ...ickInfoTypedGenericPrototypeMember_test.go | 4 +- .../tests/quickInfoTypedefTag_test.go | 4 +- .../tests/quickInfoUnionOfNamespaces_test.go | 4 +- .../quickInfoUnion_discriminated_test.go | 4 +- .../tests/quickInfoUniqueSymbolJsDoc_test.go | 4 +- .../quickInfoUntypedModuleImport_test.go | 4 +- ...indingWithDefaultExportedFunction1_test.go | 4 +- .../tests/quickInfoWidenedTypes_test.go | 4 +- ...estedDestructuredParameterInLambda_test.go | 4 +- ...errorSignatureFillsInTypeParameter_test.go | 4 +- .../tests/quickInfo_notInsideComment_test.go | 4 +- ...nforForSucessiveInferencesIsNotAny_test.go | 4 +- ...eUnreachableTypeUsesRelativeImport_test.go | 4 +- .../fourslash/tests/quickinfo01_test.go | 4 +- ...xpressionTypeNotChangedViaDeletion_test.go | 4 +- ...aceMergeWithClassConstrainedToSelf_test.go | 4 +- .../tests/quickinfoForUnionProperty_test.go | 4 +- .../tests/quickinfoVerbosity1_test.go | 4 +- .../tests/quickinfoVerbosity2_test.go | 4 +- .../tests/quickinfoVerbosity3_test.go | 4 +- .../quickinfoVerbosityAbstractClass_test.go | 4 +- .../tests/quickinfoVerbosityClass1_test.go | 4 +- .../tests/quickinfoVerbosityClass2_test.go | 4 +- ...ckinfoVerbosityClassInterfaceMerge_test.go | 4 +- ...ickinfoVerbosityClassWithMixinBase_test.go | 4 +- .../quickinfoVerbosityConditionalType_test.go | 4 +- .../tests/quickinfoVerbosityConstEnum_test.go | 4 +- ...oVerbosityConstMergedWithNamespace_test.go | 4 +- .../tests/quickinfoVerbosityEmptyEnum_test.go | 4 +- .../tests/quickinfoVerbosityEnum_test.go | 4 +- .../tests/quickinfoVerbosityFunction_test.go | 4 +- .../tests/quickinfoVerbosityImport_test.go | 4 +- ...quickinfoVerbosityIncreaseDecrease_test.go | 4 +- .../quickinfoVerbosityIndexSignature_test.go | 4 +- .../tests/quickinfoVerbosityIndexType_test.go | 4 +- ...uickinfoVerbosityIndexedAccessType_test.go | 4 +- .../quickinfoVerbosityInterface1_test.go | 4 +- .../quickinfoVerbosityInterface2_test.go | 4 +- ...foVerbosityInterfaceMemberOrdering_test.go | 4 +- .../quickinfoVerbosityIntersection1_test.go | 4 +- ...nfoVerbosityJSDocNamespacedTypedef_test.go | 4 +- .../tests/quickinfoVerbosityJs_test.go | 4 +- .../tests/quickinfoVerbosityLibType_test.go | 4 +- .../quickinfoVerbosityMappedType_test.go | 4 +- ...tyNamespaceAnonymousClassHeritage1_test.go | 4 +- ...nfoVerbosityNamespaceClassHeritage_test.go | 4 +- ...nfoVerbosityNamespaceDefaultExport_test.go | 4 +- ...bosityNamespaceErrorClassHeritage1_test.go | 4 +- ...ityNamespaceInterfaceHeritageCrash_test.go | 6 +- ...InterfaceHeritageIntersectionCrash_test.go | 6 +- ...quickinfoVerbosityNamespaceMembers_test.go | 4 +- ...tyNamespaceMergedInterfaceHeritage_test.go | 4 +- ...infoVerbosityNamespacePrivateTypes_test.go | 4 +- ...kinfoVerbosityNamespaceTypeAliases_test.go | 4 +- .../tests/quickinfoVerbosityNamespace_test.go | 4 +- .../quickinfoVerbosityNestedNamespace_test.go | 4 +- ...ickinfoVerbosityNoErrorTruncation1_test.go | 4 +- .../quickinfoVerbosityObjectType1_test.go | 4 +- .../quickinfoVerbosityRecursiveType_test.go | 4 +- ...nfoVerbositySelfReferentialTypeArg_test.go | 4 +- .../tests/quickinfoVerbosityServer_test.go | 4 +- ...ckinfoVerbosityToplevelTruncation1_test.go | 4 +- ...ckinfoVerbosityToplevelTruncation2_test.go | 4 +- .../quickinfoVerbosityTruncation1_test.go | 4 +- .../quickinfoVerbosityTruncation2_test.go | 4 +- .../tests/quickinfoVerbosityTuple_test.go | 4 +- .../quickinfoVerbosityTypeParameter_test.go | 4 +- .../tests/quickinfoVerbosityTypeof_test.go | 4 +- .../tests/quickinfoWrongComment_test.go | 4 +- .../rangeFormatInsideJSDocComment_test.go | 4 +- .../fourslash/tests/reallyLargeFile_test.go | 4 +- .../tests/recursiveClassReference_test.go | 4 +- .../tests/recursiveGenerics2_test.go | 4 +- .../recursiveInternalModuleImport_test.go | 4 +- .../recursiveWrappedTypeParameters1_test.go | 4 +- ...torConvertToEsModule_module_node12_test.go | 4 +- ...rConvertToEsModule_module_nodenext_test.go | 4 +- ...torConvertToEsModule_notAtTopLevel_test.go | 4 +- ...ertToEsModule_notInCommonjsProject_test.go | 4 +- ...enceInParameterPropertyDeclaration_test.go | 4 +- .../fourslash/tests/referenceToClass_test.go | 4 +- .../tests/referenceToEmptyObject_test.go | 4 +- .../fourslash/tests/references01_test.go | 4 +- .../tests/referencesBloomFilters2_test.go | 4 +- .../tests/referencesBloomFilters3_test.go | 4 +- .../tests/referencesBloomFilters_test.go | 4 +- .../tests/referencesForAmbients2_test.go | 4 +- .../tests/referencesForAmbients_test.go | 4 +- .../tests/referencesForClassLocal_test.go | 4 +- ...ClassMembersExtendingAbstractClass_test.go | 4 +- ...rClassMembersExtendingGenericClass_test.go | 4 +- .../tests/referencesForClassMembers_test.go | 4 +- .../tests/referencesForClassParameter_test.go | 4 +- ...tuallyTypedObjectLiteralProperties_test.go | 4 +- ...rContextuallyTypedUnionProperties2_test.go | 4 +- ...orContextuallyTypedUnionProperties_test.go | 4 +- .../referencesForDeclarationKeywords_test.go | 4 +- .../tests/referencesForEnums_test.go | 4 +- .../tests/referencesForExportedValues_test.go | 4 +- .../referencesForExpressionKeywords_test.go | 4 +- .../referencesForExternalModuleNames_test.go | 4 +- .../referencesForFunctionOverloads_test.go | 4 +- .../referencesForFunctionParameter_test.go | 4 +- .../tests/referencesForGlobals2_test.go | 4 +- .../tests/referencesForGlobals3_test.go | 4 +- .../tests/referencesForGlobals4_test.go | 4 +- .../tests/referencesForGlobals5_test.go | 4 +- ...ferencesForGlobalsInExternalModule_test.go | 4 +- .../tests/referencesForGlobals_test.go | 4 +- .../referencesForIllegalAssignment_test.go | 4 +- .../tests/referencesForImports_test.go | 4 +- .../tests/referencesForIndexProperty2_test.go | 4 +- .../tests/referencesForIndexProperty3_test.go | 4 +- .../tests/referencesForIndexProperty_test.go | 4 +- ...referencesForInheritedProperties10_test.go | 4 +- .../referencesForInheritedProperties2_test.go | 4 +- .../referencesForInheritedProperties3_test.go | 4 +- .../referencesForInheritedProperties4_test.go | 4 +- .../referencesForInheritedProperties5_test.go | 4 +- .../referencesForInheritedProperties6_test.go | 4 +- .../referencesForInheritedProperties7_test.go | 4 +- .../referencesForInheritedProperties8_test.go | 4 +- .../referencesForInheritedProperties9_test.go | 4 +- .../referencesForInheritedProperties_test.go | 4 +- .../tests/referencesForLabel2_test.go | 4 +- .../tests/referencesForLabel3_test.go | 4 +- .../tests/referencesForLabel4_test.go | 4 +- .../tests/referencesForLabel5_test.go | 4 +- .../tests/referencesForLabel6_test.go | 4 +- .../tests/referencesForLabel_test.go | 4 +- .../referencesForMergedDeclarations2_test.go | 4 +- .../referencesForMergedDeclarations3_test.go | 4 +- .../referencesForMergedDeclarations4_test.go | 4 +- .../referencesForMergedDeclarations5_test.go | 4 +- .../referencesForMergedDeclarations6_test.go | 4 +- .../referencesForMergedDeclarations7_test.go | 4 +- .../referencesForMergedDeclarations8_test.go | 4 +- .../referencesForMergedDeclarations_test.go | 4 +- .../tests/referencesForModifiers_test.go | 4 +- .../tests/referencesForNoContext_test.go | 4 +- ...ncesForNumericLiteralPropertyNames_test.go | 4 +- ...ferencesForObjectLiteralProperties_test.go | 4 +- .../tests/referencesForOverrides_test.go | 4 +- ...ferencesForPropertiesOfGenericType_test.go | 4 +- .../referencesForStatementKeywords_test.go | 4 +- .../tests/referencesForStatic_test.go | 4 +- ...sForStaticsAndMembersWithSameNames_test.go | 4 +- ...ncesForStringLiteralPropertyNames2_test.go | 4 +- ...ncesForStringLiteralPropertyNames3_test.go | 4 +- ...ncesForStringLiteralPropertyNames4_test.go | 4 +- ...ncesForStringLiteralPropertyNames5_test.go | 4 +- ...ncesForStringLiteralPropertyNames6_test.go | 4 +- ...ncesForStringLiteralPropertyNames7_test.go | 4 +- ...encesForStringLiteralPropertyNames_test.go | 4 +- .../tests/referencesForTypeKeywords_test.go | 4 +- .../referencesForUnionProperties_test.go | 4 +- .../tests/referencesInComment_test.go | 4 +- .../referencesInConfiguredProject_test.go | 4 +- ...cesInEmptyFileWithMultipleProjects_test.go | 4 +- .../tests/referencesInEmptyFile_test.go | 4 +- ...ngLiteralValueWithMultipleProjects_test.go | 4 +- ...cesIsAvailableThroughGlobalNoCrash_test.go | 4 +- ...ncesToNonPropertyNameStringLiteral_test.go | 4 +- .../referencesToStringLiteralValue_test.go | 4 +- .../fourslash/tests/regexDetection_test.go | 4 +- .../tests/regexErrorRecovery_test.go | 4 +- .../fourslash/tests/regexp_test.go | 4 +- .../tests/remoteGetReferences_test.go | 4 +- .../removeDeclareFunctionExports_test.go | 4 +- .../tests/removeDeclareInModule_test.go | 4 +- .../tests/removeDeclareKeyword_test.go | 4 +- .../removeDeclareParamTypeAnnotation_test.go | 4 +- .../tests/removeDuplicateIdentifier_test.go | 4 +- ...oveExportedClassFromReopenedModule_test.go | 4 +- .../removeInterfaceExtendsClause_test.go | 4 +- ...InterfaceUsedAsGenericTypeArgument_test.go | 4 +- ...arameterBetweenCommentAndParameter_test.go | 4 +- ...moveVarFromModuleWithReopenedEnums_test.go | 4 +- .../fourslash/tests/rename01_test.go | 4 +- .../renameAcrossMultipleProjects_test.go | 4 +- .../fourslash/tests/renameAlias2_test.go | 4 +- .../fourslash/tests/renameAlias3_test.go | 4 +- .../tests/renameAliasExternalModule2_test.go | 4 +- .../tests/renameAliasExternalModule3_test.go | 4 +- .../tests/renameAliasExternalModule_test.go | 4 +- .../fourslash/tests/renameAlias_test.go | 4 +- ...eBindingElementInitializerExternal_test.go | 4 +- ...eBindingElementInitializerProperty_test.go | 4 +- .../tests/renameBuiltinTypes_test.go | 4 +- .../tests/renameCommentsAndStrings1_test.go | 4 +- .../tests/renameCommentsAndStrings2_test.go | 4 +- .../tests/renameCommentsAndStrings3_test.go | 4 +- .../tests/renameCommentsAndStrings4_test.go | 4 +- ...renameContextuallyTypedProperties2_test.go | 4 +- .../renameContextuallyTypedProperties_test.go | 4 +- .../fourslash/tests/renameCrossJsTs01_test.go | 4 +- .../tests/renameDeclarationKeywords_test.go | 4 +- .../renameDefaultImportDifferentName_test.go | 4 +- .../tests/renameDefaultImport_test.go | 4 +- .../tests/renameDefaultKeyword_test.go | 4 +- .../tests/renameDefaultLibDontWork_test.go | 4 +- ...nameDestructuringAssignmentInForOf_test.go | 4 +- ...renameDestructuringAssignmentInFor_test.go | 4 +- ...ringAssignmentNestedInArrayLiteral_test.go | 4 +- ...estructuringAssignmentNestedInFor2_test.go | 4 +- ...tructuringAssignmentNestedInForOf2_test.go | 4 +- ...structuringAssignmentNestedInForOf_test.go | 4 +- ...DestructuringAssignmentNestedInFor_test.go | 4 +- .../renameDestructuringAssignment_test.go | 4 +- .../renameDestructuringClassProperty_test.go | 4 +- ...ameDestructuringDeclarationInForOf_test.go | 4 +- ...enameDestructuringDeclarationInFor_test.go | 4 +- ...nameDestructuringFunctionParameter_test.go | 4 +- ...eDestructuringNestedBindingElement_test.go | 4 +- .../fourslash/tests/renameExportCrash_test.go | 4 +- .../tests/renameExportSpecifier2_test.go | 8 +- .../tests/renameExportSpecifier_test.go | 8 +- .../tests/renameFilePackageJson_test.go | 4 +- .../tests/renameForAliasingExport01_test.go | 4 +- .../tests/renameForAliasingExport02_test.go | 4 +- .../tests/renameForDefaultExport01_test.go | 4 +- .../tests/renameForDefaultExport02_test.go | 8 +- .../tests/renameForDefaultExport03_test.go | 8 +- .../tests/renameForDefaultExport04_test.go | 4 +- .../tests/renameForDefaultExport05_test.go | 4 +- .../tests/renameForDefaultExport06_test.go | 4 +- .../tests/renameForDefaultExport07_test.go | 4 +- .../tests/renameForDefaultExport08_test.go | 4 +- .../tests/renameForDefaultExport09_test.go | 4 +- .../tests/renameForStringLiteral_test.go | 4 +- .../tests/renameFromNodeModulesDep1_test.go | 8 +- .../tests/renameFromNodeModulesDep2_test.go | 8 +- .../tests/renameFromNodeModulesDep3_test.go | 8 +- .../tests/renameFromNodeModulesDep4_test.go | 8 +- .../tests/renameFunctionParameter1_test.go | 4 +- .../tests/renameFunctionParameter2_test.go | 4 +- .../renameImportAndExportInDiffFiles_test.go | 4 +- .../tests/renameImportAndExport_test.go | 4 +- .../tests/renameImportAndShorthand_test.go | 4 +- .../renameImportNamespaceAndShorthand_test.go | 4 +- .../tests/renameImportOfExportEquals2_test.go | 4 +- .../tests/renameImportOfExportEquals_test.go | 4 +- .../tests/renameImportOfReExport2_test.go | 6 +- .../tests/renameImportOfReExport_test.go | 4 +- .../tests/renameImportRequire_test.go | 4 +- ...mportSpecifierNoResourceOperations_test.go | 6 +- .../renameImportSpecifierPropertyName_test.go | 4 +- .../tests/renameInConfiguredProject_test.go | 6 +- .../renameInfoForFunctionExpression01_test.go | 4 +- .../tests/renameInheritedProperties1_test.go | 4 +- .../tests/renameInheritedProperties2_test.go | 4 +- .../tests/renameInheritedProperties3_test.go | 4 +- .../tests/renameInheritedProperties4_test.go | 4 +- .../tests/renameInheritedProperties5_test.go | 4 +- .../tests/renameInheritedProperties6_test.go | 4 +- .../tests/renameInheritedProperties7_test.go | 4 +- .../tests/renameInheritedProperties8_test.go | 4 +- .../tests/renameJSDocNamepath_test.go | 4 +- .../tests/renameJsDocImportTag_test.go | 4 +- .../tests/renameJsDocTypeLiteral_test.go | 4 +- .../fourslash/tests/renameJsExports01_test.go | 4 +- .../fourslash/tests/renameJsExports02_test.go | 4 +- .../fourslash/tests/renameJsExports03_test.go | 4 +- ...enameJsOverloadedFunctionParameter_test.go | 4 +- .../tests/renameJsPropertyAssignment2_test.go | 4 +- .../tests/renameJsPropertyAssignment3_test.go | 4 +- .../tests/renameJsPropertyAssignment4_test.go | 4 +- .../tests/renameJsPropertyAssignment_test.go | 4 +- .../tests/renameJsPrototypeProperty01_test.go | 4 +- .../tests/renameJsPrototypeProperty02_test.go | 4 +- .../renameJsSpecialAssignmentRhs1_test.go | 4 +- .../renameJsSpecialAssignmentRhs2_test.go | 4 +- .../tests/renameJsThisProperty01_test.go | 4 +- .../tests/renameJsThisProperty03_test.go | 4 +- .../tests/renameJsThisProperty05_test.go | 4 +- .../tests/renameJsThisProperty06_test.go | 4 +- .../fourslash/tests/renameLabel1_test.go | 4 +- .../fourslash/tests/renameLabel2_test.go | 4 +- .../fourslash/tests/renameLabel3_test.go | 4 +- .../fourslash/tests/renameLabel4_test.go | 4 +- .../fourslash/tests/renameLabel5_test.go | 4 +- .../fourslash/tests/renameLabel6_test.go | 4 +- ...enameLocationsForClassExpression01_test.go | 4 +- ...meLocationsForFunctionExpression01_test.go | 4 +- ...meLocationsForFunctionExpression02_test.go | 4 +- .../fourslash/tests/renameModifiers_test.go | 4 +- .../renameModuleExportsProperties1_test.go | 8 +- .../renameModuleExportsProperties2_test.go | 4 +- .../renameModuleExportsProperties3_test.go | 8 +- .../fourslash/tests/renameModuleToVar_test.go | 4 +- .../tests/renameNameOnEnumMember_test.go | 4 +- ...ameNamedImportUseAliasesForRenames_test.go | 8 +- .../fourslash/tests/renameNamedImport_test.go | 8 +- .../tests/renameNamespaceImport_test.go | 4 +- .../fourslash/tests/renameNamespace_test.go | 4 +- .../tests/renameNoDefaultLib_test.go | 4 +- .../renameNumericalIndexSingleQuoted_test.go | 6 +- .../tests/renameNumericalIndex_test.go | 4 +- ...ObjectBindingElementPropertyName01_test.go | 4 +- .../renameObjectSpreadAssignment_test.go | 4 +- .../tests/renameObjectSpread_test.go | 4 +- ...enameParameterPropertyDeclaration1_test.go | 4 +- ...enameParameterPropertyDeclaration2_test.go | 4 +- ...enameParameterPropertyDeclaration3_test.go | 4 +- ...enameParameterPropertyDeclaration4_test.go | 4 +- ...enameParameterPropertyDeclaration5_test.go | 4 +- .../tests/renamePrivateAccessor_test.go | 6 +- .../tests/renamePrivateFields1_test.go | 4 +- .../tests/renamePrivateFields_test.go | 4 +- .../tests/renamePrivateMethod_test.go | 6 +- ...ertyAccessExpressionHeritageClause_test.go | 4 +- ...QuotedSingleCharacterPropertyName1_test.go | 4 +- .../tests/renameReExportDefault_test.go | 4 +- .../tests/renameReferenceFromLinkTag1_test.go | 4 +- .../tests/renameReferenceFromLinkTag2_test.go | 4 +- .../tests/renameReferenceFromLinkTag3_test.go | 4 +- .../tests/renameReferenceFromLinkTag4_test.go | 4 +- .../tests/renameReferenceFromLinkTag5_test.go | 4 +- .../tests/renameRestBindingElement_test.go | 8 +- .../fourslash/tests/renameRest_test.go | 4 +- .../tests/renameStringLiteralOk1_test.go | 4 +- .../tests/renameStringLiteralOk_test.go | 4 +- .../tests/renameStringLiteralTypes1_test.go | 4 +- .../tests/renameStringLiteralTypes2_test.go | 4 +- .../tests/renameStringLiteralTypes3_test.go | 4 +- .../tests/renameStringLiteralTypes4_test.go | 4 +- .../tests/renameStringLiteralTypes5_test.go | 4 +- .../tests/renameStringPropertyNames2_test.go | 4 +- .../tests/renameStringPropertyNames_test.go | 4 +- ...TemplateLiteralsComputedProperties_test.go | 4 +- ...meTemplateLiteralsDefinePropertyJs_test.go | 4 +- .../fourslash/tests/renameThis_test.go | 4 +- .../tests/renameUMDModuleAlias1_test.go | 4 +- .../tests/renameUMDModuleAlias2_test.go | 4 +- .../tests/renameUnresolvedReexport1_test.go | 4 +- .../tests/restArgSignatureHelp_test.go | 4 +- .../fourslash/tests/restArgType_test.go | 4 +- .../tests/restParamsContextuallyTyped_test.go | 4 +- .../tests/returnRecursiveType_test.go | 4 +- .../returnTypeOfGenericFunction1_test.go | 4 +- .../tests/reverseMappedTypeQuickInfo_test.go | 4 +- ...ImportExtensionsProjectReferences1_test.go | 4 +- ...ImportExtensionsProjectReferences2_test.go | 4 +- ...ImportExtensionsProjectReferences3_test.go | 4 +- .../tests/satisfiesOperatorCompletion_test.go | 6 +- .../tests/scopeOfUnionProperties_test.go | 4 +- .../selfReferencedExternalModule2_test.go | 4 +- .../selfReferencedExternalModule_test.go | 8 +- .../tests/semanticClassification1_test.go | 4 +- .../tests/semanticClassification2_test.go | 4 +- .../tests/semanticClassificationAlias_test.go | 4 +- ...lassificationClassExpressionMethod_test.go | 4 +- ...anticClassificationClassExpression_test.go | 4 +- ...lassificationInTemplateExpressions_test.go | 4 +- ...iatedModuleWithVariableOfSameName1_test.go | 4 +- ...iatedModuleWithVariableOfSameName2_test.go | 4 +- .../tests/semanticClassificationJSX_test.go | 4 +- .../semanticClassificationModules_test.go | 4 +- ...iatedModuleWithVariableOfSameName1_test.go | 4 +- ...iatedModuleWithVariableOfSameName2_test.go | 4 +- ...manticClassificationWithUnionTypes_test.go | 4 +- .../semanticClassificatonTypeAlias_test.go | 4 +- ...rnClassificationCallableVariables2_test.go | 4 +- ...ernClassificationCallableVariables_test.go | 4 +- ...odernClassificationClassProperties_test.go | 4 +- ...dernClassificationConstructorTypes_test.go | 4 +- ...anticModernClassificationFunctions_test.go | 4 +- ...ModernClassificationInfinityAndNaN_test.go | 4 +- ...nticModernClassificationInterfaces_test.go | 4 +- ...emanticModernClassificationMembers_test.go | 4 +- ...dernClassificationObjectProperties_test.go | 4 +- ...anticModernClassificationVariables_test.go | 4 +- ...micolonFormattingAfterArrayLiteral_test.go | 4 +- .../semicolonFormattingInsideAComment_test.go | 4 +- ...olonFormattingInsideAStringLiteral_test.go | 4 +- ...emicolonFormattingNestedStatements_test.go | 4 +- .../tests/semicolonFormatting_test.go | 4 +- .../sideEffectImportsSuggestion1_test.go | 4 +- .../fourslash/tests/signatureHelp01_test.go | 4 +- .../signatureHelpAfterParameterVS_test.go | 6 +- .../tests/signatureHelpAfterParameter_test.go | 4 +- .../signatureHelpAnonymousFunction_test.go | 4 +- .../signatureHelpAnonymousTypeVS_test.go | 6 +- .../tests/signatureHelpAnonymousType_test.go | 4 +- .../signatureHelpApplicableRange_test.go | 4 +- .../tests/signatureHelpAtEOF2_test.go | 6 +- .../tests/signatureHelpAtEOF_test.go | 4 +- .../signatureHelpBeforeSemicolon1_test.go | 4 +- ...ignatureHelpBetweenTypeArgsAndArgs_test.go | 6 +- .../signatureHelpBindingPatternVS_test.go | 6 +- .../tests/signatureHelpBindingPattern_test.go | 4 +- .../signatureHelpCallExpressionJs_test.go | 4 +- .../signatureHelpCallExpressionTuples_test.go | 4 +- .../tests/signatureHelpCallExpression_test.go | 4 +- ...ignatureHelpCommentsClassMembersVS_test.go | 6 +- .../signatureHelpCommentsClassMembers_test.go | 4 +- .../signatureHelpCommentsClassVS_test.go | 6 +- .../tests/signatureHelpCommentsClass_test.go | 4 +- ...natureHelpCommentsCommentParsingVS_test.go | 6 +- ...ignatureHelpCommentsCommentParsing_test.go | 4 +- ...eHelpCommentsFunctionDeclarationVS_test.go | 6 +- ...ureHelpCommentsFunctionDeclaration_test.go | 4 +- ...reHelpCommentsFunctionExpressionVS_test.go | 6 +- ...tureHelpCommentsFunctionExpression_test.go | 4 +- .../signatureHelpConstructExpression_test.go | 4 +- ...lpConstructorCallParamPropertiesVS_test.go | 6 +- ...HelpConstructorCallParamProperties_test.go | 4 +- ...ignatureHelpConstructorInheritance_test.go | 4 +- .../signatureHelpConstructorOverload_test.go | 4 +- ...ontextualConstructSignatureNoCrash_test.go | 4 +- .../tests/signatureHelpEmptyList_test.go | 4 +- ...lpExpandedRestTuplesLocalLabels1VS_test.go | 6 +- ...HelpExpandedRestTuplesLocalLabels1_test.go | 4 +- .../signatureHelpExpandedRestTuples_test.go | 4 +- ...ureHelpExpandedRestUnlabeledTuples_test.go | 4 +- ...ureHelpExpandedTuplesArgumentIndex_test.go | 4 +- ...signatureHelpExplicitTypeArguments_test.go | 4 +- .../signatureHelpFilteredTriggers03_test.go | 6 +- ...orNonlocalTypeDoesNotUseImportType_test.go | 4 +- .../signatureHelpForOptionalMethods_test.go | 4 +- ...elpForSignatureWithUnreachableType_test.go | 4 +- .../tests/signatureHelpForSuperCalls1_test.go | 4 +- .../signatureHelpFunctionOverload_test.go | 4 +- .../signatureHelpFunctionParameter_test.go | 4 +- .../signatureHelpImplicitConstructor_test.go | 4 +- ...tureHelpImportStarFromExportEquals_test.go | 4 +- .../signatureHelpInAdjacentBlockBody_test.go | 6 +- .../tests/signatureHelpInCallback_test.go | 4 +- ...ignatureHelpInCompleteGenericsCall_test.go | 4 +- ...FunctionDeclarationInMultipleFiles_test.go | 4 +- .../tests/signatureHelpInFunctionCall_test.go | 4 +- .../signatureHelpInParenthetical_test.go | 4 +- .../signatureHelpInRecursiveType_test.go | 4 +- .../signatureHelpIncompleteCalls_test.go | 4 +- ...ignatureHelpIncompleteJsxAttribute_test.go | 4 +- ...atureHelpInferenceJsDocImportTagVS_test.go | 6 +- ...gnatureHelpInferenceJsDocImportTag_test.go | 4 +- .../tests/signatureHelpInference_test.go | 4 +- .../tests/signatureHelpIteratorNextVS_test.go | 6 +- .../tests/signatureHelpIteratorNext_test.go | 4 +- .../signatureHelpJSDocCallbackTagVS_test.go | 6 +- .../signatureHelpJSDocCallbackTag_test.go | 4 +- .../tests/signatureHelpJSDocTagsVS_test.go | 6 +- .../tests/signatureHelpJSDocTags_test.go | 4 +- .../signatureHelpJSMissingIdentifier_test.go | 4 +- ...atureHelpJSMissingPropertyAccessVS_test.go | 6 +- ...gnatureHelpJSMissingPropertyAccess_test.go | 4 +- .../fourslash/tests/signatureHelpJSX_test.go | 6 +- ...ignatureHelpJsxTextLessThanTrigger_test.go | 6 +- .../signatureHelpLeadingRestTuple_test.go | 4 +- ...elpMalformedTaggedTemplateNoCrash1_test.go | 6 +- .../tests/signatureHelpNegativeTests2_test.go | 4 +- .../tests/signatureHelpNegativeTests_test.go | 4 +- ...gnatureHelpNestedCallTrailingComma_test.go | 6 +- .../tests/signatureHelpNestedCalls_test.go | 4 +- ...ureHelpNestedTypeArgumentGTBalance_test.go | 4 +- .../tests/signatureHelpNoArguments_test.go | 4 +- ...ationExpressionNoArgs_NotAvailable_test.go | 4 +- .../tests/signatureHelpObjectLiteral_test.go | 4 +- .../tests/signatureHelpOnDeclaration_test.go | 4 +- .../tests/signatureHelpOnImportDefer_test.go | 4 +- .../signatureHelpOnNestedOverloads_test.go | 4 +- .../signatureHelpOnOverloadOnConst_test.go | 4 +- ...tureHelpOnOverloadsDifferentArity2_test.go | 4 +- ...tureHelpOnOverloadsDifferentArity3_test.go | 4 +- ...atureHelpOnOverloadsDifferentArity_test.go | 4 +- .../tests/signatureHelpOnOverloads_test.go | 4 +- ...lpOnSuperWhenMembersAreNotResolved_test.go | 4 +- .../signatureHelpOnTypePredicates_test.go | 4 +- .../tests/signatureHelpOptionalCall2_test.go | 4 +- .../tests/signatureHelpOptionalCall_test.go | 4 +- .../tests/signatureHelpRestArgs1VS_test.go | 6 +- .../tests/signatureHelpRestArgs1_test.go | 4 +- .../tests/signatureHelpRestArgs2VS_test.go | 6 +- .../tests/signatureHelpRestArgs2_test.go | 4 +- .../tests/signatureHelpRestArgs3VS_test.go | 6 +- .../tests/signatureHelpRestArgs3_test.go | 4 +- ...signatureHelpSimpleConstructorCall_test.go | 4 +- .../signatureHelpSimpleFunctionCall_test.go | 4 +- .../signatureHelpSimpleSuperCall_test.go | 4 +- .../tests/signatureHelpSkippedArgs1VS_test.go | 6 +- .../tests/signatureHelpSkippedArgs1_test.go | 4 +- ...natureHelpSuperConstructorOverload_test.go | 4 +- ...atureHelpTaggedTemplatesNegatives1_test.go | 4 +- ...atureHelpTaggedTemplatesNegatives2_test.go | 4 +- ...atureHelpTaggedTemplatesNegatives3_test.go | 4 +- ...atureHelpTaggedTemplatesNegatives4_test.go | 4 +- ...atureHelpTaggedTemplatesNegatives5_test.go | 4 +- .../fourslash/tests/signatureHelpThis_test.go | 4 +- .../tests/signatureHelpTokenCrash_test.go | 6 +- .../signatureHelpTrailingRestTuple_test.go | 4 +- .../signatureHelpTypeArguments2VS_test.go | 6 +- .../tests/signatureHelpTypeArguments2_test.go | 4 +- ...HelpTypeArgumentsWithUntypedTarget_test.go | 4 +- .../tests/signatureHelpTypeArguments_test.go | 4 +- ...atureHelpTypeParametersNotVariadic_test.go | 4 +- ...ureHelpUnresolvedTypeErrorRecovery_test.go | 4 +- ...atureHelpWithInterfaceAsIdentifier_test.go | 4 +- ...natureHelpWithInvalidArgumentList1_test.go | 4 +- .../tests/signatureHelpWithTriggers02_test.go | 4 +- .../tests/signatureHelpWithUnknownVS_test.go | 6 +- .../tests/signatureHelpWithUnknown_test.go | 4 +- .../tests/signatureHelp_contextual_test.go | 4 +- .../tests/signatureHelp_unionTypeVS_test.go | 6 +- .../tests/signatureHelp_unionType_test.go | 4 +- .../singleLineTypeLiteralFormatting_test.go | 4 +- .../tests/smartIndentNamedImport_test.go | 4 +- .../tests/smartSelection_JSDocTags10_test.go | 4 +- .../tests/smartSelection_JSDocTags11_test.go | 4 +- .../tests/smartSelection_JSDocTags12_test.go | 4 +- .../tests/smartSelection_JSDocTags13_test.go | 4 +- .../tests/smartSelection_JSDocTags1_test.go | 4 +- .../tests/smartSelection_JSDocTags2_test.go | 4 +- .../tests/smartSelection_JSDocTags3_test.go | 4 +- .../tests/smartSelection_JSDocTags4_test.go | 4 +- .../tests/smartSelection_JSDocTags5_test.go | 4 +- .../tests/smartSelection_JSDocTags6_test.go | 4 +- .../tests/smartSelection_JSDocTags7_test.go | 4 +- .../tests/smartSelection_JSDocTags8_test.go | 4 +- .../tests/smartSelection_JSDocTags9_test.go | 4 +- .../tests/smartSelection_JSDoc_test.go | 4 +- .../tests/smartSelection_behindCaret_test.go | 4 +- .../smartSelection_bindingPatterns_test.go | 4 +- .../tests/smartSelection_comment1_test.go | 4 +- .../tests/smartSelection_comment2_test.go | 4 +- .../tests/smartSelection_complex_test.go | 4 +- .../tests/smartSelection_emptyRanges_test.go | 4 +- .../tests/smartSelection_function1_test.go | 4 +- .../tests/smartSelection_function2_test.go | 4 +- .../tests/smartSelection_function3_test.go | 4 +- .../smartSelection_functionParams1_test.go | 4 +- .../smartSelection_functionParams2_test.go | 4 +- .../tests/smartSelection_imports_test.go | 4 +- .../smartSelection_lastBlankLine_test.go | 4 +- ...tSelection_loneVariableDeclaration_test.go | 4 +- .../tests/smartSelection_mappedTypes_test.go | 4 +- .../tests/smartSelection_objectTypes_test.go | 4 +- ...smartSelection_punctuationPriority_test.go | 4 +- .../tests/smartSelection_simple1_test.go | 4 +- .../tests/smartSelection_simple2_test.go | 4 +- .../smartSelection_stringLiteral_test.go | 4 +- .../smartSelection_templateStrings2_test.go | 4 +- .../smartSelection_templateStrings_test.go | 4 +- .../tests/sourceFixAllImports_test.go | 4 +- .../tests/spaceAfterConstructor_test.go | 4 +- .../fourslash/tests/spaceAfterReturn_test.go | 4 +- .../spaceAfterStatementConditions_test.go | 4 +- ...spaceBeforeAndAfterBinaryOperators_test.go | 4 +- ...ecialIntersectionsOrderIndependent_test.go | 6 +- .../squiggleIllegalClassExtension_test.go | 4 +- .../squiggleIllegalSubclassOverride_test.go | 4 +- .../tests/statecallhierarchy_test.go | 4 +- .../fourslash/tests/statecodelens_test.go | 8 +- .../tests/statedeclarationmaps_test.go | 6 +- .../fourslash/tests/statefindallrefs_test.go | 8 +- .../tests/stateimplementations_test.go | 4 +- .../fourslash/tests/staterename_test.go | 4 +- .../tests/staticGenericOverloads1_test.go | 4 +- .../tests/stringCompletionDetails_test.go | 8 +- ...onalTypesUsingTemplateLiteralTypes_test.go | 6 +- ...CompletionsImportOrExportSpecifier_test.go | 6 +- .../tests/stringCompletionsVsEscaping_test.go | 6 +- ...onalTypesUsingTemplateLiteralTypes_test.go | 6 +- ...onsForOpenEndedTemplateLiteralType_test.go | 6 +- ...letionsForStringEnumContextualType_test.go | 6 +- ...ralCompletionsForTypeIndexedAccess_test.go | 6 +- ...singInferenceResultFromPreviousArg_test.go | 6 +- ...mpletionsInJsxAttributeInitializer_test.go | 6 +- ...ompletionsInPositionTypedUsingRest_test.go | 6 +- ...bjectWhenItsKeysAreUsedOutsideOfIt_test.go | 6 +- ...CompletionsInTypeArgForNonGeneric1_test.go | 6 +- .../tests/stringPropertyNames1_test.go | 4 +- .../tests/stringPropertyNames2_test.go | 4 +- .../tests/suggestionNoDuplicates_test.go | 6 +- ...OfUnusedVariableWithExternalModule_test.go | 6 +- .../fourslash/tests/superCallError0_test.go | 4 +- ...rInDerivedTypeOfGenericWithStatics_test.go | 4 +- .../tests/superInsideInnerClass_test.go | 4 +- .../fourslash/tests/switchCompletions_test.go | 6 +- .../symbolCompletionLowerPriority_test.go | 10 +- ...lNameAtUnparseableFunctionOverload_test.go | 4 +- ...cClassificationForJSDocTemplateTag_test.go | 4 +- .../syntacticClassificationWithErrors_test.go | 4 +- .../tests/syntacticClassifications1_test.go | 4 +- ...assificationsConflictDiff3Markers1_test.go | 4 +- ...assificationsConflictDiff3Markers2_test.go | 4 +- ...ticClassificationsConflictMarkers1_test.go | 4 +- ...ticClassificationsConflictMarkers2_test.go | 4 +- ...yntacticClassificationsDocComment1_test.go | 4 +- ...yntacticClassificationsDocComment2_test.go | 4 +- ...yntacticClassificationsDocComment3_test.go | 4 +- ...yntacticClassificationsDocComment4_test.go | 4 +- ...tacticClassificationsForOfKeyword2_test.go | 4 +- ...tacticClassificationsForOfKeyword3_test.go | 4 +- ...ntacticClassificationsForOfKeyword_test.go | 4 +- ...lassificationsFunctionWithComments_test.go | 4 +- .../syntacticClassificationsJsx1_test.go | 4 +- .../syntacticClassificationsJsx2_test.go | 4 +- ...lassificationsMergeConflictMarker1_test.go | 4 +- ...tacticClassificationsObjectLiteral_test.go | 4 +- ...syntacticClassificationsTemplates1_test.go | 4 +- ...syntacticClassificationsTemplates2_test.go | 4 +- .../tests/syntaxErrorAfterImport1_test.go | 4 +- ...heticImportFromBabelGeneratedFile1_test.go | 4 +- ...heticImportFromBabelGeneratedFile2_test.go | 4 +- ...ingAfterNewlineInsertedBeforeWhile_test.go | 4 +- .../fourslash/tests/testmain_test.go | 4 +- .../tests/thisBindingInLambda_test.go | 4 +- ...thisPredicateFunctionCompletions02_test.go | 6 +- ...thisPredicateFunctionCompletions03_test.go | 6 +- .../thisPredicateFunctionQuickInfo01_test.go | 4 +- .../thisPredicateFunctionQuickInfo02_test.go | 4 +- .../thisPredicateFunctionQuickInfo_test.go | 4 +- ...toggleDuplicateFunctionDeclaration_test.go | 4 +- .../trailingCommaSignatureHelpVS_test.go | 6 +- .../tests/trailingCommaSignatureHelp_test.go | 4 +- .../tests/transitiveExportImports2_test.go | 4 +- .../tests/transitiveExportImports3_test.go | 4 +- .../tests/transitiveExportImports_test.go | 4 +- ...lashRefPathCompletionAbsolutePaths_test.go | 6 +- ...ripleSlashRefPathCompletionContext_test.go | 6 +- ...thCompletionExtensionsAllowJSFalse_test.go | 6 +- ...athCompletionExtensionsAllowJSTrue_test.go | 6 +- ...leSlashRefPathCompletionHiddenFile_test.go | 8 +- ...ipleSlashRefPathCompletionRootdirs_test.go | 6 +- ...tripleSlashReferenceResolutionMode_test.go | 4 +- .../tsconfigComputedPropertyError_test.go | 6 +- ...eferencesOnRuntimeImportWithPaths1_test.go | 4 +- .../fourslash/tests/tsxCompletion10_test.go | 6 +- .../fourslash/tests/tsxCompletion11_test.go | 6 +- .../fourslash/tests/tsxCompletion12_test.go | 10 +- .../fourslash/tests/tsxCompletion13_test.go | 10 +- .../fourslash/tests/tsxCompletion14_test.go | 6 +- .../fourslash/tests/tsxCompletion15_test.go | 6 +- .../fourslash/tests/tsxCompletion1_test.go | 6 +- .../fourslash/tests/tsxCompletion2_test.go | 6 +- .../fourslash/tests/tsxCompletion3_test.go | 6 +- .../fourslash/tests/tsxCompletion4_test.go | 6 +- .../fourslash/tests/tsxCompletion5_test.go | 6 +- .../fourslash/tests/tsxCompletion6_test.go | 6 +- .../fourslash/tests/tsxCompletion7_test.go | 10 +- .../fourslash/tests/tsxCompletion8_test.go | 6 +- ...ctionExpressionOfChildrenCallback1_test.go | 6 +- ...nctionExpressionOfChildrenCallback_test.go | 4 +- .../tests/tsxCompletionNonTagLessThan_test.go | 10 +- .../tests/tsxCompletionOnClosingTag1_test.go | 6 +- .../tests/tsxCompletionOnClosingTag2_test.go | 6 +- ...xCompletionOnClosingTagWithoutJSX1_test.go | 6 +- ...xCompletionOnClosingTagWithoutJSX2_test.go | 6 +- .../tsxCompletionsGenericComponent_test.go | 6 +- .../tests/tsxFindAllReferences10_test.go | 4 +- .../tests/tsxFindAllReferences11_test.go | 4 +- .../tests/tsxFindAllReferences1VS_test.go | 6 +- .../tests/tsxFindAllReferences1_test.go | 4 +- .../tests/tsxFindAllReferences2_test.go | 4 +- .../tests/tsxFindAllReferences3_test.go | 4 +- .../tests/tsxFindAllReferences4_test.go | 4 +- .../tests/tsxFindAllReferences5_test.go | 4 +- .../tests/tsxFindAllReferences6_test.go | 4 +- .../tests/tsxFindAllReferences7_test.go | 4 +- .../tests/tsxFindAllReferences8_test.go | 4 +- .../tests/tsxFindAllReferences9_test.go | 4 +- ...FindAllReferencesUnionElementType1_test.go | 4 +- ...FindAllReferencesUnionElementType2_test.go | 4 +- ...GoToDefinitionClassInDifferentFile_test.go | 4 +- .../tests/tsxGoToDefinitionClasses_test.go | 4 +- .../tests/tsxGoToDefinitionIntrinsics_test.go | 4 +- ...sxGoToDefinitionStatelessFunction1_test.go | 4 +- ...sxGoToDefinitionStatelessFunction2_test.go | 4 +- ...tsxGoToDefinitionUnionElementType1_test.go | 4 +- ...tsxGoToDefinitionUnionElementType2_test.go | 4 +- .../tests/tsxIncrementalServer_test.go | 4 +- .../fourslash/tests/tsxIncremental_test.go | 4 +- .../fourslash/tests/tsxParsing_test.go | 4 +- .../fourslash/tests/tsxQuickInfo1_test.go | 4 +- .../fourslash/tests/tsxQuickInfo2_test.go | 4 +- .../fourslash/tests/tsxQuickInfo3_test.go | 4 +- .../fourslash/tests/tsxQuickInfo4_test.go | 4 +- .../fourslash/tests/tsxQuickInfo5_test.go | 4 +- .../fourslash/tests/tsxQuickInfo6_test.go | 4 +- .../fourslash/tests/tsxQuickInfo7_test.go | 4 +- .../fourslash/tests/tsxRename1_test.go | 4 +- .../fourslash/tests/tsxRename2_test.go | 4 +- .../fourslash/tests/tsxRename3_test.go | 4 +- .../fourslash/tests/tsxRename4_test.go | 4 +- .../fourslash/tests/tsxRename5_test.go | 4 +- .../fourslash/tests/tsxRename6_test.go | 4 +- .../fourslash/tests/tsxRename7_test.go | 4 +- .../fourslash/tests/tsxRename8_test.go | 4 +- .../fourslash/tests/tsxRename9_test.go | 4 +- .../fourslash/tests/tsxSignatureHelp1_test.go | 4 +- .../fourslash/tests/tsxSignatureHelp2_test.go | 4 +- ...veNumberLiteralExpressionStatement_test.go | 4 +- .../fourslash/tests/typeArgCompletion_test.go | 6 +- .../tests/typeAssertionsFormatting_test.go | 4 +- ...peCheckAfterAddingGenericParameter_test.go | 4 +- .../tests/typeCheckAfterResolve_test.go | 4 +- .../typeCheckObjectInArrayLiteral_test.go | 4 +- ...fterStringCompletionsInNestedCall2_test.go | 6 +- ...AfterStringCompletionsInNestedCall_test.go | 8 +- .../tests/typeKeywordInFunction_test.go | 10 +- .../fourslash/tests/typeOfAFundule_test.go | 4 +- .../tests/typeOfKeywordCompletion_test.go | 10 +- .../tests/typeOperatorNodeBuilding_test.go | 4 +- .../typeReferenceAndImportDeprecated_test.go | 6 +- .../tests/typeReferenceOnServer_test.go | 6 +- .../fourslash/tests/typedefinition01_test.go | 4 +- .../unclosedCommentsInConstructor_test.go | 4 +- ...unclosedStringLiteralAutoformating_test.go | 4 +- ...unclosedStringLiteralErrorRecovery_test.go | 6 +- .../tests/underscoreTypings01_test.go | 6 +- .../tests/underscoreTypings02_test.go | 4 +- .../tests/unreachableCodeAfterEdit_test.go | 4 +- .../tests/unreachableCodeDiagnostics_test.go | 4 +- .../unreachableStatementNodeReuse_test.go | 4 +- .../tests/unusedClassInNamespace1_test.go | 4 +- .../tests/unusedClassInNamespace3_test.go | 4 +- .../tests/unusedClassInNamespace4_test.go | 4 +- .../unusedClassInNamespaceWithTrivia1_test.go | 4 +- .../unusedClassInNamespaceWithTrivia2_test.go | 4 +- .../tests/unusedConstantInFunction1_test.go | 4 +- .../tests/unusedEnumInFunction1_test.go | 4 +- .../tests/unusedEnumInNamespace1_test.go | 4 +- .../tests/unusedFunctionInNamespace1_test.go | 4 +- .../tests/unusedFunctionInNamespace2_test.go | 4 +- .../tests/unusedFunctionInNamespace3_test.go | 4 +- .../tests/unusedFunctionInNamespace4_test.go | 4 +- .../tests/unusedFunctionInNamespace5_test.go | 4 +- ...nusedFunctionInNamespaceWithTrivia_test.go | 4 +- .../fourslash/tests/unusedImports10FS_test.go | 4 +- .../fourslash/tests/unusedImports11FS_test.go | 4 +- .../fourslash/tests/unusedImports12FS_test.go | 4 +- .../fourslash/tests/unusedImports13FS_test.go | 4 +- .../fourslash/tests/unusedImports14FS_test.go | 4 +- .../fourslash/tests/unusedImports1FS_test.go | 4 +- .../fourslash/tests/unusedImports3FS_test.go | 4 +- .../fourslash/tests/unusedImports4FS_test.go | 4 +- .../fourslash/tests/unusedImports5FS_test.go | 4 +- .../fourslash/tests/unusedImports6FS_test.go | 4 +- .../fourslash/tests/unusedImports7FS_test.go | 4 +- .../fourslash/tests/unusedImports8FS_test.go | 4 +- .../fourslash/tests/unusedImports9FS_test.go | 4 +- .../tests/unusedLabelAfterEdit_test.go | 4 +- .../tests/unusedLocalsInFunction1_test.go | 4 +- .../tests/unusedLocalsInFunction3_test.go | 4 +- .../unusedLocalsinConstructorFS1_test.go | 4 +- .../unusedLocalsinConstructorFS2_test.go | 4 +- .../tests/unusedVariableInClass5_test.go | 4 +- .../updateSourceFile_jsdocSignature_test.go | 4 +- .../tests/updateToClassStatics_test.go | 4 +- .../fourslash/tests/util/util.go | 10 +- .../tests/verifySingleFileEmitOutput1_test.go | 4 +- ...iteSpaceBeforeReturnTypeFormatting_test.go | 4 +- .../tests/whiteSpaceTrimming2_test.go | 4 +- .../tests/whiteSpaceTrimming3_test.go | 4 +- .../tests/whiteSpaceTrimming4_test.go | 4 +- .../tests/whiteSpaceTrimming_test.go | 4 +- .../workspaceSymbolCurrentProject_test.go | 8 +- ...ceSymbolMultiProjectNonExistentRef_test.go | 6 +- tsc/{internal => pkg}/fswatch/CHANGES.md | 0 tsc/{internal => pkg}/fswatch/LICENSE | 0 tsc/{internal => pkg}/fswatch/README.md | 2 +- .../fswatch/canonicalize_darwin.go | 0 .../fswatch/canonicalize_other.go | 0 tsc/{internal => pkg}/fswatch/cgmanifest.json | 0 tsc/{internal => pkg}/fswatch/debounce.go | 0 tsc/{internal => pkg}/fswatch/event.go | 0 .../fswatch/eventlist_test.go | 0 .../fswatch/fallback_test.go | 0 .../fswatch/fanotify_linux.go | 0 .../fswatch/fanotify_linux_test.go | 0 .../fswatch/fsevents_darwin.go | 0 .../fswatch/fsevents_darwin_ffi.go | 0 .../fswatch/fsevents_darwin_ffi.s | 0 .../fswatch/fsevents_darwin_ffi_amd64.s | 0 .../fswatch/fsevents_darwin_ffi_arm64.s | 0 .../fswatch/fsevents_darwin_ffi_arm64_test.go | 0 .../fswatch/fsevents_darwin_nfd_test.go | 0 .../fswatch/fsevents_darwin_shared_test.go | 0 .../fswatch/inotify_linux.go | 0 tsc/{internal => pkg}/fswatch/kqueue.go | 0 .../fswatch/testutil_test.go | 0 tsc/{internal => pkg}/fswatch/walkdir.go | 0 .../fswatch/walkdir_dirent_darwin.go | 0 .../fswatch/walkdir_dirent_fileno.go | 0 .../fswatch/walkdir_dirent_linux.go | 0 .../fswatch/walkdir_dirent_noreclen.go | 0 .../fswatch/walkdir_other.go | 0 tsc/{internal => pkg}/fswatch/walkdir_test.go | 0 tsc/{internal => pkg}/fswatch/walkdir_unix.go | 0 .../fswatch/walkdir_windows.go | 0 tsc/{internal => pkg}/fswatch/watcher.go | 2 +- tsc/{internal => pkg}/fswatch/watcher_test.go | 0 tsc/{internal => pkg}/fswatch/windows.go | 0 tsc/{internal => pkg}/glob/glob.go | 0 tsc/{internal => pkg}/ipc/conn.go | 2 +- tsc/{internal => pkg}/ipc/conn_async.go | 4 +- tsc/{internal => pkg}/ipc/conn_async_test.go | 6 +- tsc/{internal => pkg}/ipc/conn_sync.go | 4 +- tsc/{internal => pkg}/ipc/conn_sync_test.go | 6 +- tsc/{internal => pkg}/ipc/protocol.go | 2 +- tsc/{internal => pkg}/ipc/protocol_jsonrpc.go | 4 +- tsc/{internal => pkg}/ipc/timing.go | 0 tsc/{internal => pkg}/ipc/timing_test.go | 0 tsc/{internal => pkg}/ipc/transport.go | 0 tsc/{internal => pkg}/ipc/transport_unix.go | 0 .../ipc/transport_windows.go | 0 tsc/{internal => pkg}/jsnum/jsnum.go | 0 tsc/{internal => pkg}/jsnum/jsnum_test.go | 4 +- tsc/{internal => pkg}/jsnum/pseudobigint.go | 0 .../jsnum/pseudobigint_test.go | 0 tsc/{internal => pkg}/jsnum/ryu_test.go | 0 tsc/{internal => pkg}/jsnum/string.go | 4 +- tsc/{internal => pkg}/jsnum/string_test.go | 4 +- tsc/{internal => pkg}/json/json.go | 0 tsc/{internal => pkg}/jsonrpc/baseproto.go | 0 tsc/{internal => pkg}/jsonrpc/jsonrpc.go | 2 +- .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 .../diagnosticMessages.generated.json.lcl | 0 tsc/{internal => pkg}/locale/locale.go | 0 tsc/{internal => pkg}/ls/api.go | 6 +- .../ls/autoimport/aliasresolver.go | 20 +-- .../ls/autoimport/aliasresolver_crash_test.go | 22 +-- tsc/{internal => pkg}/ls/autoimport/export.go | 10 +- .../autoimport/export_stringer_generated.go | 0 .../ls/autoimport/extract.go | 14 +- tsc/{internal => pkg}/ls/autoimport/fix.go | 34 ++--- .../ls/autoimport/import_adder.go | 26 ++-- tsc/{internal => pkg}/ls/autoimport/index.go | 2 +- .../ls/autoimport/index_test.go | 0 .../ls/autoimport/registry.go | 34 ++--- .../ls/autoimport/registry_test.go | 30 ++-- .../ls/autoimport/specifiers.go | 2 +- .../ls/autoimport/testmain_test.go | 4 +- tsc/{internal => pkg}/ls/autoimport/util.go | 22 +-- .../ls/autoimport/util_test.go | 2 +- tsc/{internal => pkg}/ls/autoimport/view.go | 20 +-- tsc/{internal => pkg}/ls/autoinsert.go | 12 +- tsc/{internal => pkg}/ls/callhierarchy.go | 24 ++-- tsc/{internal => pkg}/ls/change/delete.go | 14 +- tsc/{internal => pkg}/ls/change/tracker.go | 24 ++-- .../ls/change/trackerimpl.go | 20 +-- .../ls/change/trackerimpl_test.go | 2 +- tsc/{internal => pkg}/ls/codeactions.go | 18 +-- ..._fixclassincorrectlyimplementsinterface.go | 22 +-- .../codeactions_fixmissingtypeannotation.go | 24 ++-- .../ls/codeactions_importfixes.go | 22 +-- .../ls/codeactions_missingmemberfixer.go | 20 +-- tsc/{internal => pkg}/ls/codelens.go | 18 +-- tsc/{internal => pkg}/ls/completions.go | 42 +++--- tsc/{internal => pkg}/ls/constants.go | 0 tsc/{internal => pkg}/ls/crossproject.go | 10 +- tsc/{internal => pkg}/ls/definition.go | 20 +-- tsc/{internal => pkg}/ls/diagnostics.go | 16 +-- .../ls/displaypartswriter.go | 10 +- .../ls/documenthighlights.go | 22 +-- tsc/{internal => pkg}/ls/file_rename.go | 24 ++-- tsc/{internal => pkg}/ls/file_rename_test.go | 8 +- tsc/{internal => pkg}/ls/findallreferences.go | 30 ++-- .../ls/findallreferences_test.go | 14 +- tsc/{internal => pkg}/ls/folding.go | 20 +-- tsc/{internal => pkg}/ls/format.go | 18 +-- tsc/{internal => pkg}/ls/format_test.go | 8 +- tsc/{internal => pkg}/ls/host.go | 8 +- tsc/{internal => pkg}/ls/hover.go | 24 ++-- tsc/{internal => pkg}/ls/hovericon.go | 4 +- tsc/{internal => pkg}/ls/importTracker.go | 12 +- tsc/{internal => pkg}/ls/inlay_hints.go | 28 ++-- tsc/{internal => pkg}/ls/jsdoc.go | 14 +- tsc/{internal => pkg}/ls/jsdoc_snippet.go | 18 +-- tsc/{internal => pkg}/ls/languageservice.go | 18 +-- tsc/{internal => pkg}/ls/linkedediting.go | 16 +-- tsc/{internal => pkg}/ls/lsconv/converters.go | 22 +-- .../ls/lsconv/converters_test.go | 14 +- tsc/{internal => pkg}/ls/lsconv/linemap.go | 2 +- tsc/{internal => pkg}/ls/lsutil/asi.go | 6 +- tsc/{internal => pkg}/ls/lsutil/children.go | 8 +- .../ls/lsutil/completednode.go | 8 +- .../ls/lsutil/formatcodeoptions.go | 6 +- .../ls/lsutil/organizeimports.go | 8 +- .../ls/lsutil/symbol_display.go | 8 +- .../ls/lsutil/userpreferences.go | 8 +- .../ls/lsutil/userpreferences_test.go | 6 +- tsc/{internal => pkg}/ls/lsutil/utilities.go | 12 +- .../ls/lsutil/utilities_test.go | 6 +- tsc/{internal => pkg}/ls/organizeimports.go | 20 +-- tsc/{internal => pkg}/ls/rename.go | 26 ++-- tsc/{internal => pkg}/ls/selectionranges.go | 14 +- .../ls/selectionranges_test.go | 14 +- tsc/{internal => pkg}/ls/semantictokens.go | 18 +-- tsc/{internal => pkg}/ls/signaturehelp.go | 24 ++-- tsc/{internal => pkg}/ls/source_map.go | 16 +-- tsc/{internal => pkg}/ls/sourcedefinition.go | 30 ++-- .../ls/string_completions.go | 32 ++--- .../ls/string_completions_test.go | 0 tsc/{internal => pkg}/ls/symbols.go | 26 ++-- tsc/{internal => pkg}/ls/utilities.go | 30 ++-- tsc/{internal => pkg}/lsp/dynamic_queue.go | 0 .../lsp/dynamic_queue_test.go | 0 tsc/{internal => pkg}/lsp/logger.go | 4 +- .../lsp/lsproto/_generate/.gitignore | 0 .../lsp/lsproto/_generate/fetchModel.mts | 0 .../lsp/lsproto/_generate/generate.mts | 2 +- .../lsp/lsproto/_generate/metaModelSchema.mts | 0 .../lsp/lsproto/_generate/tsconfig.json | 0 .../lsp/lsproto/baseproto.go | 2 +- .../lsp/lsproto/baseproto_test.go | 2 +- tsc/{internal => pkg}/lsp/lsproto/jsonrpc.go | 4 +- tsc/{internal => pkg}/lsp/lsproto/lsp.go | 8 +- .../lsp/lsproto/lsp_generated.go | 2 +- .../lsp/lsproto/lsp_json_test.go | 2 +- tsc/{internal => pkg}/lsp/lsproto/lsp_test.go | 2 +- .../lsp/lsproto/structcodec.go | 2 +- tsc/{internal => pkg}/lsp/lsproto/util.go | 0 .../lsp/lspwatcher/lspwatcher.go | 12 +- .../lsp/lspwatcher/lspwatcher_test.go | 12 +- tsc/{internal => pkg}/lsp/progress.go | 8 +- tsc/{internal => pkg}/lsp/progress_test.go | 6 +- tsc/{internal => pkg}/lsp/replay_test.go | 18 +-- tsc/{internal => pkg}/lsp/server.go | 44 +++--- .../lsp/server_completion_test.go | 16 +-- .../lsp/server_contentmapper_internal_test.go | 2 +- .../lsp/server_contentmapper_test.go | 12 +- .../lsp/server_progress_test.go | 10 +- .../lsp/server_projectinfo_test.go | 10 +- .../server_projectreference_updates_test.go | 16 +-- .../lsp/server_semantictokens_test.go | 10 +- tsc/{internal => pkg}/lsp/server_test.go | 10 +- tsc/{internal => pkg}/lsp/stack_sanitizer.go | 2 +- tsc/pkg/lsp/stack_sanitizer_test.go | 136 ++++++++++++++++++ tsc/{internal => pkg}/lsp/testmain_test.go | 4 +- tsc/{internal => pkg}/module/cache.go | 6 +- tsc/{internal => pkg}/module/resolver.go | 18 +-- tsc/{internal => pkg}/module/resolver_test.go | 20 +-- tsc/{internal => pkg}/module/types.go | 8 +- tsc/{internal => pkg}/module/util.go | 10 +- .../modulespecifiers/compare.go | 0 .../modulespecifiers/preferences.go | 8 +- .../modulespecifiers/specifiers.go | 18 +-- .../modulespecifiers/specifiers_test.go | 14 +- .../modulespecifiers/types.go | 14 +- .../modulespecifiers/util.go | 14 +- .../nativepath/eintr_unix.go | 0 .../nativepath/realpath_darwin_test.go | 0 .../nativepath/realpath_linux.go | 0 .../nativepath/realpath_other.go | 0 .../nativepath/realpath_windows.go | 0 .../nativepath/symlink_other.go | 0 .../nativepath/symlink_windows.go | 0 .../nativepath/symlink_windows_test.go | 0 tsc/{internal => pkg}/nodebuilder/types.go | 2 +- tsc/{internal => pkg}/osutil/os_android.go | 0 tsc/{internal => pkg}/osutil/os_other.go | 0 tsc/{internal => pkg}/osutil/osutil.go | 0 .../outputpaths/commonsourcedirectory.go | 4 +- .../outputpaths/outputpaths.go | 6 +- .../outputpaths/outputpaths_test.go | 2 +- tsc/{internal => pkg}/packagejson/cache.go | 10 +- tsc/{internal => pkg}/packagejson/expected.go | 2 +- .../packagejson/expected_test.go | 4 +- .../packagejson/exportsorimports.go | 4 +- .../packagejson/exportsorimports_test.go | 4 +- .../packagejson/jsonvalue.go | 4 +- .../packagejson/jsonvalue_test.go | 4 +- .../packagejson/packagejson.go | 4 +- .../packagejson/packagejson_test.go | 16 +-- .../packagejson/validated.go | 0 tsc/{internal => pkg}/parser/jsdoc.go | 8 +- tsc/{internal => pkg}/parser/parser.go | 16 +-- tsc/{internal => pkg}/parser/parser_test.go | 20 +-- tsc/{internal => pkg}/parser/references.go | 6 +- tsc/{internal => pkg}/parser/reparser.go | 8 +- .../testdata/fuzz/FuzzParser/02b74efe61495c2a | 0 .../testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 | 0 .../testdata/fuzz/FuzzParser/3d59c16f3abc20e1 | 0 .../testdata/fuzz/FuzzParser/4c0324cd37d955ff | 0 .../testdata/fuzz/FuzzParser/6944735deac09149 | 0 .../testdata/fuzz/FuzzParser/7d4c688e1df61349 | 0 .../testdata/fuzz/FuzzParser/9ce2d994c65c7bfe | 0 .../testdata/fuzz/FuzzParser/c5dc3279768e5a11 | 0 .../testdata/fuzz/FuzzParser/f48591d3b8f41eca | 0 .../testdata/fuzz/FuzzParser/f6dbdaa8568c9488 | 0 tsc/{internal => pkg}/parser/types.go | 0 tsc/{internal => pkg}/parser/utilities.go | 6 +- tsc/{internal => pkg}/pprof/pprof.go | 0 .../printer/changetrackerwriter.go | 8 +- tsc/{internal => pkg}/printer/emitcontext.go | 6 +- tsc/{internal => pkg}/printer/emitflags.go | 0 tsc/{internal => pkg}/printer/emithost.go | 8 +- tsc/{internal => pkg}/printer/emitresolver.go | 8 +- .../printer/emittextwriter.go | 4 +- tsc/{internal => pkg}/printer/factory.go | 6 +- .../printer/generatedidentifierflags.go | 0 tsc/{internal => pkg}/printer/helpers.go | 0 .../printer/namegenerator.go | 8 +- .../printer/namegenerator_test.go | 8 +- tsc/{internal => pkg}/printer/printer.go | 14 +- tsc/{internal => pkg}/printer/printer_test.go | 14 +- .../printer/semicolon_writer.go | 4 +- .../printer/singlelinestringwriter.go | 6 +- .../printer/sourcefilemetadataprovider.go | 4 +- .../printer/syntheticfile.go | 4 +- tsc/{internal => pkg}/printer/textwriter.go | 6 +- tsc/{internal => pkg}/printer/utilities.go | 12 +- .../printer/utilities_test.go | 4 +- tsc/{internal => pkg}/project/api.go | 0 tsc/{internal => pkg}/project/ata/ata.go | 16 +-- tsc/{internal => pkg}/project/ata/ata_test.go | 10 +- .../project/ata/discovertypings.go | 18 +-- .../project/ata/discovertypings_test.go | 14 +- .../project/ata/installnpmpackages_test.go | 0 .../project/ata/testmain_test.go | 4 +- tsc/{internal => pkg}/project/ata/typesmap.go | 0 .../project/ata/validatepackagename.go | 0 .../project/ata/validatepackagename_test.go | 2 +- tsc/{internal => pkg}/project/autoimport.go | 14 +- .../project/background/queue.go | 0 .../project/background/queue_test.go | 2 +- .../project/bulkcache_test.go | 12 +- tsc/{internal => pkg}/project/checkerpool.go | 10 +- .../project/checkerpool_test.go | 14 +- tsc/{internal => pkg}/project/client.go | 6 +- tsc/{internal => pkg}/project/compilerhost.go | 20 +-- .../project/configfilechanges_test.go | 8 +- .../project/configfileregistry.go | 10 +- .../project/configfileregistrybuilder.go | 14 +- .../project/contentmapper_test.go | 22 +-- .../project/customconfigfilename_test.go | 10 +- tsc/{internal => pkg}/project/dirty/box.go | 0 .../project/dirty/cloneablemap.go | 0 tsc/{internal => pkg}/project/dirty/entry.go | 0 .../project/dirty/interfaces.go | 0 tsc/{internal => pkg}/project/dirty/map.go | 0 .../project/dirty/mapbuilder.go | 0 .../project/dirty/syncmap.go | 2 +- .../project/dirty/syncmap_test.go | 0 tsc/{internal => pkg}/project/dirty/util.go | 0 .../project/extendedconfigcache.go | 4 +- .../project/extendedconfigcache_test.go | 18 +-- tsc/{internal => pkg}/project/filechange.go | 4 +- .../project/logging/logcollector.go | 0 .../project/logging/logger.go | 0 .../project/logging/logtree.go | 0 .../project/logging/logtree_test.go | 0 tsc/{internal => pkg}/project/overlayfs.go | 16 +-- .../project/overlayfs_test.go | 8 +- tsc/{internal => pkg}/project/ownercache.go | 2 +- tsc/{internal => pkg}/project/parsecache.go | 14 +- .../project/programcounter.go | 2 +- tsc/{internal => pkg}/project/project.go | 22 +-- .../project/project_stringer_generated.go | 0 tsc/{internal => pkg}/project/project_test.go | 16 +-- .../project/projectcollection.go | 8 +- .../project/projectcollectionbuilder.go | 24 ++-- .../project/projectcollectionbuilder_test.go | 12 +- .../projectcollectiondefaultproject_test.go | 6 +- .../project/projectlifetime_test.go | 12 +- .../project/projectreferencesprogram_test.go | 18 +-- .../project/refcountcache.go | 2 +- .../project/refcountcache_test.go | 20 +-- tsc/{internal => pkg}/project/session.go | 32 ++--- tsc/{internal => pkg}/project/session_test.go | 18 +-- tsc/{internal => pkg}/project/snapshot.go | 30 ++-- .../project/snapshot_test.go | 8 +- tsc/{internal => pkg}/project/snapshotfs.go | 16 +-- .../project/snapshotfs_test.go | 12 +- tsc/{internal => pkg}/project/snapshothost.go | 16 +-- .../project/testmain_test.go | 4 +- .../project/untitled_test.go | 8 +- tsc/{internal => pkg}/project/watch.go | 10 +- tsc/{internal => pkg}/project/watch_test.go | 0 .../project/watchtimeout_test.go | 8 +- .../pseudochecker/checker.go | 0 tsc/{internal => pkg}/pseudochecker/lookup.go | 6 +- tsc/{internal => pkg}/pseudochecker/type.go | 2 +- tsc/{internal => pkg}/repo/paths.go | 0 tsc/{internal => pkg}/scanner/regexp.go | 10 +- tsc/{internal => pkg}/scanner/scanner.go | 12 +- tsc/{internal => pkg}/scanner/scanner_test.go | 6 +- .../scanner/unicodeproperties.go | 2 +- tsc/{internal => pkg}/scanner/utilities.go | 8 +- tsc/{internal => pkg}/semver/version.go | 0 tsc/{internal => pkg}/semver/version_range.go | 0 .../semver/version_range_test.go | 0 tsc/{internal => pkg}/semver/version_test.go | 0 tsc/{internal => pkg}/sourcemap/decoder.go | 2 +- tsc/{internal => pkg}/sourcemap/generator.go | 6 +- .../sourcemap/generator_test.go | 2 +- tsc/{internal => pkg}/sourcemap/lineinfo.go | 2 +- tsc/{internal => pkg}/sourcemap/source.go | 2 +- .../sourcemap/source_mapper.go | 12 +- tsc/{internal => pkg}/sourcemap/util.go | 2 +- tsc/{internal => pkg}/spanmap/spanmap.go | 4 +- tsc/{internal => pkg}/spanmap/spanmap_test.go | 4 +- .../_scripts/generate-unicode-data.mts | 0 tsc/{internal => pkg}/stringutil/compare.go | 0 tsc/{internal => pkg}/stringutil/generate.go | 0 .../stringutil/identifier.go | 0 .../stringutil/identifier_parts_generated.go | 0 tsc/{internal => pkg}/stringutil/js_case.go | 0 .../stringutil/js_case_generated.go | 0 .../stringutil/js_case_test.go | 0 tsc/{internal => pkg}/stringutil/util.go | 0 tsc/{internal => pkg}/stringutil/util_test.go | 0 .../symlinks/knownsymlinks.go | 10 +- .../symlinks/knownsymlinks_bench_test.go | 2 +- .../symlinks/knownsymlinks_test.go | 8 +- .../testrunner/compiler_runner.go | 22 +-- .../testrunner/compiler_runner_test.go | 6 +- tsc/{internal => pkg}/testrunner/runner.go | 0 .../testrunner/test_case_parser.go | 16 +-- .../testrunner/test_case_parser_test.go | 0 .../testrunner/testmain_test.go | 4 +- .../testrunner/transpile_runner.go | 18 +-- .../testrunner/transpile_runner_test.go | 0 .../testutil/autoimporttestutil/fixtures.go | 12 +- .../testutil/baseline/baseline.go | 4 +- .../testutil/baseline/testmain.go | 2 +- .../testutil/contentmappertest/component.go | 8 +- .../diagnostic_code_collision.go | 6 +- .../testutil/contentmappertest/duplicate.go | 8 +- .../contentmappertest/duplicate_projection.go | 4 +- .../contentmappertest/dynamic_verbatim.go | 6 +- .../testutil/contentmappertest/editing.go | 8 +- .../testutil/contentmappertest/failing.go | 4 +- .../testutil/contentmappertest/hoisting.go | 8 +- .../testutil/contentmappertest/lisp.go | 6 +- .../testutil/contentmappertest/manifest.go | 0 .../testutil/contentmappertest/mapper_test.go | 8 +- .../testutil/contentmappertest/protocol.go | 10 +- .../testutil/contentmappertest/registry.go | 2 +- .../testutil/contentmappertest/spawner.go | 4 +- .../contentmappertest/supplemental.go | 4 +- .../supplemental_diagnostics.go | 8 +- .../contentmappertest/supplemental_globals.go | 4 +- .../contentmappertest/supplemental_module.go | 4 +- .../contentmappertest/synthesizing.go | 6 +- .../contentmappertest/transforming.go | 12 +- .../testutil/contentmappertest/verbatim.go | 4 +- .../testutil/emittestutil/emittestutil.go | 8 +- .../testutil/filefixture/filefixture.go | 0 .../testutil/fixtures/benchfixtures.go | 4 +- .../testutil/fsbaselineutil/differ.go | 6 +- .../testutil/harnessutil/harnessutil.go | 38 ++--- .../testutil/harnessutil/recorderfs.go | 2 +- .../harnessutil/sourcemap_recorder.go | 10 +- tsc/{internal => pkg}/testutil/jstest/node.go | 6 +- .../testutil/lsptestutil/lspclient.go | 10 +- .../testutil/parsetestutil/parsetestutil.go | 10 +- .../projecttestutil/clientmock_generated.go | 8 +- .../npmexecutormock_generated.go | 2 +- .../projecttestutil/projecttestutil.go | 24 ++-- tsc/{internal => pkg}/testutil/race/norace.go | 0 tsc/{internal => pkg}/testutil/race/race.go | 0 .../testutil/stringtestutil/stringtestutil.go | 2 +- tsc/{internal => pkg}/testutil/testutil.go | 2 +- .../tsbaseline/contentmapper_baseline.go | 10 +- .../testutil/tsbaseline/error_baseline.go | 14 +- .../testutil/tsbaseline/js_emit_baseline.go | 20 +-- .../tsbaseline/module_resolution_baseline.go | 2 +- .../testutil/tsbaseline/sourcemap_baseline.go | 12 +- .../tsbaseline/sourcemap_record_baseline.go | 8 +- .../tsbaseline/type_symbol_baseline.go | 22 +-- .../testutil/tsbaseline/util.go | 2 +- tsc/{internal => pkg}/tracing/tracing.go | 10 +- tsc/{internal => pkg}/tracing/tracing_test.go | 4 +- tsc/{internal => pkg}/transformers/chain.go | 8 +- .../transformers/declarations/diagnostics.go | 8 +- .../declarations/supplementalreferences.go | 6 +- .../transformers/declarations/tracker.go | 12 +- .../transformers/declarations/transform.go | 24 ++-- .../transformers/declarations/util.go | 6 +- .../transformers/destructuring.go | 4 +- .../transformers/estransforms/async.go | 8 +- .../transformers/estransforms/classfields.go | 16 +-- .../transformers/estransforms/classthis.go | 4 +- .../transformers/estransforms/definitions.go | 4 +- .../transformers/estransforms/esdecorator.go | 14 +- .../estransforms/exponentiation.go | 4 +- .../transformers/estransforms/forawait.go | 10 +- .../estransforms/logicalassignment.go | 4 +- .../estransforms/namedevaluation.go | 6 +- .../estransforms/nullishcoalescing.go | 4 +- .../estransforms/objectrestspread.go | 8 +- .../estransforms/optionalcatch.go | 4 +- .../estransforms/optionalchain.go | 8 +- .../estransforms/taggedtemplate.go | 8 +- .../transformers/estransforms/usestrict.go | 6 +- .../transformers/estransforms/using.go | 10 +- .../transformers/estransforms/utilities.go | 8 +- .../transformers/inliners/constenum.go | 14 +- .../transformers/jsxtransforms/jsx.go | 14 +- .../transformers/modifiervisitor.go | 4 +- .../moduletransforms/commonjsmodule.go | 14 +- .../transformers/moduletransforms/esmodule.go | 10 +- .../moduletransforms/externalmoduleinfo.go | 14 +- .../moduletransforms/impliedmodule.go | 8 +- .../moduletransforms/utilities.go | 12 +- .../transformers/transformer.go | 4 +- .../tstransforms/importelision.go | 8 +- .../tstransforms/importelision_test.go | 28 ++-- .../tstransforms/legacydecorators.go | 12 +- .../transformers/tstransforms/metadata.go | 8 +- .../tstransforms/runtimesyntax.go | 12 +- .../transformers/tstransforms/typeeraser.go | 6 +- .../tstransforms/typeeraser_test.go | 12 +- .../tstransforms/typeserializer.go | 10 +- .../transformers/tstransforms/utilities.go | 6 +- .../transformers/utilities.go | 8 +- tsc/{internal => pkg}/transpile/fs.go | 2 +- tsc/{internal => pkg}/transpile/fs_test.go | 2 +- tsc/{internal => pkg}/transpile/transpile.go | 12 +- .../tsoptions/commandlineoption.go | 6 +- .../tsoptions/commandlineparser.go | 14 +- .../tsoptions/commandlineparser_test.go | 24 ++-- .../tsoptions/contentmappers.go | 14 +- .../tsoptions/contentmappers_test.go | 12 +- tsc/{internal => pkg}/tsoptions/decls_test.go | 4 +- tsc/{internal => pkg}/tsoptions/declsbuild.go | 2 +- .../tsoptions/declscompiler.go | 4 +- .../tsoptions/declstypeacquisition.go | 0 tsc/{internal => pkg}/tsoptions/declswatch.go | 4 +- .../tsoptions/diagnostics.go | 2 +- tsc/{internal => pkg}/tsoptions/enummaps.go | 6 +- tsc/{internal => pkg}/tsoptions/errors.go | 8 +- .../tsoptions/export_test.go | 6 +- tsc/{internal => pkg}/tsoptions/namemap.go | 2 +- .../tsoptions/parsedbuildcommandline.go | 8 +- .../tsoptions/parsedcommandline.go | 22 +-- .../tsoptions/parsedcommandline_test.go | 10 +- .../tsoptions/parsedoptions.go | 4 +- .../tsoptions/parsinghelpers.go | 14 +- .../tsoptions/parsinghelpers_test.go | 2 +- tsc/{internal => pkg}/tsoptions/showconfig.go | 10 +- .../tsoptions/testmain_test.go | 4 +- .../tsoptions/tsconfigparsing.go | 28 ++-- .../tsoptions/tsconfigparsing_test.go | 32 ++--- .../tsoptionstest/parsedcommandline.go | 4 +- .../tsoptionstest/vfsparseconfighost.go | 8 +- .../tsoptions/wildcarddirectories.go | 4 +- .../tsoptions/wildcarddirectories_test.go | 4 +- tsc/{internal => pkg}/tspath/extension.go | 0 tsc/{internal => pkg}/tspath/ignoredpaths.go | 0 .../tspath/ignoredpaths_test.go | 0 tsc/{internal => pkg}/tspath/path.go | 2 +- tsc/{internal => pkg}/tspath/path_test.go | 0 .../tspath/startsWithDirectory_test.go | 0 tsc/{internal => pkg}/tspath/untitled_test.go | 2 +- .../vfs/cachedvfs/cachedvfs.go | 4 +- .../vfs/cachedvfs/cachedvfs_test.go | 8 +- .../vfs/internal/internal.go | 4 +- tsc/{internal => pkg}/vfs/iovfs/iofs.go | 6 +- tsc/{internal => pkg}/vfs/iovfs/iofs_test.go | 6 +- .../vfs/osvfs/helpers_test.go | 0 tsc/{internal => pkg}/vfs/osvfs/os.go | 12 +- tsc/{internal => pkg}/vfs/osvfs/os_test.go | 6 +- .../vfs/osvfs/realpath_test.go | 2 +- .../vfs/trackingvfs/trackingvfs.go | 4 +- tsc/{internal => pkg}/vfs/vfs.go | 0 tsc/{internal => pkg}/vfs/vfs_test.go | 10 +- .../vfs/vfsmatch/MATCHING_ALGORITHM.md | 0 .../vfs/vfsmatch/bench_test.go | 6 +- .../vfs/vfsmatch/stringer_generated.go | 0 .../vfs/vfsmatch/vfsmatch.go | 8 +- .../vfs/vfsmatch/vfsmatch_test.go | 4 +- .../vfs/vfsmock/mock_generated.go | 2 +- tsc/{internal => pkg}/vfs/vfsmock/wrapper.go | 2 +- .../vfs/vfsmock/wrapper_test.go | 2 +- tsc/{internal => pkg}/vfs/vfstest/vfstest.go | 6 +- .../vfs/vfstest/vfstest_test.go | 4 +- tsc/{internal => pkg}/vfs/wrapvfs/wrapvfs.go | 2 +- 5313 files changed, 14513 insertions(+), 14513 deletions(-) delete mode 100644 tsc/internal/lsp/stack_sanitizer_test.go rename tsc/{internal => pkg}/api/callbackfs.go (97%) rename tsc/{internal => pkg}/api/encoder/decoder.go (98%) rename tsc/{internal => pkg}/api/encoder/decoder_generated.go (99%) rename tsc/{internal => pkg}/api/encoder/decoder_test.go (98%) rename tsc/{internal => pkg}/api/encoder/encoder.go (99%) rename tsc/{internal => pkg}/api/encoder/encoder_generated.go (99%) rename tsc/{internal => pkg}/api/encoder/encoder_test.go (95%) rename tsc/{internal => pkg}/api/encoder/stringtable.go (97%) rename tsc/{internal => pkg}/api/encoder/testmain_test.go (54%) rename tsc/{internal => pkg}/api/enum_values_generated.go (99%) rename tsc/{internal => pkg}/api/jsonvalue_test.go (84%) rename tsc/{internal => pkg}/api/proto.go (98%) rename tsc/{internal => pkg}/api/proto_test.go (89%) rename tsc/{internal => pkg}/api/protocol_msgpack.go (97%) rename tsc/{internal => pkg}/api/server.go (91%) rename tsc/{internal => pkg}/api/session.go (99%) rename tsc/{internal => pkg}/api/session_apistate_test.go (97%) rename tsc/{internal => pkg}/api/session_batch_test.go (97%) rename tsc/{internal => pkg}/api/session_completion_test.go (96%) rename tsc/{internal => pkg}/api/session_createprogram_test.go (98%) rename tsc/{internal => pkg}/api/session_temporary_test.go (97%) rename tsc/{internal => pkg}/api/session_textedit_test.go (73%) rename tsc/{internal => pkg}/api/stringer_generated.go (100%) rename tsc/{internal => pkg}/ast/ast.go (99%) rename tsc/{internal => pkg}/ast/ast_generated.go (99%) rename tsc/{internal => pkg}/ast/checkflags.go (100%) rename tsc/{internal => pkg}/ast/deepclone.go (97%) rename tsc/{internal => pkg}/ast/deepclone_test.go (99%) rename tsc/{internal => pkg}/ast/diagnostic.go (98%) rename tsc/{internal => pkg}/ast/diagnostic_test.go (95%) rename tsc/{internal => pkg}/ast/flow.go (100%) rename tsc/{internal => pkg}/ast/functionflags.go (100%) rename tsc/{internal => pkg}/ast/ids.go (100%) rename tsc/{internal => pkg}/ast/kind_generated.go (100%) rename tsc/{internal => pkg}/ast/kind_stringer_generated.go (100%) rename tsc/{internal => pkg}/ast/modifierflags.go (100%) rename tsc/{internal => pkg}/ast/nodeflags.go (100%) rename tsc/{internal => pkg}/ast/parseoptions.go (97%) rename tsc/{internal => pkg}/ast/positionmap.go (98%) rename tsc/{internal => pkg}/ast/positionmap_test.go (98%) rename tsc/{internal => pkg}/ast/precedence.go (100%) rename tsc/{internal => pkg}/ast/subtreefacts.go (99%) rename tsc/{internal => pkg}/ast/symbol.go (100%) rename tsc/{internal => pkg}/ast/symbolflags.go (100%) rename tsc/{internal => pkg}/ast/tokenflags.go (100%) rename tsc/{internal => pkg}/ast/utilities.go (99%) rename tsc/{internal => pkg}/ast/utilities_bench_test.go (74%) rename tsc/{internal => pkg}/ast/visitor.go (100%) rename tsc/{internal => pkg}/astnav/testmain_test.go (54%) rename tsc/{internal => pkg}/astnav/tokens.go (99%) rename tsc/{internal => pkg}/astnav/tokens_test.go (97%) rename tsc/{internal => pkg}/binder/binder.go (99%) rename tsc/{internal => pkg}/binder/binder_test.go (74%) rename tsc/{internal => pkg}/binder/nameresolver.go (99%) rename tsc/{internal => pkg}/binder/referenceresolver.go (98%) rename tsc/{internal => pkg}/bundled/CopyrightNotice.txt (100%) rename tsc/{internal => pkg}/bundled/README.md (100%) rename tsc/{internal => pkg}/bundled/bundled.go (93%) rename tsc/{internal => pkg}/bundled/bundled_test.go (76%) rename tsc/{internal => pkg}/bundled/embed.go (98%) rename tsc/{internal => pkg}/bundled/embed_generated.go (100%) rename tsc/{internal => pkg}/bundled/generate.go (100%) rename tsc/{internal => pkg}/bundled/libs/lib.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.decorators.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.decorators.legacy.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.dom.asynciterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.dom.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.dom.iterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.collection.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.core.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.generator.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.iterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.proxy.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.reflect.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.symbol.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2015.symbol.wellknown.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2016.array.include.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2016.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2016.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2016.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.arraybuffer.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.date.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.object.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.sharedmemory.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2017.typedarrays.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.asyncgenerator.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.asynciterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2018.regexp.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.array.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.object.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2019.symbol.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.bigint.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.date.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.number.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.sharedmemory.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2020.symbol.wellknown.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2021.weakref.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.array.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.error.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.object.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.regexp.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2022.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2023.array.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2023.collection.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2023.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2023.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2023.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.arraybuffer.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.collection.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.object.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.regexp.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.sharedmemory.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2024.string.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.collection.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.float16.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.iterator.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.promise.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es2025.regexp.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es5.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.es6.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.array.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.collection.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.date.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.decorators.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.disposable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.error.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.full.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.intl.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.sharedmemory.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.temporal.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.esnext.typedarrays.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.scripthost.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.webworker.asynciterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.webworker.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.webworker.importscripts.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs/lib.webworker.iterable.d.ts (100%) rename tsc/{internal => pkg}/bundled/libs_generated.go (100%) rename tsc/{internal => pkg}/bundled/noembed.go (78%) rename tsc/{internal => pkg}/checker/checker.go (99%) rename tsc/{internal => pkg}/checker/checker_test.go (78%) rename tsc/{internal => pkg}/checker/emitresolver.go (99%) rename tsc/{internal => pkg}/checker/exports.go (99%) rename tsc/{internal => pkg}/checker/flow.go (99%) rename tsc/{internal => pkg}/checker/grammarchecks.go (99%) rename tsc/{internal => pkg}/checker/inference.go (99%) rename tsc/{internal => pkg}/checker/jsdoc.go (94%) rename tsc/{internal => pkg}/checker/jsx.go (99%) rename tsc/{internal => pkg}/checker/links.go (92%) rename tsc/{internal => pkg}/checker/mapper.go (99%) rename tsc/{internal => pkg}/checker/nodebuilder.go (98%) rename tsc/{internal => pkg}/checker/nodebuilder_hover.go (98%) rename tsc/{internal => pkg}/checker/nodebuilderimpl.go (99%) rename tsc/{internal => pkg}/checker/nodebuilderscopes.go (97%) rename tsc/{internal => pkg}/checker/nodecopy.go (99%) rename tsc/{internal => pkg}/checker/printer.go (98%) rename tsc/{internal => pkg}/checker/pseudotypenodebuilder.go (99%) rename tsc/{internal => pkg}/checker/relater.go (99%) rename tsc/{internal => pkg}/checker/services.go (99%) rename tsc/{internal => pkg}/checker/stringer_generated.go (100%) rename tsc/{internal => pkg}/checker/symbolaccessibility.go (99%) rename tsc/{internal => pkg}/checker/symboltracker.go (96%) rename tsc/{internal => pkg}/checker/tracer.go (98%) rename tsc/{internal => pkg}/checker/tracer_test.go (91%) rename tsc/{internal => pkg}/checker/types.go (99%) rename tsc/{internal => pkg}/checker/utilities.go (99%) rename tsc/{internal => pkg}/collections/cow.go (100%) rename tsc/{internal => pkg}/collections/multimap.go (100%) rename tsc/{internal => pkg}/collections/ordered_map.go (99%) rename tsc/{internal => pkg}/collections/ordered_map_test.go (97%) rename tsc/{internal => pkg}/collections/ordered_set.go (100%) rename tsc/{internal => pkg}/collections/ordered_set_test.go (93%) rename tsc/{internal => pkg}/collections/set.go (100%) rename tsc/{internal => pkg}/collections/syncmap.go (100%) rename tsc/{internal => pkg}/collections/syncmap_test.go (89%) rename tsc/{internal => pkg}/collections/syncset.go (100%) rename tsc/{internal => pkg}/compiler/checkerpool.go (98%) rename tsc/{internal => pkg}/compiler/checkerpool_test.go (100%) rename tsc/{internal => pkg}/compiler/contentmapper_test.go (93%) rename tsc/{internal => pkg}/compiler/emitHost.go (89%) rename tsc/{internal => pkg}/compiler/emit_test.go (94%) rename tsc/{internal => pkg}/compiler/emitter.go (94%) rename tsc/{internal => pkg}/compiler/fileInclude.go (97%) rename tsc/{internal => pkg}/compiler/fileloader.go (98%) rename tsc/{internal => pkg}/compiler/filesparser.go (98%) rename tsc/{internal => pkg}/compiler/host.go (88%) rename tsc/{internal => pkg}/compiler/includeprocessor.go (95%) rename tsc/{internal => pkg}/compiler/pkg.go (100%) rename tsc/{internal => pkg}/compiler/processingDiagnostic.go (92%) rename tsc/{internal => pkg}/compiler/program.go (98%) rename tsc/{internal => pkg}/compiler/program_test.go (96%) rename tsc/{internal => pkg}/compiler/projectreferencedtsfakinghost.go (94%) rename tsc/{internal => pkg}/compiler/projectreferencefilemapper.go (95%) rename tsc/{internal => pkg}/compiler/projectreferenceparser.go (94%) rename tsc/{internal => pkg}/contentmapper/contentmapper.go (97%) rename tsc/{internal => pkg}/contentmapper/host.go (98%) rename tsc/{internal => pkg}/contentmapper/host_test.go (99%) rename tsc/{internal => pkg}/contentmapper/hostimpl.go (98%) rename tsc/{internal => pkg}/contentmapper/transform.go (96%) rename tsc/{internal => pkg}/contentmapper/transform_test.go (93%) rename tsc/{internal => pkg}/core/arena.go (100%) rename tsc/{internal => pkg}/core/bfs.go (99%) rename tsc/{internal => pkg}/core/bfs_test.go (97%) rename tsc/{internal => pkg}/core/binarysearch.go (100%) rename tsc/{internal => pkg}/core/buildoptions.go (100%) rename tsc/{internal => pkg}/core/compileroptions.go (99%) rename tsc/{internal => pkg}/core/context.go (100%) rename tsc/{internal => pkg}/core/core.go (98%) rename tsc/{internal => pkg}/core/languagevariant.go (100%) rename tsc/{internal => pkg}/core/languagevariant_stringer_generated.go (100%) rename tsc/{internal => pkg}/core/linkstore.go (100%) rename tsc/{internal => pkg}/core/modulekind_stringer_generated.go (100%) rename tsc/{internal => pkg}/core/nodemodules.go (100%) rename tsc/{internal => pkg}/core/pattern.go (100%) rename tsc/{internal => pkg}/core/pattern_test.go (100%) rename tsc/{internal => pkg}/core/projectreference.go (91%) rename tsc/{internal => pkg}/core/scriptkind.go (100%) rename tsc/{internal => pkg}/core/scriptkind_stringer_generated.go (100%) rename tsc/{internal => pkg}/core/scripttarget_stringer_generated.go (100%) rename tsc/{internal => pkg}/core/semaphore.go (100%) rename tsc/{internal => pkg}/core/stack.go (100%) rename tsc/{internal => pkg}/core/text.go (100%) rename tsc/{internal => pkg}/core/textchange.go (100%) rename tsc/{internal => pkg}/core/tristate.go (100%) rename tsc/{internal => pkg}/core/tristate_stringer_generated.go (100%) rename tsc/{internal => pkg}/core/typeacquisition.go (100%) rename tsc/{internal => pkg}/core/version.go (100%) rename tsc/{internal => pkg}/core/watchoptions.go (100%) rename tsc/{internal => pkg}/core/workgroup.go (100%) rename tsc/{internal => pkg}/debug/debug.go (100%) rename tsc/{internal => pkg}/debug/debug_test.go (95%) rename tsc/{internal => pkg}/diagnostics/diagnosticMessages.json (100%) rename tsc/{internal => pkg}/diagnostics/diagnostics.go (97%) rename tsc/{internal => pkg}/diagnostics/diagnostics_generated.go (100%) rename tsc/{internal => pkg}/diagnostics/diagnostics_test.go (98%) rename tsc/{internal => pkg}/diagnostics/extraDiagnosticMessages.json (100%) rename tsc/{internal => pkg}/diagnostics/generate.go (98%) rename tsc/{internal => pkg}/diagnostics/generate_deps.go (100%) rename tsc/{internal => pkg}/diagnostics/loc/cs-CZ.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/de-DE.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/es-ES.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/fr-FR.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/it-IT.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/ja-JP.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/ko-KR.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/pl-PL.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/pt-BR.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/ru-RU.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/tr-TR.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/zh-CN.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc/zh-TW.json.gz (100%) rename tsc/{internal => pkg}/diagnostics/loc_generated.go (98%) rename tsc/{internal => pkg}/diagnostics/stringer_generated.go (100%) rename tsc/{internal => pkg}/diagnosticwriter/diagnosticwriter.go (98%) rename tsc/{internal => pkg}/evaluator/evaluator.go (97%) rename tsc/{internal => pkg}/execute/build/buildtask.go (98%) rename tsc/{internal => pkg}/execute/build/buildtask_contentmapper_test.go (93%) rename tsc/{internal => pkg}/execute/build/compilerHost.go (80%) rename tsc/{internal => pkg}/execute/build/graph_test.go (96%) rename tsc/{internal => pkg}/execute/build/host.go (87%) rename tsc/{internal => pkg}/execute/build/orchestrator.go (96%) rename tsc/{internal => pkg}/execute/build/parseCache.go (93%) rename tsc/{internal => pkg}/execute/build/uptodatestatus.go (100%) rename tsc/{internal => pkg}/execute/incremental/affectedfileshandler.go (97%) rename tsc/{internal => pkg}/execute/incremental/buildInfo.go (97%) rename tsc/{internal => pkg}/execute/incremental/buildinfo_contentmapper_test.go (93%) rename tsc/{internal => pkg}/execute/incremental/buildinfotosnapshot.go (95%) rename tsc/{internal => pkg}/execute/incremental/emitfileshandler.go (97%) rename tsc/{internal => pkg}/execute/incremental/external_diagnostic_test.go (72%) rename tsc/{internal => pkg}/execute/incremental/host.go (87%) rename tsc/{internal => pkg}/execute/incremental/incremental.go (90%) rename tsc/{internal => pkg}/execute/incremental/program.go (96%) rename tsc/{internal => pkg}/execute/incremental/programtosnapshot.go (97%) rename tsc/{internal => pkg}/execute/incremental/referencemap.go (91%) rename tsc/{internal => pkg}/execute/incremental/snapshot.go (97%) rename tsc/{internal => pkg}/execute/incremental/snapshottobuildinfo.go (97%) rename tsc/{internal => pkg}/execute/tsc.go (93%) rename tsc/{internal => pkg}/execute/tsc/compile.go (84%) rename tsc/{internal => pkg}/execute/tsc/diagnostics.go (95%) rename tsc/{internal => pkg}/execute/tsc/emit.go (90%) rename tsc/{internal => pkg}/execute/tsc/emit_test.go (93%) rename tsc/{internal => pkg}/execute/tsc/extendedconfigcache.go (89%) rename tsc/{internal => pkg}/execute/tsc/extendedconfigcache_test.go (93%) rename tsc/{internal => pkg}/execute/tsc/help.go (98%) rename tsc/{internal => pkg}/execute/tsc/init.go (93%) rename tsc/{internal => pkg}/execute/tsc/statistics.go (98%) rename tsc/{internal => pkg}/execute/tsctests/contentmapper_watch_test.go (98%) rename tsc/{internal => pkg}/execute/tsctests/fs.go (84%) rename tsc/{internal => pkg}/execute/tsctests/mock_watch_backend.go (96%) rename tsc/{internal => pkg}/execute/tsctests/readablebuildinfo.go (98%) rename tsc/{internal => pkg}/execute/tsctests/runner.go (96%) rename tsc/{internal => pkg}/execute/tsctests/showconfig_test.go (98%) rename tsc/{internal => pkg}/execute/tsctests/sys.go (94%) rename tsc/{internal => pkg}/execute/tsctests/testmain_test.go (53%) rename tsc/{internal => pkg}/execute/tsctests/tsc_test.go (99%) rename tsc/{internal => pkg}/execute/tsctests/tscbuild_test.go (99%) rename tsc/{internal => pkg}/execute/tsctests/tscwatch_test.go (99%) rename tsc/{internal => pkg}/execute/tsctests/watcher_race_test.go (99%) rename tsc/{internal => pkg}/execute/watcher.go (96%) rename tsc/{internal => pkg}/execute/watchmanager/watchbackend.go (96%) rename tsc/{internal => pkg}/execute/watchmanager/watchmanager.go (98%) rename tsc/{internal => pkg}/execute/watchmanager/watchmanager_test.go (98%) rename tsc/{internal => pkg}/format/README.md (100%) rename tsc/{internal => pkg}/format/api.go (96%) rename tsc/{internal => pkg}/format/api_test.go (88%) rename tsc/{internal => pkg}/format/comment_test.go (98%) rename tsc/{internal => pkg}/format/context.go (93%) rename tsc/{internal => pkg}/format/format_test.go (85%) rename tsc/{internal => pkg}/format/indent.go (98%) rename tsc/{internal => pkg}/format/indent_getindentation_test.go (80%) rename tsc/{internal => pkg}/format/indent_test.go (85%) rename tsc/{internal => pkg}/format/rule.go (98%) rename tsc/{internal => pkg}/format/rulecontext.go (98%) rename tsc/{internal => pkg}/format/rules.go (99%) rename tsc/{internal => pkg}/format/rulesmap.go (97%) rename tsc/{internal => pkg}/format/scanner.go (97%) rename tsc/{internal => pkg}/format/span.go (99%) rename tsc/{internal => pkg}/format/util.go (95%) rename tsc/{internal => pkg}/fourslash/baselineutil.go (97%) rename tsc/{internal => pkg}/fourslash/fourslash.go (99%) rename tsc/{internal => pkg}/fourslash/semantictokens.go (96%) rename tsc/{internal => pkg}/fourslash/statebaseline.go (96%) rename tsc/{internal => pkg}/fourslash/test_parser.go (96%) rename tsc/{internal => pkg}/fourslash/tests/NavigationBarJsDoc_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/addAllMissingImportsNoCrash_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/addDeclareToFunction_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/addDeclareToModule_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/addDuplicateSetter_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/addInterfaceMemberAboveClass_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/addMemberToModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/addSignaturePartial_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/aliasMergingWithNamespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/aliasToVarUsedAsType_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/ambientShorthandFindAllRefs_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/ambientShorthandGotoDefinition_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/ambientVariablesWithSameName_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/annotateWithTypeFromJSDoc2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/argumentCompletions_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/argumentsIndexExpression_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/arityErrorAfterSignatureHelp_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/arityErrorAfterStringCompletions_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/arrayCallAndConstructTypings_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/asConstRefsNoErrors1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/asConstRefsNoErrors2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/asConstRefsNoErrors3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/asOperatorCompletion2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/asOperatorCompletion3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/asOperatorCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/asOperatorFormatting_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/assertContextualType_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesClass1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesClass3Fourslash_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule5_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/augmentedTypesModule6_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoCloseFragment_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoCloseTag_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/autoFormattingOnPasting_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportBundlerExports_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletion_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProjectNodeModules_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_paths_toDist_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportCssModule_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportDefaultPascalCase_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportErrorMixedExportKinds_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportExportEqualsOfImportStar_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns10_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns11_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns12_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns13_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns5_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns6_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns7_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns8_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns9_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportFileExcludePatterns_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportIndexReExportPrefix_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/autoImportJsDocImport1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportModuleAugmentation_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportModuleNone2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNewLine_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNoPackageJson_commonjs_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNoPackageJson_nodenext_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNodeBuiltinNodenext_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/autoImportNodeNextJSRequire_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsConditions_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsLength1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsLength2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImports_js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageJsonImports_ts_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageRootPathExtension_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageRootPathTypeModule_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPackageRootPath_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPathsConfigDir_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPathsNodeModules_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPaths_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPatternAmbientModule_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportPnpm_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider4_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider6_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider7_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider8_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider9_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap6_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap7_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap8_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_exportMap9_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_globalTypingsCache_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_importsMap1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_importsMap2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_importsMap3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_importsMap4_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_importsMap5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_pnpm_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_referencesCrash_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_wildcardExports1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_wildcardExports2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportProvider_wildcardExports3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportQuoteDetection_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportReExportFromAmbientModule_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportRootDirs_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSameNameDefaultExported_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSortCaseSensitivity1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSortCaseSensitivity2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkCaseSensitive_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportSymlinkedMonorepo_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTransitiveLeak_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeImport1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeImport2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeImport3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeImport4_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeImport5_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeOnlyPreferred1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeOnlyPreferred2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypeOnlyPreferred3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/autoImportTypedefMissingName_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportVerbatimTypeOnly1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/autoImport_node12_node_modules1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/autoImportsCustomConditions_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportsNodeNext1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/automaticConstructorToggling_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/basicBackspace_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/basicClassElementKeywords_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/basicClassMembers_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/basicEdit_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/basicGlobalCompletions_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/basicInterfaceMembers_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/basicJSDocCompletions_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/basicMultifileCompletions_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/basicQuickInfo_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/basicReplaceLine_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/bestCommonTypeObjectLiterals1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/bestCommonTypeObjectLiterals_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAccessor_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyClassStaticBlock2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyClassStaticBlock_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyClass_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyConstNamedClassExpression_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyContainerNameServer_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyContainerName_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyCrossFile_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyDecorator_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyExportDefaultClass_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyExportDefaultFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyExportEqualsFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFile_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyFunction_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyInterfaceMethod_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyJsxElement_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyTaggedTemplate_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/callSignatureHelp_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/chainedFatArrowFormatting_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/chineseCharacterDisplay_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/classExtendsInterfaceSigHelp1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/classInterfaceInsert_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/classMemberCompletion_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/cloduleAsBaseClass2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/cloduleAsBaseClass_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/cloduleTypeOf1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/closedCommentsInConstructor_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeCompletionEscaping_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingAttributes10_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingAttributes5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingAttributes6_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingEnumMember13_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingMember21_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingMember8_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddMissingParam15_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddOptionalParam14_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddOptionalParam15_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddOptionalParam18_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddParameterNames1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddParameterNames2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddParameterNames3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddVoidToPromise5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAwaitInSyncFunction3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAwaitInSyncFunction4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementDeepInheritance_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementDefaultClass_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceComments_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_all_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_order_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixConvertToMappedObjectType13_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixConvertToMappedObjectType5_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCorrectReturnValue27_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCorrectReturnValue4_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCorrectReturnValue5_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixCorrectReturnValue6_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixExpectedComma03_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixGenerateDefinitions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/codeFixImportNonExportedMember4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixImportNonExportedMember5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromCallInAssignment_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromExpressionStatement_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromFunctionUsage_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageBindingElement_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageCall_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageMember2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageMember3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageMember_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageRestParam2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageRestParam3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageRestParam_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixOverrideModifier18_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixPropertyOverrideAccess4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixRequireInTs3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/codeFixRequireInTs5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpelling4_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpelling5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingCaseSensitive1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingCaseSensitive2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingCaseSensitive3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingCaseWeight1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingCaseWeight2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingJs3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingJs5_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingJs6_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingJs7_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingJs8_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingShortName1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixSpellingShortName2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/codeLensFunctionExpressions01_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/codeLensFunctionsAndConstants01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/codeLensInterface01_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeLensOverloads01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/codeLensShowOnAllClassMethods_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codeLensShowOnAllFunctions_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/codeLensShowOnInterfaceMethods_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/codefixClassImplementInterface_omit_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/codefixCrashExportGlobal_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/codefixInferFromUsageNullish_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/commentsBlocks_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/commentsEnumsFourslash_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/commentsExternalModulesFourslash_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/commentsImportDeclaration_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/commentsInheritanceFourslash_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/commentsInterfaceFourslash_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/commentsLinePreservation_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/commentsOverloadsFourslash_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/commentsUnion_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/commentsVariables_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterAtChar_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterBackslashFollowingString_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterBrace_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterCallExpression_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterDotDotDot_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterExtendsL10nInJs_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterImportWithJSDoc_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterNewline2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterNewline_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterQuestionDot_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionAmbientPropertyDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionAsKeyword_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionAtCaseClause_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAtDottedNamespace_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionAutoInsertQuestionDot_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionCloneQuestionToken_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionColonToken_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionDetailSignature_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForConst_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForUnionProperty2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryForUnionProperty_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionEntryOnNarrowedType_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionExportFrom_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/completionFilterText1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionFilterText2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionFilterText3_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionFilterText4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionForComputedStringProperties_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionForMetaProperty_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForObjectProperty_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral12_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral13_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral14_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral15_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral16_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral4_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral8_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralExport_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralFromSignature2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralFromSignature_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralImport1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralImport2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralRelativeImport4_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralRelativeImport5_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralRelativeImport6_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_details_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference5_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference6_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference7_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_quotePreference_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionForStringLiteral_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionImportAttributes_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionImportKeywordNoCrash_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionImportMeta_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionInAugmentedClassModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionInChecks1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionInIncompleteCallExpression_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionInJSDocFunctionNew_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionInJSDocFunctionThis_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionInJsDocQualifiedNames_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionInJsDoc_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionInNamedImportLocation_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionInTernaryConditional_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionInTypeOf1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionInTypeOf2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionInUncheckedJSFile_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionInsideFunctionContainsArguments_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionJSDocNamePath_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionJSDocNoCrash2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionJSDocNoCrash_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionJsxNoCrash_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterAnyType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterClassExtends_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterFunction2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterFunction3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterFunction_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterInvalidCharacter_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterNumericLiteral1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterNumericLiteral_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterObjectLiteral1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterPropertyName_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterSlash_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterSpreadOperator01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterStringLiteral1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtBeginningOfFile01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtDeclarationOfParameterType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEOF1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEOF2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEOF_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtInvalidLocations_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtNodeBoundary_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListAtThisType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListBeforeKeyword_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListBeforeNewScope01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListBeforeNewScope02_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListBuilderLocations_Modules_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionListBuilderLocations_parameters_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListBuilderLocations_properties_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListCladule_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListClassMembers_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListClassPrivateFields_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListClassThisJS_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListEnumMembers_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListEnumValues_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListForDerivedType1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListForExportEquals2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListForExportEquals_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListForGenericInstance1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListForObjectSpread_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListForRest_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListForShorthandPropertyAssignment_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListForUnicodeEscapeName_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListFunctionExpression_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListFunctionMembers_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListImplementingInterfaceFunctions_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClassStaticBlocks_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction02_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction04_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction05_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction06_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedFunction07_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListInComments2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListInComments3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInComments_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListInContextuallyTypedArgument_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInEmptyFile_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInExportClause01_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListInExportClause02_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListInExportClause03_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListInExtendsClauseAtEOF_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInExtendsClause_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInFatArrow_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInFunctionDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause01_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause02_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause03_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause04_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause05_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInImportClause06_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamedClassExpression_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamedFunctionExpression1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamedFunctionExpression_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInNamespaceImportName01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern02_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern03_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern04_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern05_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern06_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern07_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern08_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern09_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern10_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern11_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern12_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern13_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern14_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern15_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectBindingPattern16_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral5_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral7_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral8_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInObjectLiteral_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInReturnWithContextualThis_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInScope_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInStringLiterals1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInStringLiterals2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTemplateLiteralParts1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypedObjectLiterals2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypedObjectLiterals3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypedObjectLiterals4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedCommaExpression01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedCommaExpression02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedForLoop01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedForLoop02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction02_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction04_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction05_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction06_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction07_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction08_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction09_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction11_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction12_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction13_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction14_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction15_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction16_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction17_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction18_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedFunction19_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedIndexSignature01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedIndexSignature02_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedIndexSignature03_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTemplate01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTemplate02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTypeArguments_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInUnclosedVoidExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListInferKeyword_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionListInsideTargetTypedFunction_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListInstanceProtectedMembers2_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInstanceProtectedMembers3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInstanceProtectedMembers4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListInstanceProtectedMembers_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionListInvalidMemberNames2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListInvalidMemberNames_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListKeywords_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListModuleMembers_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionListNewIdentifierBindingElement_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListObjectMembers_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListOfGenericSymbol_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListOfSplitInterface_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListOfUnion_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnAliasedModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnAliases2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnAliases3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnAliases_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnMethodParameterName_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnParamInClass_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnParam_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnPrivateVariableInModule_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnSuper_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionListOnVarBetweenModules_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListOutsideOfForLoop01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListOutsideOfForLoop02_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateMembers2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateMembers3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateMembers_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateNamesAccessors_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateNamesMethods_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListPrivateNames_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionListProtectedMembers_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListStaticMembers_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListStaticProtectedMembers2_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionListStaticProtectedMembers3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListStaticProtectedMembers_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionListStringParenthesizedExpression_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListStringParenthesizedType_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionListSuperMembers_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionListWithAmbientDeclaration_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionListWithLabel_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionListWithUnresolvedModule_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionListWithoutVariableinitializer_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/completionList_getExportsOfModule_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionOfAwaitPromise7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionOfInterfaceAndVar_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionPreferredSuggestions1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionResolveAfterEdit_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionResolveKeyword_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionReturnConstAssertion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionSatisfiesKeyword_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionTypeAssertion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionTypeGuard_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionTypeofExpressions_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionUsingKeyword_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionWithNamespaceInsideFunction_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completions01_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completions03_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsAfterJSDoc_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionsAfterKeywordsInBlock_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsAfterLessThanToken_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/completionsAssertKeyword_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsAsserts_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsAtGenericTypeArguments_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsAtTypeArguments_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsAugmentedTypesClass2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsBeforeRestArg1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsBigIntShowNoCompletions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsCombineOverloads_restParameter_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsCombineOverloads_returnType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsCombineOverloads_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsConditionalMember_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsDefaultExport_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsDeprecatedTags_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsDestructuring_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsDiscriminatedUnion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsECMAPrivateMember_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsElementAccessNumeric_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsExportImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsExternalModuleRenamedExports_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionsFromUntitledFile_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsGeneratorFunctions_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess4_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericIndexedAccess6_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsGenericUnconstrained_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportBaseUrl_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportDefaultExportCrash1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportDefaultExportCrash2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportFromJSXTag_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportOrExportSpecifier_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportPathsConflict_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportTypeKeyword_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsImportYieldExpression_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_46332_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_ambient_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_augmentation_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_compilerOptionsModule_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_computedSymbolName_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_defaultFalsePositive_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_addToNamedImports_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_anonymous_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_didNotExistBefore_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_reExport_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_default_symbolName_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_details_withMisspelledName_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_duplicatePackages_types_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_exportEquals_anonymous_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_exportEquals_global_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_exportEquals_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_fromAmbientModule_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_importType_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_mergedReExport_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_multipleWithSameName_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_addToNamedImports_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_didNotExistBefore_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_named_namespaceImportExists_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_noSemicolons_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_promoteTypeOnly2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_quoteStyle_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_reExportDefault2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_reExportDefault_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_reExport_wrongName_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_reexportTransient_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_require_addNew_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_require_addToExisting_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_require_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_shadowedByLocal_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_tsx_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_typeOnly_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_umdModules3_script_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionsInEmptyTupleType_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsInExport_invalid_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionsInExport_moduleBlock_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionsInExport_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionsInJsxTag_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsInMapConstructorNoCrash_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsInRequire_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsIndexSignatureConstraint1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsInterfaceElement_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionsIsTypeOnlyCompletion_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocNoCrash1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocNoCrash2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocNoCrash3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocSignature_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsJSDocTrivia_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsPropertyAssignment_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsdocTag_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsdocTypeTagCast_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsxAttribute2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsxAttributeInitializer2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsJsxExpression_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsKeyof_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsKeywordsExtends_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiteralOverload_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsLiterals_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsMergedDeclarations1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsMergedDeclarations2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsNamespaceMergedWithClass_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsNamespaceMergedWithObject_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsNamespaceName_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/completionsNewTarget_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsNonExistentImport_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod3_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralMethod6_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralModuleExports_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionsOptionalKindModifier_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsOptionalMethod_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod0_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod10_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod11_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod12_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod14_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod17_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod18_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod19_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod1_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod20_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod21_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod22_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod3_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod5_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod6_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethod9_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethodCrash1_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethodCrash2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingMethodDefaultExported_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingProperties1_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingProperties2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsOverridingProperties3_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsPathUnknownExtension_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsPathsJsonModule_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsPathsRelativeJsonModule_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_importType_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_kinds_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsPaths_pathMapping_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/completionsPrivateProperties_Js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsPropertiesPriorities_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecommended_equals_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecommended_namespace_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecommended_switch_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecommended_union_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/completionsRecursiveNamespace_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsSelfDeclaring1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsSelfDeclaring2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsSelfDeclaring3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/completionsStringsWithTriggerCharacter_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/completionsSymbolMembers_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsTriggerCharacter_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionsTuple_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsTypeAssertionKeywords_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsTypeKeywords_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsTypeOnlyNamespace_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsUnionStringLiteralProperty_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/completionsUnion_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsUniqueSymbol1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsUniqueSymbol_import_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/completionsUnterminatedLiteral_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag10_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag3_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag6_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithDeprecatedTag7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithGenericStringLiteral_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOptionalProperties_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOverride1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithOverride2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/completionsWithStringReplacementMode1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/completionsWrappedClass_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/completionsWritingSpreadArgument_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/constQuickInfoAndCompletionList_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/constructorBraceFormatting_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/constructorFindAllReferences1VS_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/constructorFindAllReferences1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/constructorFindAllReferences2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/constructorFindAllReferences3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/constructorFindAllReferences4_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/constructorQuickInfo_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperAutoImports_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperCodeActions_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperCompletions_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDeclarationMapNavigation_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDefinition_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDiagnostics_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDocumentHighlights_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDocumentSymbols_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDuplicateMappings_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperDuplicateProjections_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperEditSafety_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperHover_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperImplementation_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperRangeFeatures_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperReferences_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperRename_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperSignatureHelp_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperSupplementalDefinition_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/contentMapperTypeDefinition_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/contentMapper_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/contextualTypingFromTypeAssertion1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/contextualTypingGenericFunction1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/contextualTypingReturnExpressions_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/contextuallyTypedParameters_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/declarationMapGoToDefinition_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/declarationMapsOutOfDateMapping_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/declareFunction_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/decoratorOnPrivateMethod_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/defaultParamsAndContextualTypes_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/definition01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/definitionNameOnEnumMember_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/definition_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/deleteClassWithEnumPresent_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/deleteExtensionInReopenedInterface_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/deleteModifierBeforeVarStatement1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/deleteTypeParameter_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/deprecatedContextualPropertyOverload_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/deprecatedInheritedJSDocOverload_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/destructuredInterfaceJSDoc_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/destructuredIntersectionJSDoc_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateClassDecl01_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateConstructor01_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateEmptyFile_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateFunctionExpression_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateInMultiLineComment_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateInSingleLineComment_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateIndentation_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplatePrototypeMethod_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateRegex_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateReturnsTag1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateReturnsTag2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateVariableStatements01_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateVariableStatements02_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateVariableStatements03_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties1_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties2_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties3_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties4_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties5_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtInheritedProperties6_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightDefaultInKeyword_test.go (67%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightDefaultInSwitch_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightImportPath_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightInExport1_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightInKeyword_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightInTypeExport_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightJSDocTypedef_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightReferenceDirective_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightTemplateStrings_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightTypeofThis_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightVarianceModifiers_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightYield_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights01_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights02_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_33722_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_40082_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_filesToSearch_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/documentHighlights_windowsPath_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/documentSymbolPrivateName_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/doubleUnderscoreCompletions_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/doubleUnderscoreRenames_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/duplicateFunctionImplementation_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/duplicateIndexers_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/duplicatePackageServices_fileChanges_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/duplicatePackageServices_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/duplicateTypeParameters_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/editJsdocType_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/editLambdaArgToTypeParameter1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/editTemplateConstraint_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/emptyArrayInference_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/emptyExportFindReferences_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/enumAddition_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/enumUpdate1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/errorConsistency_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/esModuleInteropFindAllReferences2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/esModuleInteropFindAllReferences_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions10_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions11_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions3_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions4_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletions8_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/exportAssignmentMissingName_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/exportDefaultClass_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/exportDefaultFunction_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/exportEqualCallableInterface_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/exportEqualTypes_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/exportEqualsInterfaceA_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/exportInLabeledStatement_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/exportInObjectLiteral_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/extendInterfaceOverloadedMethod_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/extendsKeywordCompletion1_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/extendsKeywordCompletion2_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/extendsTArray_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/externalModuleIntellisense_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/failureToImplementClass_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesDynamicImport1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesDynamicImport2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesDynamicImport3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesImportMeta_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesLinkTag1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesLinkTag2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesLinkTag3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesOfConstructor_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesOfJsonModule_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesTripleSlash_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/findAllReferencesUndefined_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsBadImport_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsCatchClause_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsClassExpression0_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsClassExpression1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsClassExpression2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsClassStaticBlocks_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsCommonJsRequire2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsCommonJsRequire3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsCommonJsRequire_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsConst_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsConstructorFunctions_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsDeclareClass_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsDefaultImport_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsDefinition_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsDestructureGeneric_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsDestructureGetter_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsEnumAsNamespace_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsEnumMember_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportAsNamespace_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportConstEqualToClass_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportEquals_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsExportStringRename_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForComputedProperties2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForComputedProperties_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport02_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport04_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport08_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport09_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExportVS_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultExport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForDefaultKeyword_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForFunctionExpression01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForImportCallType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForImportCall_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForMappedType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForModuleGlobal_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForModule_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForObjectSpread_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForRest_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForStringLiteralTypes_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForStringLiteral_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsFromContextualUnionType1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportDefault_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportEquals_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportNamed_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsImportType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInClassExpression_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsIndexedAccessTypes_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties1VS_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInheritedProperties5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInsideTemplates1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInsideTemplates2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsInsideWithBlock_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsIsDefinition_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocImportTag2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocImportTag3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocImportTag4_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocImportTag5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocImportTag_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsDocTypeDef_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsMappedType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsModuleAugmentation_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsModuleDotExports_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsNoImportClause_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsNonModule_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOfConstructor2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOfConstructor_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnDecorators_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnDefinition2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnDefinition_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnImportAliases2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnImportAliases_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPrivateNameAccessors_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPrivateNameMethods_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPrivateNameProperties_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExportLocal_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExportStarAs_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExportStar_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExport_broken2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExport_broken_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExports2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsReExportsUseInImportType_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsRenameImportWithSameName_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsRootSymbols_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsThisKeyword_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsTripleSlashRef1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsTypedef_importType_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsTypedef_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsTypeofImport_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsUnionProperty_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefsWriteAccess_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_js1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_js2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_js3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_js4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_js_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_named_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_importType_typeofImport_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findAllRefs_jsEnum_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesAcrossMultipleProjects_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesAfterEdit_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesDefinitionDisplayParts_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesJSXTagName2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesJSXTagName3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesJSXTagName_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/findReferencesSeeTagInTs_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/fixingTypeParametersQuickInfo_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/foldingRangeJSXPropertyAccess_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/foldingRangeLineFoldingOnly_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/forceIndentAfterNewLineInsert_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/format01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatAfterMultilineComment_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/formatAfterObjectLiteral_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatAfterPasteInString_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatAfterWhitespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatAnyTypeLiteral_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatArrayLiteralExpression_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatAsyncClassMethod1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatAsyncClassMethod2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatAsyncComputedMethod_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatAsyncKeyword_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formatBracketInSwitchCase_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatColonAndQMark_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/formatComments_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/formatConflictDiff3Marker1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formatConflictMarker1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatControlFlowConstructs_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatDebuggerStatement_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentWithJSDoc_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentWithTrivia_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formatDocumentZeroTabSize_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatDotAfterNumber_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/formatEmptyBlock_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/formatEmptyParamList_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatExportAssignment_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/formatIfTryCatchBlocks_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/formatIfWithEmptyCondition_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/formatImplicitModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatImportDeclaration_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formatInTryCatchFinally_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatInTsxFiles_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/formatJsxDottedTagName_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formatMultilineComment_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/formatMultilineImportBrace_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatMultilineTypesWithMapped_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formatMultipleFunctionArguments_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatObjectBindingPattern_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatOnEnterFunctionDeclaration_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatOnEnterInComment_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/formatOnSemiColonAfterBreak_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatParameter_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatSatisfiesExpression_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionDocCommentInBlock_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionEditAtEndOfRange_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionSingleProperty_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia7_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia8_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formatSelectionWithTrivia_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatSimulatingScriptBlocks_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/formatSpaceAfterImplementsExtends_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatTSXWithInlineComment_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatTemplateStringOnPaste_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatTrimRemainingRange_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatTryCatch_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formatTryFinally_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatTsxClosingAfterJsxText_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatTsxMultilineAttributeString_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formatTsx_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatTypeAnnotation1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formatTypeAnnotation2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formatTypeArgumentOnNewLine_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formatTypeParameters_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatV8Directive_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formatVariableDeclarationList_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/formatWithStatement_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formatonkey01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formattingAfterChainedFatArrow_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingAfterMultiLineIfCondition_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingAfterMultiLineString_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formattingArrayLiteral_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingAwait_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingBlockInCaseClauses_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingChainingMethods_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formattingComma_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formattingCommentsBeforeErrors_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/formattingConditionalOperator_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingConditionalTypes_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formattingCrash_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingDecorators_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/formattingDoubleLessThan_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formattingElseInsideAFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formattingExpressionsInIfCondition_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingFatArrowFunctions_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/formattingForIn_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingForLoopSemicolons_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formattingForOfKeyword_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingGlobalAugmentation1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingGlobalAugmentation2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingHexLiteral_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/formattingIfInElseBlock_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formattingIllegalImportClause_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingInComment_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/formattingInDestructuring1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingInDestructuring2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingInDestructuring3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/formattingInDestructuring4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingInDestructuring5_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formattingInExpressionsInTsx_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingInMultilineComments_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingJsxTexts1_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/formattingJsxTexts2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formattingJsxTexts3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingJsxTexts4_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/formattingKeywordAsIdentifier_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingMappedType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/formattingMultilineTemplateLiterals_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingNestedScopes_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formattingNonNullAssertionOperator_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingObjectLiteral_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingOfChainedLambda_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingOfExportDefault_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formattingOfMultilineBlockConstructs_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnClasses_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnCloseBrace_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnClosingBracket_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnCommaOperator_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnConstructorSignature_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnDocumentReadyFunction_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnEnterInComments_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnEnterInStrings_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnEnter_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnInterfaces_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnInvalidCodes_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnModuleIndentation_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnNestedStatements_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnObjectLiteral_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnSemiColon_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnSingleLineBlocks_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnTabAfterCloseCurly_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/formattingOnVariety_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/formattingOverrideKeyword_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingQMark_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingReadonly_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/formattingRegexes_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingReplaceTabsWithSpaces_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/formattingSkippedTokens_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpaceBeforeCloseParen_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpaceBetweenParent_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingSpacesAfterConstructor_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/formattingTemplatesWithNewline_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/formattingTemplates_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/formattingTypeInfer_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/formattingVoid_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/formattingWithMultilineComments_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/formattingofSingleLineBlockConstructs_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/forwardReference_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/functionFormatting_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/functionIndentation_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/functionOverloadCount_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/functionProperty_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/functionTypeFormatting_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/functionTypePredicateFormatting_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/functionTypes_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/funduleWithRecursiveReference_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/generatorDeclarationFormatting_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/genericArityEnforcementAfterEdit_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/genericAssignmentCompat_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/genericCallsWithOptionalParams1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericCloduleCompletionList_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/genericCombinatorWithConstraints1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/genericCombinators1_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/genericCombinators3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionReturnType2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionReturnType_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionSignatureHelp1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionSignatureHelp2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionSignatureHelp3_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/genericFunctionWithGenericParams1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/genericInterfacePropertyInference1_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/genericInterfacePropertyInference2_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericInterfacesWithConstraints1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/genericMapTyping1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/genericMethodParam_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/genericObjectBaseType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/genericParameterHelpConstructorCalls_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/genericParameterHelpTypeReferences_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/genericParameterHelp_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/genericRespecialization1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericWithSpecializedProperties1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericWithSpecializedProperties2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/genericWithSpecializedProperties3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/genericsFormattingMultiline_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/genericsFormatting_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getDeclarationDiagnostics_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_ambientModule_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_amd_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_casing_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_cssImport2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_cssImport3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_cssImport4_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_directory_down_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_directory_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_directory_up_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_jsExtension_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_jsRename_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_js_simple_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_preferences_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_renameToIndex_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_subDir_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_symlink_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_tsconfig_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getJSXOutliningSpans_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions10_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions11_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions12_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions13_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions14_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions15_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions16_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions18_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions19_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions20_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions21_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions22_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions8_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions9_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptGlobalCompletions1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo7_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptQuickInfo8_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getNavigationBarItems_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAbstract01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAbstract02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAbstract03_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAfterEdit_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAsyncAwait2_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAsyncAwait3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesAsyncAwait_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionPublic_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionStatic_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesClassExpressionThis_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConst01_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConst02_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConst03_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConst04_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConstructor2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesConstructor_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesDeclare1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesDeclare2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesDeclare3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesExport1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesExport2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesExport3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElse2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElse3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElse4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElse5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElseBroken_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIfElse_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesIsWriteAccess_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesLoopBreakContinue_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesModifiersNegatives1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesOfDecorators_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesPrivate1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesPrivate2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesProtected1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesProtected2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesPublic1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesPublic2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReadonly1_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReadonly2_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReadonly3_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReturn2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReturn3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReturn4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReturnBroken_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesReturn_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSetAndGet2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSetAndGet3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSetAndGet_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesStatic1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesStringLiteralTypes_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesStringLiterals_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSuper2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSuper3_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSuperNegatives_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSuper_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis3_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis4_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis5_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis6_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThisNegatives2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThis_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow5_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow6_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow7_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow8_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesThrow_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesTryCatchFinally2_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesTryCatchFinally3_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesTryCatchFinally4_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesTryCatchFinally_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/getOccurrencesYield_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForArrayDestructuring_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForBlockComments_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForObjectDestructuring_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForObjectsInArray_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForSingleLineComments_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForTupleType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningForTypeLiteral_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansDepthElseIf_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForComments_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForImports_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForRegions_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/getOutliningSpans_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/getPreProcessedFile_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/getQuickInfoForIntersectionTypes_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/getRenameInfoTests1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/getRenameInfoTests2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/globalThisCompletion_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAlias_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAmbiants_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionApparentTypeProperties_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAwait1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAwait2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAwait3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionAwait4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionBuiltInTypes_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionBuiltInValues_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionClassConstructors_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionClassStaticBlocks_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionConstructorOverloads_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDecoratorOverloads_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDecorator_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDestructuredRequire1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDestructuredRequire2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDifferentFile_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDynamicImport1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDynamicImport2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDynamicImport3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionDynamicImport4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExpandoClass1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExpandoClass2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExpandoElementAccess_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName6_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName8_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName9_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionExternalModuleName_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionFunctionOverloads_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionFunctionType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImplicitConstructor_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImport1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImport2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImport3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportMeta_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames10_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames11_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames4_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames6_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames8_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames9_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImportedNames_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionImports_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionInMemberDeclaration_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionInTypeArgument_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionIndexSignature2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionIndexSignature_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionInstanceof1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionInstanceof2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsDocImportTag1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsDocImportTag2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsDocImportTag3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsDocImportTag4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsDocImportTag5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsModuleExports_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsModuleName_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsxCall_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsxNotSet_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionLabels_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionMember_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionMetaProperty_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionMethodOverloads_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionModifiers_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionMultipleDefinitions_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectBindingPattern_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionObjectSpread_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember11_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember12_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember13_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember14_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember15_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember16_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember17_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember18_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember19_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember20_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember21_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember22_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember23_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember24_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember25_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember26_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember6_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionOverriddenMember9_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionPartialImplementation_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionPrimitives_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionPrivateName_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionPropertyAssignment_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionRest_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn4_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn6_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionReturn7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSameFile_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionScriptImportServer_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionScriptImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShadowVariable_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty01_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty02_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty03_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty04_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty05_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionShorthandProperty06_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSignatureAlias_require_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSignatureAlias_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSimple_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSourceUnit_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase5_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionSwitchCase7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionThis_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionTypeOnlyImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionTypePredicate_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionTypeofThis_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUndefinedSymbols_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionVariableAssignment1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionVariableAssignment2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionVariableAssignment3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionVariableAssignment_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionYield1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionYield2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionYield3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinitionYield4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinition_filteringMappedType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinition_mappedType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinition_super_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToDefinition_untypedModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationClassMethod_00_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationClassMethod_01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationEnum_00_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationEnum_01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_00_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_01_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_02_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_03_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_04_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_05_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_06_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_08_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_09_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_10_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceMethod_11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceProperty_00_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterfaceProperty_01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_00_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_01_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_02_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_03_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_04_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_05_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_06_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_07_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_08_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_09_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInterface_10_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationInvalid_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_00_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_01_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_02_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_03_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_04_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_05_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_06_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_07_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationLocal_08_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_00_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_03_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_04_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_05_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNamespace_06_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationSuper_00_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationSuper_01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationThis_00_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationThis_01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementationTypeAlias_00_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementation_inDifferentFiles_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/goToImplementation_satisfies_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToModuleAliasDefinition_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToSource10_mapFromAtTypes3_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSource11_propertyOfAlias_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToSource12_callbackParam_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToSource13_nodenext_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToSource15_bundler_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/goToSource17_AddsFileToProject_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/goToSource1_localJsBesideDts_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToSource5_sameAsGoToDef1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToSource6_sameAsGoToDef2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/goToSource7_conditionallyMinified_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/goToSource8_mapFromAtTypes_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/goToSource9_mapFromAtTypes2_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionDefaultExport_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionImportVariants_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionImports_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionNestedScope_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionPackageResolution_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionProperties_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionReExportChain_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionScopedPackage_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionTripleSlash_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinitionTypes_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/goToSourceDefinition_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionAliases_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionEnumMembers_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionImportMeta_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionModifiers_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionPrimitives_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinitionUnionType_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_Pick_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_arrayType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_promiseType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_returnType_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_typeReference_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeDefinition_typedef_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/goToTypeWithTupleTypes_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionConstructorFunction_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionLinkTag6_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionSatisfiesTag_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/gotoDefinitionThrowsTag_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/highlightsForExportFromUnfoundModule_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/hoverAliasInImportedFile_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/hoverCallSignatureDocumentation_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/hoverCircularInheritedDocumentation_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/hoverMixinOverrideDocumentation_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/hoverNilBaseSymbolIntersection_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/hoverOptionalMembers_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/hoverOverComment_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/hoverOverPrivateName_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/hoverQualifiedGenericNames_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/identifierErrorRecovery_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/implementation01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/importAllowRenameOfImportPath_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importAttributesTypesLanguageService_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImports_js_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importCompletions_importsMap1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importCompletions_importsMap2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importCompletions_importsMap3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importCompletions_importsMap4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importCompletions_importsMap5_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/importFixIndentedStatements_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importFixesGlobalTypingsCache_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importMetaCompletionDetails_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/importModuleSpecifierEnding_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importModuleSpecifierPreference_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport5_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport6_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixDefaultExport_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport0_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport10_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport11_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport12_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport6_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport8_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImport9_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixExportAsDefault_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixInferEndingPreference_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixJsEnding_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportDefault0_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFile0_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFile1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFile2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFile3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFile4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportIndex_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixOptionalImport0_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixOptionalImport1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixReExport_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixShebang_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobal0_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobal1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_HeaderComment1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_HeaderComment2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_all2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_all_js_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_all_promoteType_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_all_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_barrelExport2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_barrelExport3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_barrelExport4_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_barrelExport5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_barrelExport_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_defaultExport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_dollar_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_exportEquals_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_fromPathMapping_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType4_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType5_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType6_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType7_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType8_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_importType_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsExtension_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx4_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx6_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsx7_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_jsxReact17_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_order2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_order_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_pnpm1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_quoteStyle_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_reExportDefault_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_reExport_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_UMD_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_addToExisting_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_require_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_sortByDistance_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_symlink_own_package_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_symlink_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_trailingComma_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_typeOnly2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_typeOnly_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_typesVersions_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_types_classic_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/importNameCodeFix_withJson_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importPreferTypeOnlyAutoImports_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions4_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_js2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_js_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_noSnippet_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_pnpm1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_quotes_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importStatementCompletions_semicolons_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importSuggestionsCache_exportUndefined_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions6_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions8_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importTypeCompletions9_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importTypeFormatting_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/importTypeMemberCompletions_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/importTypeNodeGoToDefinition_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/importValueUsedAsType_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/incompatibleOverride_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingDynamicImport1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingDynamicImport2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingDynamicImport3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingDynamicImport4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingTopLevelAwait1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingTopLevelAwait2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/incrementalParsingWithJsDoc_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/incrementalResolveAccessor_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/incrementalResolveConstructorDeclaration_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/indentAfterFunctionClosingBraces_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/indentationInJsx3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/indexSignatureWithoutAnnotation_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/indexerReturnTypes1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/indirectClassInstantiation_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/indirectJsRequireRename_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/inheritedModuleMembersForClodule2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsCrash1_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsElementAccess_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsEnumMemberValue_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsIdentifierLocation_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsImportType1_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsImportType2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInferredTypePredicate1_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveImportType1_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveImportType2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveMultifile1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveParameterNames_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveReturnType_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsInteractiveWithClosures_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsJsDocParameterNames_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsMultifile1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsNoParameterHints_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsNoVariableTypeHints_test.go (66%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsOverloadCall1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsOverloadCall2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsParameterNames_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsPropertyDeclarations2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsPropertyDeclarations_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsQuotePreference1_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsQuotePreference2_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsReparsedNodeCrash_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsRestParameters1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsRestParameters2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsReturnType_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsThisParameter_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsTupleTypeCrash_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsTypeMatchesName_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsUsing_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsVariableTypes1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsVariableTypes2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsVariableTypes3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/inlayHintsWithClosures_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/insertMethodCallAboveOthers_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/insertPublicBeforeSetter_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/insertSecondTryCatchBlock_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/instanceTypesForGenericType1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/intellisenseInObjectLiteral_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/interfaceExtendsPrimitive_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/invalidRestArgError_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/invertedCloduleAfterQuickInfo_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/invertedFunduleAfterQuickInfo_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionAcrossModuleProjects_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionInterfaceImplementation_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionOverloads_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionShorthandProperty_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionSingleImport_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/isDefinitionSingleReference_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/issue57429_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/issue57585-2_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptClass2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptClass3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptClass4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModules12_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModules13_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModules14_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModules18_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModules19_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModulesError1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/javaScriptModulesWithBackticks_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules20_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules21_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules22_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules23_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules24_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModules25_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModulesTypeImportAsValue_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/javascriptModulesTypeImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsDocAliasQuickInfo_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsDocAugmentsAndExtends_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocAugments_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsDocDontBreakWithNamespaces_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsDocExtends_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocForTypeAlias_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures10_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures11_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures12_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures13_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures3_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures5VS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures5_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures6VS_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures6_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures7_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionSignatures8_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsDocGenerics1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsDocGenerics2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsDocIndentationPreservation1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsDocIndentationPreservation2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsDocIndentationPreservation3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsDocInheritDoc_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription10_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription11_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription12_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription6_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription7_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsDocPropertyDescription9_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSee1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSee2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSee3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSee4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSee_rename1_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/jsDocServices_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/jsDocSignature-43394_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/jsDocTagsWithHyphen_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsDocTypeTagQuickInfo1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/jsDocTypeTagQuickInfo2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsDocTypedefQuickInfo1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsFileImportNoTypes2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/jsRequireQuickInfo_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsSignature-41059_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsconfig_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocCallbackTagRename01_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/jsdocCallbackTag_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion10_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion11_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion12_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion13_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion14_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion15_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion16_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion17_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion18_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion19_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion1_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion20_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion21_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion22_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion2_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion5_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion6_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion8_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocDeprecated_suggestion9_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocExtendsTagCompletion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocImplementsTagCompletion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocImportTagCompletion1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink_findAllReferences1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/jsdocLink_rename1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/jsdocNullableUnion_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsdocOnInheritedMembers1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocOnInheritedMembers2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocOverloadTagCompletion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocParamTagSpecialKeywords_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocParam_suggestion1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocParameterNameCompletion_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsdocPropTagCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsdocPropertyTagCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsdocReturnsTagVS_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/jsdocReturnsTag_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocSatisfiesTagRename_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocSnippetCompletion_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTemplateTagCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsdocThrowsTagCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/jsdocThrowsTag_rename_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTag1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTag2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagNamespace_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagNavigateTo_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagRename01_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagRename02_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagRename03_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagRename04_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagServices_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/jsdocTypedefTag_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/jsxAriaLikeCompletions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeCompletionStyleNone_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/jsxElementExtendsNoCrash1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/jsxElementExtendsNoCrash2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/jsxElementExtendsNoCrash3_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/jsxGenericQuickInfo_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/jsxQualifiedTagCompletion_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/jsxSpreadReference_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/jsxTagNameCompletionClosed_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/jsxTagNameCompletionUnclosed_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/keywordShadowsAutoImport_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/lambdaThisMembers_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/letQuickInfoAndCompletionList_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag10_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag11_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag12_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag4_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag5_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag6_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag7_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag8_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/linkedEditingJsxTag9_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/localFunction_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/localGetReferences_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/memberCompletionFromFunctionCall_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/memberCompletionOnRightSideOfImport_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/memberCompletionOnTypeParameters2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/memberCompletionOnTypeParameters_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/memberConstructorEdits_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/memberListAfterDoubleDot_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/memberListAfterSingleDot_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/memberListErrorRecovery_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/memberListInFunctionCall2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/memberListInFunctionCall_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/memberListInReopenedEnum_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/memberListInWithBlock2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/memberListInWithBlock3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/memberListInWithBlock_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/memberListInsideObjectLiterals_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfClass_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfEnumFromExternalModule_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfEnumInModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfExportedClass_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfModuleBeforeKeyword_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/memberListOfVarInArrowExpression_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/memberListOnConstructorType_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/memberListOnContextualThis_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/memberListOnExplicitThis_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/memberListOnFunctionParameter_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/memberListOnThisInClassWithPrivates_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/memberOverloadEdits_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/memberlistOnDDot_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/missingMethodAfterEditAfterImport_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/moduleEnumModule_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/moduleMembersOfGenericType_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/moduleNodeNextAutoImport1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/moduleNodeNextAutoImport2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/moduleNodeNextAutoImport3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/multiModuleClodule_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/multiModuleFundule_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/multilineCommentBeforeOpenBrace_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/navbar01_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/navbarNestedCommonJsExports_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/navbar_const_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/navbar_contains-no-duplicates_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/navbar_exportDefault_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/navbar_let_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/navigateItemsLet_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigateToImport_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/navigateToSymbolIterator_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarAssignmentTypes_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarClassStaticBlock_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarComputedPropertyName_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototype2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototype3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototype4_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototypeNested_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarFunctionPrototype_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarGetterAndSetter_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarImports_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarInitializerSpans_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsBindingPatterns_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass1_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass5_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsClass6_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsComputedNames_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsEmptyConstructors_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsExports_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsFunctionProperties_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsFunctionsBroken_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsFunctions_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsImports_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItems2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItemsExternalModules_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsItems_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsMissingName1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsMissingName2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsModules1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsModules2_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsSymbols1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsSymbols2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsSymbols3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsSymbols4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarItemsTypeAlias_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarMerging_grandchildren_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarMerging_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarNestedObjectLiterals_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarPrivateNameMethod_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarPrivateName_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarPropertyDeclarations_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarVariables_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationBarWithLocalVariables_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsExactMatch2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsExportDefaultExpression2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsExportDefaultExpression_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsExportEqualsExpression2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsExportEqualsExpression_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsPrefixMatch2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/navto_emptyPattern_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/navto_excludeLib1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/navto_excludeLib2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/navto_excludeLib3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/ngProxy1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/ngProxy2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/ngProxy3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/ngProxy4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/noQuickInfoForLabel_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/noQuickInfoInWhitespace_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/noSignatureHelpOnNewKeyword_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/noTypeParameterInLHS_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/nodeModulesImportCompletions1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/nodeNextModuleKindCaching1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/nonExistingImport_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/numericPropertyNames_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/objectLiteralBindingInParameter_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/occurrences01_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/occurrences02_test.go (70%) rename tsc/{internal => pkg}/fourslash/tests/optionalPropertyFormatting_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports11_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports12_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports13_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports14_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports15_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports16_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports17_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports18_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports19_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports20_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports21_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports22_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports23_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports2_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports3_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports6_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports8_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports9_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsAttributes2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsAttributes3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsAttributes4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsAttributes_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsGroup_Newline_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsPathsUnicode1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsPathsUnicode2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsPathsUnicode3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsPathsUnicode4_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsReactJsxDev_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsReactJsx_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsShebang_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType11_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType3_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType4_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType6_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType7_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType8_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsType9_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsUnicode1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsUnicode2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsUnicode3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsUnicode4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/organizeImportsWithTraceResolution1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_coalesceExports_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_coalesceImports_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_exportLeadingComment_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_removeOnly_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/organizeImports_typeOrderSameModule_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/outliningHintSpansForFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForArguments_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForArrowFunctionBody_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForFunction_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForImportTagJSDoc_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForImportsAndExports_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansForParenthesizedExpression_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/outliningSpansSwitchCases_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/overloadObjectLiteralCrash_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/overloadOnConstCallSignature_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/overloadQuickInfo_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/packageJsonImportsFailedLookups_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/parameterWithDestructuring_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/parameterWithNestedDestructuring_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/parameterlessSetter_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/parserCorruptionAfterMapInClass_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/pasteLambdaOverModule_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/paste_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsAllowTsExtensions_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsPartialPath_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/privatePropertyOfUndefinedThis_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/processInvalidSyntax1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/promiseTyping1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/promiseTyping2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/propertyDuplicateIdentifierError_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/protoPropertyInObjectLiteral_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/protoVarInContextualObjectLiteral_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/prototypeProperty_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/publicBreak_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/qualifyModuleTypeNames_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAliasVS_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAlias_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAmbientModule_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAssignToExistingClass_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCallProperty_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCanBeTruncated_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCatch_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCircularInstantiationExpression_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoClassKeyword_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsClassMembers_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsClass_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsCommentParsing_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoCommentsFunctionExpression_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoConstAssertion_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoContextualTyping_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDefaultTypeParameter1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDestructuredBinding_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsClass_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsConst_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsEnum1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsEnum2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsEnum3_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsEnum4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsFunction_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsIife_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsInterface_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsLet_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsModules_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsParameters_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsUsing_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoDisplayPartsVar_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoElementAccessDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoExtendArray_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForAliasedGeneric_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForConstAssertions_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForConstDeclaration_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForConstTypeReference_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForContextuallyTypedIife_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForDecorators_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForFunctionDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForGenericConstraints1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForGenericPrototypeMember_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForGetterAndSetter_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForIn_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForJSDocCodefence_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForJSDocUnknownTag_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForNamedTupleMember_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName03_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName04_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName05_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementName06_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForOverloadOnConst1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForRequire_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForShorthandProperty_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForTypeofParameter_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoForUMDModuleAlias_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFromContextualType_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFromContextualUnionType1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFromContextualUnionType2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFromContextualUnionType3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFromEmptyBlockComment_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFunctionCheckType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFunctionKeyword_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoFunction_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGenericCombinators2_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGenericPropertyAccessor_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGenericTypePath_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGenerics_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoGetterSetter_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoImportMeta_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoImportNonunicodePath_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInFunctionTypeReference2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInFunctionTypeReference_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInInvalidIndexSignature_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInJsdocInTsFile1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInObjectLiteral_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInOptionalChain_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInWithBlock_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoIndexSignatureMappedType_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc6_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritDoc_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoInheritedLinkTag_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocBackticks_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocFunctionNew_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocFunctionThis_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocLinkBackticks_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocTags_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJSExport_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocAlias_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocGetterSetter_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocInheritage_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags10_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags11_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags12_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags13VS_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags13_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags14_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags15_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags16_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags5_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags6_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTags9_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTagsCallback_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTagsTypedef_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocTextFormatting1_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDocThisTag_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsDoc_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsdocEnum_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink10_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink5_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink6_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink7_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink8_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLink9_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoLinkCodePlain_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMappedSpreadTypes_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMappedTypeMethods_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMappedType_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMeaning_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoMergedAlias_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoModuleVariables_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoNamedTupleMembers_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoNestedGenericCalls_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoObjectTypeMultiline_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOfStringPropertyNames1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnCatchVariable_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnCircularTypes_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnClosingJsx_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnErrorTypes1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnGenericClass_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnInternalAliases_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnJsxNamespacedName_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnMergedInterfaces_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnMergedModule_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnNarrowedType_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnNewKeyword01_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnParameterProperties_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnThis2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnThis3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnThis4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnThis5_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnThis_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnUndefined_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoOnVarInArrowExpression_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoParameter_skipThisParameter_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoPropertyTag_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSatisfiesTag_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoShowsGenericSpecialization_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTemplateTag_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoThrowsTag_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypeError_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypeOfThisInStatics_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoTypedefTag_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoUnionOfNamespaces_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoUnion_discriminated_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoUntypedModuleImport_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoWidenedTypes_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickInfo_notInsideComment_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfo01_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoForUnionProperty_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosity1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosity2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosity3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityAbstractClass_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityClass1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityClass2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityConditionalType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityConstEnum_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityEnum_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityFunction_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityImport_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityIndexSignature_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityIndexType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityInterface1_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityInterface2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityIntersection1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityJs_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityLibType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityMappedType_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNamespace_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityObjectType1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityRecursiveType_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityServer_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityTruncation1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityTruncation2_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityTuple_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityTypeParameter_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoVerbosityTypeof_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/quickinfoWrongComment_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/rangeFormatInsideJSDocComment_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/reallyLargeFile_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/recursiveClassReference_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/recursiveGenerics2_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/recursiveInternalModuleImport_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/recursiveWrappedTypeParameters1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/refactorConvertToEsModule_module_node12_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/referenceInParameterPropertyDeclaration_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/referenceToClass_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referenceToEmptyObject_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/references01_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referencesBloomFilters2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesBloomFilters3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesBloomFilters_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referencesForAmbients2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referencesForAmbients_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/referencesForClassLocal_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesForClassMembers_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForClassParameter_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/referencesForDeclarationKeywords_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/referencesForEnums_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForExportedValues_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForExpressionKeywords_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/referencesForExternalModuleNames_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForFunctionOverloads_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForFunctionParameter_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobals2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobals3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobals4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobals5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobalsInExternalModule_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/referencesForGlobals_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/referencesForIllegalAssignment_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForImports_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForIndexProperty2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/referencesForIndexProperty3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForIndexProperty_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties10_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties7_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties8_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties9_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForInheritedProperties_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel4_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel5_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel6_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForLabel_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations6_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations7_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations8_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForMergedDeclarations_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/referencesForModifiers_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/referencesForNoContext_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForObjectLiteralProperties_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForOverrides_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/referencesForPropertiesOfGenericType_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStatementKeywords_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStatic_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/referencesForStringLiteralPropertyNames_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesForTypeKeywords_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/referencesForUnionProperties_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/referencesInComment_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/referencesInConfiguredProject_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/referencesInEmptyFile_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/referencesToStringLiteralValue_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/regexDetection_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/regexErrorRecovery_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/regexp_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/remoteGetReferences_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/removeDeclareFunctionExports_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/removeDeclareInModule_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/removeDeclareKeyword_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/removeDeclareParamTypeAnnotation_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/removeDuplicateIdentifier_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/removeExportedClassFromReopenedModule_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/removeInterfaceExtendsClause_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/rename01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameAcrossMultipleProjects_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameAlias2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameAlias3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameAliasExternalModule2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameAliasExternalModule3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameAliasExternalModule_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameAlias_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameBindingElementInitializerExternal_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameBindingElementInitializerProperty_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameBuiltinTypes_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/renameCommentsAndStrings1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameCommentsAndStrings2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameCommentsAndStrings3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameCommentsAndStrings4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameContextuallyTypedProperties2_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/renameContextuallyTypedProperties_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/renameCrossJsTs01_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameDeclarationKeywords_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/renameDefaultImportDifferentName_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/renameDefaultImport_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/renameDefaultKeyword_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameDefaultLibDontWork_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentInForOf_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentInFor_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringAssignment_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringClassProperty_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringDeclarationInForOf_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringDeclarationInFor_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringFunctionParameter_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameDestructuringNestedBindingElement_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/renameExportCrash_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameExportSpecifier2_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/renameExportSpecifier_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/renameFilePackageJson_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameForAliasingExport01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameForAliasingExport02_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport01_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport02_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport03_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport04_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport05_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport06_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport07_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport08_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameForDefaultExport09_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameForStringLiteral_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameFromNodeModulesDep1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameFromNodeModulesDep2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameFromNodeModulesDep3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameFromNodeModulesDep4_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameFunctionParameter1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameFunctionParameter2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameImportAndExportInDiffFiles_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameImportAndExport_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameImportAndShorthand_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameImportNamespaceAndShorthand_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameImportOfExportEquals2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/renameImportOfExportEquals_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/renameImportOfReExport2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameImportOfReExport_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/renameImportRequire_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameImportSpecifierPropertyName_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameInConfiguredProject_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameInfoForFunctionExpression01_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties6_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties7_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameInheritedProperties8_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJSDocNamepath_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/renameJsDocImportTag_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsDocTypeLiteral_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsExports01_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameJsExports02_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameJsExports03_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsOverloadedFunctionParameter_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPropertyAssignment2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPropertyAssignment3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPropertyAssignment4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPropertyAssignment_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPrototypeProperty01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsPrototypeProperty02_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsThisProperty01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameJsThisProperty03_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsThisProperty05_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameJsThisProperty06_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameLabel6_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameLocationsForClassExpression01_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/renameLocationsForFunctionExpression01_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameLocationsForFunctionExpression02_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameModifiers_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/renameModuleExportsProperties1_test.go (67%) rename tsc/{internal => pkg}/fourslash/tests/renameModuleExportsProperties2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameModuleExportsProperties3_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/renameModuleToVar_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameNameOnEnumMember_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/renameNamedImport_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameNamespaceImport_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/renameNamespace_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameNoDefaultLib_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameNumericalIndexSingleQuoted_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/renameNumericalIndex_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/renameObjectBindingElementPropertyName01_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameObjectSpreadAssignment_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameObjectSpread_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameParameterPropertyDeclaration1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameParameterPropertyDeclaration2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameParameterPropertyDeclaration3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameParameterPropertyDeclaration4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameParameterPropertyDeclaration5_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renamePrivateAccessor_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/renamePrivateFields1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renamePrivateFields_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renamePrivateMethod_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameReExportDefault_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/renameReferenceFromLinkTag1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/renameReferenceFromLinkTag2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/renameReferenceFromLinkTag3_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameReferenceFromLinkTag4_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/renameReferenceFromLinkTag5_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/renameRestBindingElement_test.go (69%) rename tsc/{internal => pkg}/fourslash/tests/renameRest_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralOk1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralOk_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralTypes1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralTypes2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralTypes3_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralTypes4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameStringLiteralTypes5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/renameStringPropertyNames2_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/renameStringPropertyNames_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/renameThis_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameUMDModuleAlias1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/renameUMDModuleAlias2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/renameUnresolvedReexport1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/restArgSignatureHelp_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/restArgType_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/restParamsContextuallyTyped_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/returnRecursiveType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/returnTypeOfGenericFunction1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/reverseMappedTypeQuickInfo_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/satisfiesOperatorCompletion_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/scopeOfUnionProperties_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/selfReferencedExternalModule2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/selfReferencedExternalModule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassification1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassification2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationAlias_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationClassExpressionMethod_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationClassExpression_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationInTemplateExpressions_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationJSX_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationModules_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificationWithUnionTypes_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticClassificatonTypeAlias_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationCallableVariables2_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationCallableVariables_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationClassProperties_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationConstructorTypes_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationFunctions_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationInterfaces_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationMembers_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationObjectProperties_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/semanticModernClassificationVariables_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/semicolonFormattingInsideAComment_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/semicolonFormattingNestedStatements_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/semicolonFormatting_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/sideEffectImportsSuggestion1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelp01_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAfterParameterVS_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAfterParameter_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAnonymousFunction_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAnonymousTypeVS_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAnonymousType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpApplicableRange_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAtEOF2_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpAtEOF_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpBeforeSemicolon1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpBindingPatternVS_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpBindingPattern_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCallExpressionJs_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCallExpressionTuples_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCallExpression_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsClassMembers_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsClassVS_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsClass_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsCommentParsing_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpConstructExpression_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpConstructorInheritance_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpConstructorOverload_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpEmptyList_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExpandedRestTuples_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpExplicitTypeArguments_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpFilteredTriggers03_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpForOptionalMethods_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpForSuperCalls1_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpFunctionOverload_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpFunctionParameter_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpImplicitConstructor_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInCallback_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInFunctionCall_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInParenthetical_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInRecursiveType_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpIncompleteCalls_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpInference_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpIteratorNextVS_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpIteratorNext_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSDocCallbackTag_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSDocTagsVS_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSDocTags_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSMissingIdentifier_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJSX_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpLeadingRestTuple_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNegativeTests2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNegativeTests_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNestedCalls_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpNoArguments_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpObjectLiteral_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnDeclaration_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnImportDefer_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnNestedOverloads_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnOverloadOnConst_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnOverloads_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOnTypePredicates_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOptionalCall2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpOptionalCall_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs1VS_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs2VS_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs3VS_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpRestArgs3_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSimpleConstructorCall_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSimpleFunctionCall_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSimpleSuperCall_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSkippedArgs1VS_test.go (72%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSkippedArgs1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpSuperConstructorOverload_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpThis_test.go (93%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTokenCrash_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTrailingRestTuple_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTypeArguments2VS_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTypeArguments2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTypeArguments_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpWithTriggers02_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpWithUnknownVS_test.go (68%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelpWithUnknown_test.go (73%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelp_contextual_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelp_unionTypeVS_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/signatureHelp_unionType_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/singleLineTypeLiteralFormatting_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/smartIndentNamedImport_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags10_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags11_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags12_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags13_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags3_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags4_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags5_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags6_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags7_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags8_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDocTags9_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_JSDoc_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_behindCaret_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_bindingPatterns_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_comment1_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_comment2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_complex_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_emptyRanges_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_function1_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_function2_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_function3_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_functionParams1_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_functionParams2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_imports_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_lastBlankLine_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_loneVariableDeclaration_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_mappedTypes_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_objectTypes_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_punctuationPriority_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_simple1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_simple2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_stringLiteral_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_templateStrings2_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/smartSelection_templateStrings_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/sourceFixAllImports_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/spaceAfterConstructor_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/spaceAfterReturn_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/spaceAfterStatementConditions_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/specialIntersectionsOrderIndependent_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/squiggleIllegalClassExtension_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/squiggleIllegalSubclassOverride_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/statecallhierarchy_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/statecodelens_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/statedeclarationmaps_test.go (98%) rename tsc/{internal => pkg}/fourslash/tests/statefindallrefs_test.go (99%) rename tsc/{internal => pkg}/fourslash/tests/stateimplementations_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/staterename_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/staticGenericOverloads1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/stringCompletionDetails_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go (97%) rename tsc/{internal => pkg}/fourslash/tests/stringCompletionsVsEscaping_test.go (95%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/stringPropertyNames1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/stringPropertyNames2_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/suggestionNoDuplicates_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/superCallError0_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/superInsideInnerClass_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/switchCompletions_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/symbolCompletionLowerPriority_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationWithErrors_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassifications1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsDocComment1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsDocComment2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsDocComment3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsDocComment4_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsForOfKeyword_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsJsx1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsJsx2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsObjectLiteral_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsTemplates1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/syntacticClassificationsTemplates2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/syntaxErrorAfterImport1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/testmain_test.go (54%) rename tsc/{internal => pkg}/fourslash/tests/thisBindingInLambda_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/thisPredicateFunctionCompletions02_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/thisPredicateFunctionCompletions03_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/thisPredicateFunctionQuickInfo_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/trailingCommaSignatureHelpVS_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/trailingCommaSignatureHelp_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/transitiveExportImports2_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/transitiveExportImports3_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/transitiveExportImports_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionContext_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tripleSlashReferenceResolutionMode_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/tsconfigComputedPropertyError_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion10_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion11_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion12_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion13_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion14_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion15_test.go (96%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion5_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion6_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion7_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletion8_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionNonTagLessThan_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionOnClosingTag1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionOnClosingTag2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxCompletionsGenericComponent_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences10_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences11_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences1VS_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences2_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences3_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences5_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences6_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences7_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences8_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferences9_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionClasses_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/tsxIncrementalServer_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/tsxIncremental_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/tsxParsing_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo1_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo2_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo3_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo4_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo5_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo6_test.go (89%) rename tsc/{internal => pkg}/fourslash/tests/tsxQuickInfo7_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename1_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename3_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename4_test.go (87%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename5_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename6_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename7_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename8_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/tsxRename9_test.go (94%) rename tsc/{internal => pkg}/fourslash/tests/tsxSignatureHelp1_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/tsxSignatureHelp2_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go (74%) rename tsc/{internal => pkg}/fourslash/tests/typeArgCompletion_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/typeAssertionsFormatting_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/typeCheckAfterResolve_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/typeCheckObjectInArrayLiteral_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/typeKeywordInFunction_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/typeOfAFundule_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/typeOfKeywordCompletion_test.go (71%) rename tsc/{internal => pkg}/fourslash/tests/typeOperatorNodeBuilding_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/typeReferenceAndImportDeprecated_test.go (90%) rename tsc/{internal => pkg}/fourslash/tests/typeReferenceOnServer_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/typedefinition01_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/unclosedCommentsInConstructor_test.go (75%) rename tsc/{internal => pkg}/fourslash/tests/unclosedStringLiteralAutoformating_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/underscoreTypings01_test.go (91%) rename tsc/{internal => pkg}/fourslash/tests/underscoreTypings02_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/unreachableCodeAfterEdit_test.go (92%) rename tsc/{internal => pkg}/fourslash/tests/unreachableCodeDiagnostics_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/unreachableStatementNodeReuse_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/unusedClassInNamespace1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/unusedClassInNamespace3_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/unusedClassInNamespace4_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/unusedConstantInFunction1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/unusedEnumInFunction1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/unusedEnumInNamespace1_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespace1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespace2_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespace3_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespace4_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespace5_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports10FS_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports11FS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports12FS_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports13FS_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports14FS_test.go (84%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports1FS_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports3FS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports4FS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports5FS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports6FS_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports7FS_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports8FS_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedImports9FS_test.go (83%) rename tsc/{internal => pkg}/fourslash/tests/unusedLabelAfterEdit_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedLocalsInFunction1_test.go (79%) rename tsc/{internal => pkg}/fourslash/tests/unusedLocalsInFunction3_test.go (80%) rename tsc/{internal => pkg}/fourslash/tests/unusedLocalsinConstructorFS1_test.go (81%) rename tsc/{internal => pkg}/fourslash/tests/unusedLocalsinConstructorFS2_test.go (85%) rename tsc/{internal => pkg}/fourslash/tests/unusedVariableInClass5_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/updateSourceFile_jsdocSignature_test.go (76%) rename tsc/{internal => pkg}/fourslash/tests/updateToClassStatics_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/util/util.go (99%) rename tsc/{internal => pkg}/fourslash/tests/verifySingleFileEmitOutput1_test.go (82%) rename tsc/{internal => pkg}/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/whiteSpaceTrimming2_test.go (88%) rename tsc/{internal => pkg}/fourslash/tests/whiteSpaceTrimming3_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/whiteSpaceTrimming4_test.go (77%) rename tsc/{internal => pkg}/fourslash/tests/whiteSpaceTrimming_test.go (78%) rename tsc/{internal => pkg}/fourslash/tests/workspaceSymbolCurrentProject_test.go (86%) rename tsc/{internal => pkg}/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go (89%) rename tsc/{internal => pkg}/fswatch/CHANGES.md (100%) rename tsc/{internal => pkg}/fswatch/LICENSE (100%) rename tsc/{internal => pkg}/fswatch/README.md (97%) rename tsc/{internal => pkg}/fswatch/canonicalize_darwin.go (100%) rename tsc/{internal => pkg}/fswatch/canonicalize_other.go (100%) rename tsc/{internal => pkg}/fswatch/cgmanifest.json (100%) rename tsc/{internal => pkg}/fswatch/debounce.go (100%) rename tsc/{internal => pkg}/fswatch/event.go (100%) rename tsc/{internal => pkg}/fswatch/eventlist_test.go (100%) rename tsc/{internal => pkg}/fswatch/fallback_test.go (100%) rename tsc/{internal => pkg}/fswatch/fanotify_linux.go (100%) rename tsc/{internal => pkg}/fswatch/fanotify_linux_test.go (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin.go (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_ffi.go (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_ffi.s (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_ffi_amd64.s (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_ffi_arm64.s (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_ffi_arm64_test.go (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_nfd_test.go (100%) rename tsc/{internal => pkg}/fswatch/fsevents_darwin_shared_test.go (100%) rename tsc/{internal => pkg}/fswatch/inotify_linux.go (100%) rename tsc/{internal => pkg}/fswatch/kqueue.go (100%) rename tsc/{internal => pkg}/fswatch/testutil_test.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_dirent_darwin.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_dirent_fileno.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_dirent_linux.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_dirent_noreclen.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_other.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_test.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_unix.go (100%) rename tsc/{internal => pkg}/fswatch/walkdir_windows.go (100%) rename tsc/{internal => pkg}/fswatch/watcher.go (99%) rename tsc/{internal => pkg}/fswatch/watcher_test.go (100%) rename tsc/{internal => pkg}/fswatch/windows.go (100%) rename tsc/{internal => pkg}/glob/glob.go (100%) rename tsc/{internal => pkg}/ipc/conn.go (96%) rename tsc/{internal => pkg}/ipc/conn_async.go (98%) rename tsc/{internal => pkg}/ipc/conn_async_test.go (98%) rename tsc/{internal => pkg}/ipc/conn_sync.go (98%) rename tsc/{internal => pkg}/ipc/conn_sync_test.go (92%) rename tsc/{internal => pkg}/ipc/protocol.go (92%) rename tsc/{internal => pkg}/ipc/protocol_jsonrpc.go (94%) rename tsc/{internal => pkg}/ipc/timing.go (100%) rename tsc/{internal => pkg}/ipc/timing_test.go (100%) rename tsc/{internal => pkg}/ipc/transport.go (100%) rename tsc/{internal => pkg}/ipc/transport_unix.go (100%) rename tsc/{internal => pkg}/ipc/transport_windows.go (100%) rename tsc/{internal => pkg}/jsnum/jsnum.go (100%) rename tsc/{internal => pkg}/jsnum/jsnum_test.go (99%) rename tsc/{internal => pkg}/jsnum/pseudobigint.go (100%) rename tsc/{internal => pkg}/jsnum/pseudobigint_test.go (100%) rename tsc/{internal => pkg}/jsnum/ryu_test.go (100%) rename tsc/{internal => pkg}/jsnum/string.go (98%) rename tsc/{internal => pkg}/jsnum/string_test.go (98%) rename tsc/{internal => pkg}/json/json.go (100%) rename tsc/{internal => pkg}/jsonrpc/baseproto.go (100%) rename tsc/{internal => pkg}/jsonrpc/jsonrpc.go (98%) rename tsc/{internal => pkg}/locale/lcl/chs/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/cht/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/csy/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/deu/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/esn/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/fra/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/ita/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/jpn/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/kor/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/plk/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/ptb/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/rus/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/lcl/trk/diagnosticMessages/diagnosticMessages.generated.json.lcl (100%) rename tsc/{internal => pkg}/locale/locale.go (100%) rename tsc/{internal => pkg}/ls/api.go (88%) rename tsc/{internal => pkg}/ls/autoimport/aliasresolver.go (93%) rename tsc/{internal => pkg}/ls/autoimport/aliasresolver_crash_test.go (76%) rename tsc/{internal => pkg}/ls/autoimport/export.go (93%) rename tsc/{internal => pkg}/ls/autoimport/export_stringer_generated.go (100%) rename tsc/{internal => pkg}/ls/autoimport/extract.go (97%) rename tsc/{internal => pkg}/ls/autoimport/fix.go (98%) rename tsc/{internal => pkg}/ls/autoimport/import_adder.go (96%) rename tsc/{internal => pkg}/ls/autoimport/index.go (98%) rename tsc/{internal => pkg}/ls/autoimport/index_test.go (100%) rename tsc/{internal => pkg}/ls/autoimport/registry.go (98%) rename tsc/{internal => pkg}/ls/autoimport/registry_test.go (98%) rename tsc/{internal => pkg}/ls/autoimport/specifiers.go (97%) rename tsc/{internal => pkg}/ls/autoimport/testmain_test.go (54%) rename tsc/{internal => pkg}/ls/autoimport/util.go (94%) rename tsc/{internal => pkg}/ls/autoimport/util_test.go (99%) rename tsc/{internal => pkg}/ls/autoimport/view.go (93%) rename tsc/{internal => pkg}/ls/autoinsert.go (90%) rename tsc/{internal => pkg}/ls/callhierarchy.go (98%) rename tsc/{internal => pkg}/ls/change/delete.go (96%) rename tsc/{internal => pkg}/ls/change/tracker.go (97%) rename tsc/{internal => pkg}/ls/change/trackerimpl.go (97%) rename tsc/{internal => pkg}/ls/change/trackerimpl_test.go (91%) rename tsc/{internal => pkg}/ls/codeactions.go (95%) rename tsc/{internal => pkg}/ls/codeactions_fixclassincorrectlyimplementsinterface.go (93%) rename tsc/{internal => pkg}/ls/codeactions_fixmissingtypeannotation.go (98%) rename tsc/{internal => pkg}/ls/codeactions_importfixes.go (96%) rename tsc/{internal => pkg}/ls/codeactions_missingmemberfixer.go (97%) rename tsc/{internal => pkg}/ls/codelens.go (93%) rename tsc/{internal => pkg}/ls/completions.go (99%) rename tsc/{internal => pkg}/ls/constants.go (100%) rename tsc/{internal => pkg}/ls/crossproject.go (97%) rename tsc/{internal => pkg}/ls/definition.go (97%) rename tsc/{internal => pkg}/ls/diagnostics.go (91%) rename tsc/{internal => pkg}/ls/displaypartswriter.go (95%) rename tsc/{internal => pkg}/ls/documenthighlights.go (97%) rename tsc/{internal => pkg}/ls/file_rename.go (95%) rename tsc/{internal => pkg}/ls/file_rename_test.go (90%) rename tsc/{internal => pkg}/ls/findallreferences.go (99%) rename tsc/{internal => pkg}/ls/findallreferences_test.go (91%) rename tsc/{internal => pkg}/ls/folding.go (97%) rename tsc/{internal => pkg}/ls/format.go (95%) rename tsc/{internal => pkg}/ls/format_test.go (95%) rename tsc/{internal => pkg}/ls/host.go (74%) rename tsc/{internal => pkg}/ls/hover.go (98%) rename tsc/{internal => pkg}/ls/hovericon.go (98%) rename tsc/{internal => pkg}/ls/importTracker.go (98%) rename tsc/{internal => pkg}/ls/inlay_hints.go (97%) rename tsc/{internal => pkg}/ls/jsdoc.go (96%) rename tsc/{internal => pkg}/ls/jsdoc_snippet.go (97%) rename tsc/{internal => pkg}/ls/languageservice.go (88%) rename tsc/{internal => pkg}/ls/linkedediting.go (91%) rename tsc/{internal => pkg}/ls/lsconv/converters.go (97%) rename tsc/{internal => pkg}/ls/lsconv/converters_test.go (97%) rename tsc/{internal => pkg}/ls/lsconv/linemap.go (97%) rename tsc/{internal => pkg}/ls/lsutil/asi.go (95%) rename tsc/{internal => pkg}/ls/lsutil/children.go (94%) rename tsc/{internal => pkg}/ls/lsutil/completednode.go (96%) rename tsc/{internal => pkg}/ls/lsutil/formatcodeoptions.go (97%) rename tsc/{internal => pkg}/ls/lsutil/organizeimports.go (99%) rename tsc/{internal => pkg}/ls/lsutil/symbol_display.go (98%) rename tsc/{internal => pkg}/ls/lsutil/userpreferences.go (99%) rename tsc/{internal => pkg}/ls/lsutil/userpreferences_test.go (99%) rename tsc/{internal => pkg}/ls/lsutil/utilities.go (93%) rename tsc/{internal => pkg}/ls/lsutil/utilities_test.go (96%) rename tsc/{internal => pkg}/ls/organizeimports.go (98%) rename tsc/{internal => pkg}/ls/rename.go (95%) rename tsc/{internal => pkg}/ls/selectionranges.go (96%) rename tsc/{internal => pkg}/ls/selectionranges_test.go (82%) rename tsc/{internal => pkg}/ls/semantictokens.go (97%) rename tsc/{internal => pkg}/ls/signaturehelp.go (98%) rename tsc/{internal => pkg}/ls/source_map.go (92%) rename tsc/{internal => pkg}/ls/sourcedefinition.go (96%) rename tsc/{internal => pkg}/ls/string_completions.go (98%) rename tsc/{internal => pkg}/ls/string_completions_test.go (100%) rename tsc/{internal => pkg}/ls/symbols.go (97%) rename tsc/{internal => pkg}/ls/utilities.go (98%) rename tsc/{internal => pkg}/lsp/dynamic_queue.go (100%) rename tsc/{internal => pkg}/lsp/dynamic_queue_test.go (100%) rename tsc/{internal => pkg}/lsp/logger.go (96%) rename tsc/{internal => pkg}/lsp/lsproto/_generate/.gitignore (100%) rename tsc/{internal => pkg}/lsp/lsproto/_generate/fetchModel.mts (100%) rename tsc/{internal => pkg}/lsp/lsproto/_generate/generate.mts (97%) rename tsc/{internal => pkg}/lsp/lsproto/_generate/metaModelSchema.mts (100%) rename tsc/{internal => pkg}/lsp/lsproto/_generate/tsconfig.json (100%) rename tsc/{internal => pkg}/lsp/lsproto/baseproto.go (92%) rename tsc/{internal => pkg}/lsp/lsproto/baseproto_test.go (98%) rename tsc/{internal => pkg}/lsp/lsproto/jsonrpc.go (96%) rename tsc/{internal => pkg}/lsp/lsproto/lsp.go (97%) rename tsc/{internal => pkg}/lsp/lsproto/lsp_generated.go (99%) rename tsc/{internal => pkg}/lsp/lsproto/lsp_json_test.go (99%) rename tsc/{internal => pkg}/lsp/lsproto/lsp_test.go (96%) rename tsc/{internal => pkg}/lsp/lsproto/structcodec.go (98%) rename tsc/{internal => pkg}/lsp/lsproto/util.go (100%) rename tsc/{internal => pkg}/lsp/lspwatcher/lspwatcher.go (98%) rename tsc/{internal => pkg}/lsp/lspwatcher/lspwatcher_test.go (98%) rename tsc/{internal => pkg}/lsp/progress.go (96%) rename tsc/{internal => pkg}/lsp/progress_test.go (98%) rename tsc/{internal => pkg}/lsp/replay_test.go (92%) rename tsc/{internal => pkg}/lsp/server.go (98%) rename tsc/{internal => pkg}/lsp/server_completion_test.go (95%) rename tsc/{internal => pkg}/lsp/server_contentmapper_internal_test.go (98%) rename tsc/{internal => pkg}/lsp/server_contentmapper_test.go (96%) rename tsc/{internal => pkg}/lsp/server_progress_test.go (93%) rename tsc/{internal => pkg}/lsp/server_projectinfo_test.go (93%) rename tsc/{internal => pkg}/lsp/server_projectreference_updates_test.go (89%) rename tsc/{internal => pkg}/lsp/server_semantictokens_test.go (96%) rename tsc/{internal => pkg}/lsp/server_test.go (95%) rename tsc/{internal => pkg}/lsp/stack_sanitizer.go (97%) create mode 100644 tsc/pkg/lsp/stack_sanitizer_test.go rename tsc/{internal => pkg}/lsp/testmain_test.go (52%) rename tsc/{internal => pkg}/module/cache.go (93%) rename tsc/{internal => pkg}/module/resolver.go (99%) rename tsc/{internal => pkg}/module/resolver_test.go (95%) rename tsc/{internal => pkg}/module/types.go (94%) rename tsc/{internal => pkg}/module/util.go (95%) rename tsc/{internal => pkg}/modulespecifiers/compare.go (100%) rename tsc/{internal => pkg}/modulespecifiers/preferences.go (97%) rename tsc/{internal => pkg}/modulespecifiers/specifiers.go (99%) rename tsc/{internal => pkg}/modulespecifiers/specifiers_test.go (95%) rename tsc/{internal => pkg}/modulespecifiers/types.go (90%) rename tsc/{internal => pkg}/modulespecifiers/util.go (97%) rename tsc/{internal => pkg}/nativepath/eintr_unix.go (100%) rename tsc/{internal => pkg}/nativepath/realpath_darwin_test.go (100%) rename tsc/{internal => pkg}/nativepath/realpath_linux.go (100%) rename tsc/{internal => pkg}/nativepath/realpath_other.go (100%) rename tsc/{internal => pkg}/nativepath/realpath_windows.go (100%) rename tsc/{internal => pkg}/nativepath/symlink_other.go (100%) rename tsc/{internal => pkg}/nativepath/symlink_windows.go (100%) rename tsc/{internal => pkg}/nativepath/symlink_windows_test.go (100%) rename tsc/{internal => pkg}/nodebuilder/types.go (98%) rename tsc/{internal => pkg}/osutil/os_android.go (100%) rename tsc/{internal => pkg}/osutil/os_other.go (100%) rename tsc/{internal => pkg}/osutil/osutil.go (100%) rename tsc/{internal => pkg}/outputpaths/commonsourcedirectory.go (96%) rename tsc/{internal => pkg}/outputpaths/outputpaths.go (98%) rename tsc/{internal => pkg}/outputpaths/outputpaths_test.go (94%) rename tsc/{internal => pkg}/packagejson/cache.go (95%) rename tsc/{internal => pkg}/packagejson/expected.go (96%) rename tsc/{internal => pkg}/packagejson/expected_test.go (88%) rename tsc/{internal => pkg}/packagejson/exportsorimports.go (94%) rename tsc/{internal => pkg}/packagejson/exportsorimports_test.go (93%) rename tsc/{internal => pkg}/packagejson/jsonvalue.go (97%) rename tsc/{internal => pkg}/packagejson/jsonvalue_test.go (95%) rename tsc/{internal => pkg}/packagejson/packagejson.go (97%) rename tsc/{internal => pkg}/packagejson/packagejson_test.go (87%) rename tsc/{internal => pkg}/packagejson/validated.go (100%) rename tsc/{internal => pkg}/parser/jsdoc.go (99%) rename tsc/{internal => pkg}/parser/parser.go (99%) rename tsc/{internal => pkg}/parser/parser_test.go (94%) rename tsc/{internal => pkg}/parser/references.go (95%) rename tsc/{internal => pkg}/parser/reparser.go (99%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/02b74efe61495c2a (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/3d59c16f3abc20e1 (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/4c0324cd37d955ff (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/6944735deac09149 (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/7d4c688e1df61349 (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/9ce2d994c65c7bfe (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/c5dc3279768e5a11 (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/f48591d3b8f41eca (100%) rename tsc/{internal => pkg}/parser/testdata/fuzz/FuzzParser/f6dbdaa8568c9488 (100%) rename tsc/{internal => pkg}/parser/types.go (100%) rename tsc/{internal => pkg}/parser/utilities.go (92%) rename tsc/{internal => pkg}/pprof/pprof.go (100%) rename tsc/{internal => pkg}/printer/changetrackerwriter.go (97%) rename tsc/{internal => pkg}/printer/emitcontext.go (99%) rename tsc/{internal => pkg}/printer/emitflags.go (100%) rename tsc/{internal => pkg}/printer/emithost.go (73%) rename tsc/{internal => pkg}/printer/emitresolver.go (96%) rename tsc/{internal => pkg}/printer/emittextwriter.go (87%) rename tsc/{internal => pkg}/printer/factory.go (99%) rename tsc/{internal => pkg}/printer/generatedidentifierflags.go (100%) rename tsc/{internal => pkg}/printer/helpers.go (100%) rename tsc/{internal => pkg}/printer/namegenerator.go (98%) rename tsc/{internal => pkg}/printer/namegenerator_test.go (98%) rename tsc/{internal => pkg}/printer/printer.go (99%) rename tsc/{internal => pkg}/printer/printer_test.go (99%) rename tsc/{internal => pkg}/printer/semicolon_writer.go (97%) rename tsc/{internal => pkg}/printer/singlelinestringwriter.go (95%) rename tsc/{internal => pkg}/printer/sourcefilemetadataprovider.go (56%) rename tsc/{internal => pkg}/printer/syntheticfile.go (94%) rename tsc/{internal => pkg}/printer/textwriter.go (96%) rename tsc/{internal => pkg}/printer/utilities.go (98%) rename tsc/{internal => pkg}/printer/utilities_test.go (98%) rename tsc/{internal => pkg}/project/api.go (100%) rename tsc/{internal => pkg}/project/ata/ata.go (97%) rename tsc/{internal => pkg}/project/ata/ata_test.go (99%) rename tsc/{internal => pkg}/project/ata/discovertypings.go (96%) rename tsc/{internal => pkg}/project/ata/discovertypings_test.go (96%) rename tsc/{internal => pkg}/project/ata/installnpmpackages_test.go (100%) rename tsc/{internal => pkg}/project/ata/testmain_test.go (53%) rename tsc/{internal => pkg}/project/ata/typesmap.go (100%) rename tsc/{internal => pkg}/project/ata/validatepackagename.go (100%) rename tsc/{internal => pkg}/project/ata/validatepackagename_test.go (98%) rename tsc/{internal => pkg}/project/autoimport.go (92%) rename tsc/{internal => pkg}/project/background/queue.go (100%) rename tsc/{internal => pkg}/project/background/queue_test.go (95%) rename tsc/{internal => pkg}/project/bulkcache_test.go (97%) rename tsc/{internal => pkg}/project/checkerpool.go (98%) rename tsc/{internal => pkg}/project/checkerpool_test.go (99%) rename tsc/{internal => pkg}/project/client.go (84%) rename tsc/{internal => pkg}/project/compilerhost.go (90%) rename tsc/{internal => pkg}/project/configfilechanges_test.go (97%) rename tsc/{internal => pkg}/project/configfileregistry.go (96%) rename tsc/{internal => pkg}/project/configfileregistrybuilder.go (98%) rename tsc/{internal => pkg}/project/contentmapper_test.go (98%) rename tsc/{internal => pkg}/project/customconfigfilename_test.go (96%) rename tsc/{internal => pkg}/project/dirty/box.go (100%) rename tsc/{internal => pkg}/project/dirty/cloneablemap.go (100%) rename tsc/{internal => pkg}/project/dirty/entry.go (100%) rename tsc/{internal => pkg}/project/dirty/interfaces.go (100%) rename tsc/{internal => pkg}/project/dirty/map.go (100%) rename tsc/{internal => pkg}/project/dirty/mapbuilder.go (100%) rename tsc/{internal => pkg}/project/dirty/syncmap.go (99%) rename tsc/{internal => pkg}/project/dirty/syncmap_test.go (100%) rename tsc/{internal => pkg}/project/dirty/util.go (100%) rename tsc/{internal => pkg}/project/extendedconfigcache.go (92%) rename tsc/{internal => pkg}/project/extendedconfigcache_test.go (95%) rename tsc/{internal => pkg}/project/filechange.go (95%) rename tsc/{internal => pkg}/project/logging/logcollector.go (100%) rename tsc/{internal => pkg}/project/logging/logger.go (100%) rename tsc/{internal => pkg}/project/logging/logtree.go (100%) rename tsc/{internal => pkg}/project/logging/logtree_test.go (100%) rename tsc/{internal => pkg}/project/overlayfs.go (95%) rename tsc/{internal => pkg}/project/overlayfs_test.go (97%) rename tsc/{internal => pkg}/project/ownercache.go (98%) rename tsc/{internal => pkg}/project/parsecache.go (89%) rename tsc/{internal => pkg}/project/programcounter.go (93%) rename tsc/{internal => pkg}/project/project.go (96%) rename tsc/{internal => pkg}/project/project_stringer_generated.go (100%) rename tsc/{internal => pkg}/project/project_test.go (98%) rename tsc/{internal => pkg}/project/projectcollection.go (98%) rename tsc/{internal => pkg}/project/projectcollectionbuilder.go (98%) rename tsc/{internal => pkg}/project/projectcollectionbuilder_test.go (98%) rename tsc/{internal => pkg}/project/projectcollectiondefaultproject_test.go (93%) rename tsc/{internal => pkg}/project/projectlifetime_test.go (98%) rename tsc/{internal => pkg}/project/projectreferencesprogram_test.go (97%) rename tsc/{internal => pkg}/project/refcountcache.go (98%) rename tsc/{internal => pkg}/project/refcountcache_test.go (97%) rename tsc/{internal => pkg}/project/session.go (98%) rename tsc/{internal => pkg}/project/session_test.go (99%) rename tsc/{internal => pkg}/project/snapshot.go (97%) rename tsc/{internal => pkg}/project/snapshot_test.go (98%) rename tsc/{internal => pkg}/project/snapshotfs.go (98%) rename tsc/{internal => pkg}/project/snapshotfs_test.go (99%) rename tsc/{internal => pkg}/project/snapshothost.go (92%) rename tsc/{internal => pkg}/project/testmain_test.go (54%) rename tsc/{internal => pkg}/project/untitled_test.go (96%) rename tsc/{internal => pkg}/project/watch.go (98%) rename tsc/{internal => pkg}/project/watch_test.go (100%) rename tsc/{internal => pkg}/project/watchtimeout_test.go (95%) rename tsc/{internal => pkg}/pseudochecker/checker.go (100%) rename tsc/{internal => pkg}/pseudochecker/lookup.go (99%) rename tsc/{internal => pkg}/pseudochecker/type.go (99%) rename tsc/{internal => pkg}/repo/paths.go (100%) rename tsc/{internal => pkg}/scanner/regexp.go (99%) rename tsc/{internal => pkg}/scanner/scanner.go (99%) rename tsc/{internal => pkg}/scanner/scanner_test.go (95%) rename tsc/{internal => pkg}/scanner/unicodeproperties.go (99%) rename tsc/{internal => pkg}/scanner/utilities.go (94%) rename tsc/{internal => pkg}/semver/version.go (100%) rename tsc/{internal => pkg}/semver/version_range.go (100%) rename tsc/{internal => pkg}/semver/version_range_test.go (100%) rename tsc/{internal => pkg}/semver/version_test.go (100%) rename tsc/{internal => pkg}/sourcemap/decoder.go (99%) rename tsc/{internal => pkg}/sourcemap/generator.go (98%) rename tsc/{internal => pkg}/sourcemap/generator_test.go (99%) rename tsc/{internal => pkg}/sourcemap/lineinfo.go (90%) rename tsc/{internal => pkg}/sourcemap/source.go (65%) rename tsc/{internal => pkg}/sourcemap/source_mapper.go (96%) rename tsc/{internal => pkg}/sourcemap/util.go (92%) rename tsc/{internal => pkg}/spanmap/spanmap.go (99%) rename tsc/{internal => pkg}/spanmap/spanmap_test.go (99%) rename tsc/{internal => pkg}/stringutil/_scripts/generate-unicode-data.mts (100%) rename tsc/{internal => pkg}/stringutil/compare.go (100%) rename tsc/{internal => pkg}/stringutil/generate.go (100%) rename tsc/{internal => pkg}/stringutil/identifier.go (100%) rename tsc/{internal => pkg}/stringutil/identifier_parts_generated.go (100%) rename tsc/{internal => pkg}/stringutil/js_case.go (100%) rename tsc/{internal => pkg}/stringutil/js_case_generated.go (100%) rename tsc/{internal => pkg}/stringutil/js_case_test.go (100%) rename tsc/{internal => pkg}/stringutil/util.go (100%) rename tsc/{internal => pkg}/stringutil/util_test.go (100%) rename tsc/{internal => pkg}/symlinks/knownsymlinks.go (95%) rename tsc/{internal => pkg}/symlinks/knownsymlinks_bench_test.go (97%) rename tsc/{internal => pkg}/symlinks/knownsymlinks_test.go (97%) rename tsc/{internal => pkg}/testrunner/compiler_runner.go (96%) rename tsc/{internal => pkg}/testrunner/compiler_runner_test.go (81%) rename tsc/{internal => pkg}/testrunner/runner.go (100%) rename tsc/{internal => pkg}/testrunner/test_case_parser.go (95%) rename tsc/{internal => pkg}/testrunner/test_case_parser_test.go (100%) rename tsc/{internal => pkg}/testrunner/testmain_test.go (54%) rename tsc/{internal => pkg}/testrunner/transpile_runner.go (90%) rename tsc/{internal => pkg}/testrunner/transpile_runner_test.go (100%) rename tsc/{internal => pkg}/testutil/autoimporttestutil/fixtures.go (98%) rename tsc/{internal => pkg}/testutil/baseline/baseline.go (95%) rename tsc/{internal => pkg}/testutil/baseline/testmain.go (97%) rename tsc/{internal => pkg}/testutil/contentmappertest/component.go (95%) rename tsc/{internal => pkg}/testutil/contentmappertest/diagnostic_code_collision.go (86%) rename tsc/{internal => pkg}/testutil/contentmappertest/duplicate.go (96%) rename tsc/{internal => pkg}/testutil/contentmappertest/duplicate_projection.go (91%) rename tsc/{internal => pkg}/testutil/contentmappertest/dynamic_verbatim.go (91%) rename tsc/{internal => pkg}/testutil/contentmappertest/editing.go (96%) rename tsc/{internal => pkg}/testutil/contentmappertest/failing.go (81%) rename tsc/{internal => pkg}/testutil/contentmappertest/hoisting.go (94%) rename tsc/{internal => pkg}/testutil/contentmappertest/lisp.go (89%) rename tsc/{internal => pkg}/testutil/contentmappertest/manifest.go (100%) rename tsc/{internal => pkg}/testutil/contentmappertest/mapper_test.go (93%) rename tsc/{internal => pkg}/testutil/contentmappertest/protocol.go (89%) rename tsc/{internal => pkg}/testutil/contentmappertest/registry.go (98%) rename tsc/{internal => pkg}/testutil/contentmappertest/spawner.go (91%) rename tsc/{internal => pkg}/testutil/contentmappertest/supplemental.go (88%) rename tsc/{internal => pkg}/testutil/contentmappertest/supplemental_diagnostics.go (85%) rename tsc/{internal => pkg}/testutil/contentmappertest/supplemental_globals.go (91%) rename tsc/{internal => pkg}/testutil/contentmappertest/supplemental_module.go (88%) rename tsc/{internal => pkg}/testutil/contentmappertest/synthesizing.go (83%) rename tsc/{internal => pkg}/testutil/contentmappertest/transforming.go (96%) rename tsc/{internal => pkg}/testutil/contentmappertest/verbatim.go (92%) rename tsc/{internal => pkg}/testutil/emittestutil/emittestutil.go (75%) rename tsc/{internal => pkg}/testutil/filefixture/filefixture.go (100%) rename tsc/{internal => pkg}/testutil/fixtures/benchfixtures.go (84%) rename tsc/{internal => pkg}/testutil/fsbaselineutil/differ.go (96%) rename tsc/{internal => pkg}/testutil/harnessutil/harnessutil.go (97%) rename tsc/{internal => pkg}/testutil/harnessutil/recorderfs.go (94%) rename tsc/{internal => pkg}/testutil/harnessutil/sourcemap_recorder.go (97%) rename tsc/{internal => pkg}/testutil/jstest/node.go (94%) rename tsc/{internal => pkg}/testutil/lsptestutil/lspclient.go (97%) rename tsc/{internal => pkg}/testutil/parsetestutil/parsetestutil.go (89%) rename tsc/{internal => pkg}/testutil/projecttestutil/clientmock_generated.go (98%) rename tsc/{internal => pkg}/testutil/projecttestutil/npmexecutormock_generated.go (97%) rename tsc/{internal => pkg}/testutil/projecttestutil/projecttestutil.go (93%) rename tsc/{internal => pkg}/testutil/race/norace.go (100%) rename tsc/{internal => pkg}/testutil/race/race.go (100%) rename tsc/{internal => pkg}/testutil/stringtestutil/stringtestutil.go (95%) rename tsc/{internal => pkg}/testutil/testutil.go (93%) rename tsc/{internal => pkg}/testutil/tsbaseline/contentmapper_baseline.go (90%) rename tsc/{internal => pkg}/testutil/tsbaseline/error_baseline.go (96%) rename tsc/{internal => pkg}/testutil/tsbaseline/js_emit_baseline.go (94%) rename tsc/{internal => pkg}/testutil/tsbaseline/module_resolution_baseline.go (85%) rename tsc/{internal => pkg}/testutil/tsbaseline/sourcemap_baseline.go (91%) rename tsc/{internal => pkg}/testutil/tsbaseline/sourcemap_record_baseline.go (77%) rename tsc/{internal => pkg}/testutil/tsbaseline/type_symbol_baseline.go (96%) rename tsc/{internal => pkg}/testutil/tsbaseline/util.go (97%) rename tsc/{internal => pkg}/tracing/tracing.go (98%) rename tsc/{internal => pkg}/tracing/tracing_test.go (97%) rename tsc/{internal => pkg}/transformers/chain.go (88%) rename tsc/{internal => pkg}/transformers/declarations/diagnostics.go (99%) rename tsc/{internal => pkg}/transformers/declarations/supplementalreferences.go (92%) rename tsc/{internal => pkg}/transformers/declarations/tracker.go (97%) rename tsc/{internal => pkg}/transformers/declarations/transform.go (99%) rename tsc/{internal => pkg}/transformers/declarations/util.go (97%) rename tsc/{internal => pkg}/transformers/destructuring.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/async.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/classfields.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/classthis.go (89%) rename tsc/{internal => pkg}/transformers/estransforms/definitions.go (94%) rename tsc/{internal => pkg}/transformers/estransforms/esdecorator.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/exponentiation.go (96%) rename tsc/{internal => pkg}/transformers/estransforms/forawait.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/logicalassignment.go (96%) rename tsc/{internal => pkg}/transformers/estransforms/namedevaluation.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/nullishcoalescing.go (92%) rename tsc/{internal => pkg}/transformers/estransforms/objectrestspread.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/optionalcatch.go (89%) rename tsc/{internal => pkg}/transformers/estransforms/optionalchain.go (97%) rename tsc/{internal => pkg}/transformers/estransforms/taggedtemplate.go (96%) rename tsc/{internal => pkg}/transformers/estransforms/usestrict.go (90%) rename tsc/{internal => pkg}/transformers/estransforms/using.go (99%) rename tsc/{internal => pkg}/transformers/estransforms/utilities.go (97%) rename tsc/{internal => pkg}/transformers/inliners/constenum.go (89%) rename tsc/{internal => pkg}/transformers/jsxtransforms/jsx.go (99%) rename tsc/{internal => pkg}/transformers/modifiervisitor.go (85%) rename tsc/{internal => pkg}/transformers/moduletransforms/commonjsmodule.go (99%) rename tsc/{internal => pkg}/transformers/moduletransforms/esmodule.go (98%) rename tsc/{internal => pkg}/transformers/moduletransforms/externalmoduleinfo.go (97%) rename tsc/{internal => pkg}/transformers/moduletransforms/impliedmodule.go (86%) rename tsc/{internal => pkg}/transformers/moduletransforms/utilities.go (94%) rename tsc/{internal => pkg}/transformers/transformer.go (89%) rename tsc/{internal => pkg}/transformers/tstransforms/importelision.go (95%) rename tsc/{internal => pkg}/transformers/tstransforms/importelision_test.go (91%) rename tsc/{internal => pkg}/transformers/tstransforms/legacydecorators.go (99%) rename tsc/{internal => pkg}/transformers/tstransforms/metadata.go (98%) rename tsc/{internal => pkg}/transformers/tstransforms/runtimesyntax.go (99%) rename tsc/{internal => pkg}/transformers/tstransforms/typeeraser.go (98%) rename tsc/{internal => pkg}/transformers/tstransforms/typeeraser_test.go (94%) rename tsc/{internal => pkg}/transformers/tstransforms/typeserializer.go (98%) rename tsc/{internal => pkg}/transformers/tstransforms/utilities.go (81%) rename tsc/{internal => pkg}/transformers/utilities.go (98%) rename tsc/{internal => pkg}/transpile/fs.go (94%) rename tsc/{internal => pkg}/transpile/fs_test.go (88%) rename tsc/{internal => pkg}/transpile/transpile.go (96%) rename tsc/{internal => pkg}/tsoptions/commandlineoption.go (96%) rename tsc/{internal => pkg}/tsoptions/commandlineparser.go (97%) rename tsc/{internal => pkg}/tsoptions/commandlineparser_test.go (97%) rename tsc/{internal => pkg}/tsoptions/contentmappers.go (87%) rename tsc/{internal => pkg}/tsoptions/contentmappers_test.go (94%) rename tsc/{internal => pkg}/tsoptions/decls_test.go (93%) rename tsc/{internal => pkg}/tsoptions/declsbuild.go (97%) rename tsc/{internal => pkg}/tsoptions/declscompiler.go (99%) rename tsc/{internal => pkg}/tsoptions/declstypeacquisition.go (100%) rename tsc/{internal => pkg}/tsoptions/declswatch.go (96%) rename tsc/{internal => pkg}/tsoptions/diagnostics.go (97%) rename tsc/{internal => pkg}/tsoptions/enummaps.go (98%) rename tsc/{internal => pkg}/tsoptions/errors.go (95%) rename tsc/{internal => pkg}/tsoptions/export_test.go (89%) rename tsc/{internal => pkg}/tsoptions/namemap.go (96%) rename tsc/{internal => pkg}/tsoptions/parsedbuildcommandline.go (83%) rename tsc/{internal => pkg}/tsoptions/parsedcommandline.go (96%) rename tsc/{internal => pkg}/tsoptions/parsedcommandline_test.go (95%) rename tsc/{internal => pkg}/tsoptions/parsedoptions.go (79%) rename tsc/{internal => pkg}/tsoptions/parsinghelpers.go (98%) rename tsc/{internal => pkg}/tsoptions/parsinghelpers_test.go (94%) rename tsc/{internal => pkg}/tsoptions/showconfig.go (98%) rename tsc/{internal => pkg}/tsoptions/testmain_test.go (54%) rename tsc/{internal => pkg}/tsoptions/tsconfigparsing.go (99%) rename tsc/{internal => pkg}/tsoptions/tsconfigparsing_test.go (98%) rename tsc/{internal => pkg}/tsoptions/tsoptionstest/parsedcommandline.go (86%) rename tsc/{internal => pkg}/tsoptions/tsoptionstest/vfsparseconfighost.go (88%) rename tsc/{internal => pkg}/tsoptions/wildcarddirectories.go (97%) rename tsc/{internal => pkg}/tsoptions/wildcarddirectories_test.go (95%) rename tsc/{internal => pkg}/tspath/extension.go (100%) rename tsc/{internal => pkg}/tspath/ignoredpaths.go (100%) rename tsc/{internal => pkg}/tspath/ignoredpaths_test.go (100%) rename tsc/{internal => pkg}/tspath/path.go (99%) rename tsc/{internal => pkg}/tspath/path_test.go (100%) rename tsc/{internal => pkg}/tspath/startsWithDirectory_test.go (100%) rename tsc/{internal => pkg}/tspath/untitled_test.go (97%) rename tsc/{internal => pkg}/vfs/cachedvfs/cachedvfs.go (96%) rename tsc/{internal => pkg}/vfs/cachedvfs/cachedvfs_test.go (97%) rename tsc/{internal => pkg}/vfs/internal/internal.go (97%) rename tsc/{internal => pkg}/vfs/iovfs/iofs.go (97%) rename tsc/{internal => pkg}/vfs/iovfs/iofs_test.go (94%) rename tsc/{internal => pkg}/vfs/osvfs/helpers_test.go (100%) rename tsc/{internal => pkg}/vfs/osvfs/os.go (94%) rename tsc/{internal => pkg}/vfs/osvfs/os_test.go (88%) rename tsc/{internal => pkg}/vfs/osvfs/realpath_test.go (98%) rename tsc/{internal => pkg}/vfs/trackingvfs/trackingvfs.go (94%) rename tsc/{internal => pkg}/vfs/vfs.go (100%) rename tsc/{internal => pkg}/vfs/vfs_test.go (81%) rename tsc/{internal => pkg}/vfs/vfsmatch/MATCHING_ALGORITHM.md (100%) rename tsc/{internal => pkg}/vfs/vfsmatch/bench_test.go (97%) rename tsc/{internal => pkg}/vfs/vfsmatch/stringer_generated.go (100%) rename tsc/{internal => pkg}/vfs/vfsmatch/vfsmatch.go (99%) rename tsc/{internal => pkg}/vfs/vfsmatch/vfsmatch_test.go (99%) rename tsc/{internal => pkg}/vfs/vfsmock/mock_generated.go (99%) rename tsc/{internal => pkg}/vfs/vfsmock/wrapper.go (92%) rename tsc/{internal => pkg}/vfs/vfsmock/wrapper_test.go (89%) rename tsc/{internal => pkg}/vfs/vfstest/vfstest.go (98%) rename tsc/{internal => pkg}/vfs/vfstest/vfstest_test.go (99%) rename tsc/{internal => pkg}/vfs/wrapvfs/wrapvfs.go (98%) diff --git a/.dprint.jsonc b/.dprint.jsonc index 3af9d59dc8d63..0923d52fa54a8 100644 --- a/.dprint.jsonc +++ b/.dprint.jsonc @@ -39,7 +39,7 @@ }, "gofumpt": { "langVersion": "go1.26", - "modulePath": "github.com/microsoft/TypeScript/tsc" + "modulePath": "github.com/frida/TypeScript/tsc" }, "excludes": [ "**/.git", @@ -47,13 +47,13 @@ "**/*-lock.json", "**/testdata", "packages/vscode-typescript/l10n/**", - "tsc/internal/bundled/libs/**", - "tsc/internal/lsp/lsproto/_generate/*.json", - "tsc/internal/lsp/lsproto/_generate/metaModelSchema.mts", + "tsc/pkg/bundled/libs/**", + "tsc/pkg/lsp/lsproto/_generate/*.json", + "tsc/pkg/lsp/lsproto/_generate/metaModelSchema.mts", // Needs to be LF to have a working shebang. "packages/typescript/bin/tsc", - "tsc/internal/bundled/source/**", - "tsc/internal/locale/lcl/**", + "tsc/pkg/bundled/source/**", + "tsc/pkg/locale/lcl/**", "packages/typescript/dist/**", "packages/typescript/tsconfig.tsbuildinfo", "packages/vscode-typescript/dist/**", diff --git a/.github/agents/replay-minimizer.md b/.github/agents/replay-minimizer.md index 553f2a7c9d293..4ff42e4cd8f2e 100644 --- a/.github/agents/replay-minimizer.md +++ b/.github/agents/replay-minimizer.md @@ -9,7 +9,7 @@ You are a crash triage and replay minimization agent. ## Goal -Given a replay file and a project directory provided by the user, you MUST use the built-in Go replay test (`TestReplay` in `tsc/internal/lsp/replay_test.go`) to: +Given a replay file and a project directory provided by the user, you MUST use the built-in Go replay test (`TestReplay` in `tsc/pkg/lsp/replay_test.go`) to: 1. Reproduce the crash deterministically (or characterize flakiness) 2. Identify a stable crash signature (stack/exception/location) diff --git a/.github/codeql/codeql-configuration.yml b/.github/codeql/codeql-configuration.yml index 188cb538b5417..2e00d068e0bc2 100644 --- a/.github/codeql/codeql-configuration.yml +++ b/.github/codeql/codeql-configuration.yml @@ -3,8 +3,8 @@ name: CodeQL Configuration paths-ignore: - built - packages/*/dist - - tsc/internal/bundled/libs - - tsc/internal/bundled/source + - tsc/pkg/bundled/libs + - tsc/pkg/bundled/source - tsc/testdata query-filters: diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index ffe5584dd0b0d..579fa45dfcf1b 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -1,12 +1,12 @@ This repository contains the native TypeScript compiler and language server. The source directories of interest that we have are: -- `tsc/internal` - Contains the compiler and language server code. +- `tsc/pkg` - Contains the compiler and language server code. - `packages/vscode-typescript` - Contains the VS Code extension. - `packages/typescript` - Contains the JavaScript API and npm package sources. - `tools` - Contains repository tools, generators, and pipelines. -Most compiler development takes place in `tsc/internal`, and most behaviors can be tested via compiler tests. +Most compiler development takes place in `tsc/pkg`, and most behaviors can be tested via compiler tests. Most development on the codebase is in Go. Standard Go commands and practices apply, but we primarily use a tool called `hereby` to build, run tests, and other tasks. diff --git a/.github/skills/compiler-and-fourslash-tests/SKILL.md b/.github/skills/compiler-and-fourslash-tests/SKILL.md index 7eebda2d0ac59..d4b5c8be2ae0f 100644 --- a/.github/skills/compiler-and-fourslash-tests/SKILL.md +++ b/.github/skills/compiler-and-fourslash-tests/SKILL.md @@ -183,16 +183,16 @@ Fourslash tests validate language server (LSP) features: completions, hover/quic | Path | Purpose | |------|---------| -| `tsc/internal/fourslash/tests/*.go` | Hand-written tests | -| `tsc/internal/fourslash/tests/manual/*.go` | Existing migrated tests | -| `tsc/internal/fourslash/tests/util/` | Shared test constants | +| `tsc/pkg/fourslash/tests/*.go` | Hand-written tests | +| `tsc/pkg/fourslash/tests/manual/*.go` | Existing migrated tests | +| `tsc/pkg/fourslash/tests/util/` | Shared test constants | New fourslash tests should be hand-written. Do not create or regenerate an upstream-generated fourslash suite. ### 2.2 Writing a New Fourslash Test -Create a Go test file in `tsc/internal/fourslash/tests/`. The file uses the `fourslash_test` package. +Create a Go test file in `tsc/pkg/fourslash/tests/`. The file uses the `fourslash_test` package. #### Minimal template @@ -202,8 +202,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMyFeature(t *testing.T) { @@ -356,7 +356,7 @@ f.VerifyCompletions(t, "marker", &fourslash.CompletionsExpectedList{ Import the test utilities for shared constants: ```go -import . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" +import . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" // Provides: DefaultCommitCharacters, Ignored, CompletionGlobalThisItem, etc. ``` @@ -462,7 +462,7 @@ npx hereby baseline-accept 4. Accept (only after `hereby test`): `npx hereby baseline-accept` #### Adding a new fourslash test -1. Create `tsc/internal/fourslash/tests/myTest_test.go` with the test function +1. Create `tsc/pkg/fourslash/tests/myTest_test.go` with the test function 2. Run all tests: `npx hereby test` 3. Review any generated baselines: `git diff --diff-filter=AM --no-index ./tsc/testdata/baselines/reference ./tsc/testdata/baselines/local` 4. Accept (only after `hereby test`): `npx hereby baseline-accept` diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a864147929cf..ffdb52a0452bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -290,8 +290,8 @@ jobs: - run: npx hereby generate:enums - run: npx hereby generate:ast - run: npx hereby generate:vendor - - run: node ./tsc/internal/lsp/lsproto/_generate/fetchModel.mts - - run: node ./tsc/internal/lsp/lsproto/_generate/generate.mts + - run: node ./tsc/pkg/lsp/lsproto/_generate/fetchModel.mts + - run: node ./tsc/pkg/lsp/lsproto/_generate/generate.mts - run: npx hereby generate:extension - run: npx hereby check:scripts - run: git add . diff --git a/.golangci.yml b/.golangci.yml index b520c5ce2c330..72fbf52b7ceef 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -74,9 +74,9 @@ linters: main: deny: - pkg: 'encoding/json$' - desc: 'Use "github.com/microsoft/TypeScript/tsc/internal/json" instead.' + desc: 'Use "github.com/frida/TypeScript/tsc/pkg/json" instead.' - pkg: 'github.com/go-json-experiment/json' - desc: 'Use "github.com/microsoft/TypeScript/tsc/internal/json" instead.' + desc: 'Use "github.com/frida/TypeScript/tsc/pkg/json" instead.' forbidigo: analyze-types: true diff --git a/.vscode/launch.template.json b/.vscode/launch.template.json index 962fa84adc531..16b0119b5eed9 100644 --- a/.vscode/launch.template.json +++ b/.vscode/launch.template.json @@ -21,7 +21,7 @@ "type": "go", "request": "launch", "mode": "test", - "program": "${workspaceFolder}/tsc/internal/testrunner", + "program": "${workspaceFolder}/tsc/pkg/testrunner", "args": ["-test.run", "TestLocal/${fileBasename}"] }, { @@ -29,7 +29,7 @@ "type": "go", "request": "launch", "mode": "test", - "program": "${workspaceFolder}/tsc/internal/testrunner", + "program": "${workspaceFolder}/tsc/pkg/testrunner", "args": [ "-test.cpuprofile", "${workspaceFolder}/test.prof", @@ -42,14 +42,14 @@ "type": "go", "request": "launch", "mode": "test", - "program": "${workspaceFolder}/tsc/internal/fourslash/gen/${fileBasename}" + "program": "${workspaceFolder}/tsc/pkg/fourslash/gen/${fileBasename}" }, { "name": "Launch replay test", "type": "go", "request": "launch", "mode": "test", - "program": "${workspaceFolder}/tsc/internal/lsp", + "program": "${workspaceFolder}/tsc/pkg/lsp", "args": [ "-test.run", "^TestReplay$", diff --git a/Herebyfile.mjs b/Herebyfile.mjs index 381b13808b5e4..ea3d2fa63aac9 100644 --- a/Herebyfile.mjs +++ b/Herebyfile.mjs @@ -243,7 +243,7 @@ const hasGotestsum = memoize(() => { const builtLocal = "./built/local"; -const libsDir = "./tsc/internal/bundled/libs"; +const libsDir = "./tsc/pkg/bundled/libs"; const libsRegexp = /(?:^|[\\/])internal[\\/]bundled[\\/]libs[\\/]/; /** @@ -273,7 +273,7 @@ export const lib = task({ function getReleaseBuildFlags(versionOverride) { let ldflags = "-ldflags=-s -w"; if (versionOverride) { - ldflags += ` -X github.com/microsoft/TypeScript/tsc/internal/core.version=${versionOverride}`; + ldflags += ` -X github.com/frida/TypeScript/tsc/pkg/core.version=${versionOverride}`; } return ["-trimpath", ldflags]; } @@ -355,7 +355,7 @@ export const buildWatch = task({ await buildTsc({ abortSignal }); } }, { - paths: ["tsc/cmd", "tsc/internal"], + paths: ["tsc/cmd", "tsc/pkg"], ignored: path => /[\\/]testdata[\\/]/.test(path), }); }, @@ -399,37 +399,37 @@ export const generateExtension = task({ /** @type {EnumDef[]} */ const enumDefs = [ - { name: "SymbolFlags", goPrefix: "SymbolFlags", goFile: "tsc/internal/ast/symbolflags.go", outDir: "packages/typescript/src/enums" }, - { name: "CheckFlags", goPrefix: "CheckFlags", goFile: "tsc/internal/ast/checkflags.go", outDir: "packages/typescript/src/enums" }, - { name: "TypeFlags", goPrefix: "TypeFlags", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "ObjectFlags", goPrefix: "ObjectFlags", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "SignatureFlags", goPrefix: "SignatureFlags", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "SignatureKind", goPrefix: "SignatureKind", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "ElementFlags", goPrefix: "ElementFlags", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "TypePredicateKind", goPrefix: "TypePredicateKind", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "TypeFormatFlags", goPrefix: "TypeFormatFlags", goFile: "tsc/internal/checker/types.go", outDir: "packages/typescript/src/enums" }, - { name: "DiagnosticCategory", goPrefix: "Category", goFile: "tsc/internal/diagnostics/diagnostics.go", outDir: "packages/typescript/src/enums" }, - { name: "SyntaxKind", goPrefix: "Kind", goFile: "tsc/internal/ast/kind_generated.go", outDir: "packages/typescript/src/enums" }, - { name: "NodeFlags", goPrefix: "NodeFlags", goFile: "tsc/internal/ast/nodeflags.go", outDir: "packages/typescript/src/enums" }, - { name: "OuterExpressionKinds", goPrefix: "OEK", goFile: "tsc/internal/ast/utilities.go", outDir: "packages/typescript/src/enums" }, - { name: "ModifierFlags", goPrefix: "ModifierFlags", goFile: "tsc/internal/ast/modifierflags.go", outDir: "packages/typescript/src/enums" }, - { name: "ModuleKind", goPrefix: "ModuleKind", goFile: "tsc/internal/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, - { name: "ModuleResolutionKind", goPrefix: "ModuleResolutionKind", goFile: "tsc/internal/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, - { name: "ModuleDetectionKind", goPrefix: "ModuleDetectionKind", goFile: "tsc/internal/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, - { name: "NewLineKind", goPrefix: "NewLineKind", goFile: "tsc/internal/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, - { name: "JsxEmit", goPrefix: "JsxEmit", goFile: "tsc/internal/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, - { name: "ScriptKind", goPrefix: "ScriptKind", goFile: "tsc/internal/core/scriptkind.go", outDir: "packages/typescript/src/enums" }, - { name: "TokenFlags", goPrefix: "TokenFlags", goFile: "tsc/internal/ast/tokenflags.go", outDir: "packages/typescript/src/enums" }, - { name: "DiagnosticDirectivePolicy", goPrefix: "MappedDiagnosticDirectivePolicy", goFile: "tsc/internal/ast/ast.go", outDir: "packages/typescript/src/enums" }, - { name: "SpanMapKind", goPrefix: "Kind", goFile: "tsc/internal/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, - { name: "SpanMapFidelity", goPrefix: "Fidelity", goFile: "tsc/internal/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, - { name: "SpanMapFeature", goPrefix: "Feature", goFile: "tsc/internal/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, - { name: "NodeBuilderFlags", goPrefix: "Flags", goFile: "tsc/internal/nodebuilder/types.go", outDir: "packages/typescript/src/enums" }, - { name: "CompletionItemKind", goPrefix: "CompletionItemKind", goFile: "tsc/internal/lsp/lsproto/lsp_generated.go", outDir: "packages/typescript/src/enums" }, - { name: "EmitOnly", goPrefix: "Emit", goFile: "tsc/internal/compiler/emitter.go", outDir: "packages/typescript/src/enums", excludeMembers: ["OnlyBuilderSignature"] }, + { name: "SymbolFlags", goPrefix: "SymbolFlags", goFile: "tsc/pkg/ast/symbolflags.go", outDir: "packages/typescript/src/enums" }, + { name: "CheckFlags", goPrefix: "CheckFlags", goFile: "tsc/pkg/ast/checkflags.go", outDir: "packages/typescript/src/enums" }, + { name: "TypeFlags", goPrefix: "TypeFlags", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "ObjectFlags", goPrefix: "ObjectFlags", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "SignatureFlags", goPrefix: "SignatureFlags", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "SignatureKind", goPrefix: "SignatureKind", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "ElementFlags", goPrefix: "ElementFlags", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "TypePredicateKind", goPrefix: "TypePredicateKind", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "TypeFormatFlags", goPrefix: "TypeFormatFlags", goFile: "tsc/pkg/checker/types.go", outDir: "packages/typescript/src/enums" }, + { name: "DiagnosticCategory", goPrefix: "Category", goFile: "tsc/pkg/diagnostics/diagnostics.go", outDir: "packages/typescript/src/enums" }, + { name: "SyntaxKind", goPrefix: "Kind", goFile: "tsc/pkg/ast/kind_generated.go", outDir: "packages/typescript/src/enums" }, + { name: "NodeFlags", goPrefix: "NodeFlags", goFile: "tsc/pkg/ast/nodeflags.go", outDir: "packages/typescript/src/enums" }, + { name: "OuterExpressionKinds", goPrefix: "OEK", goFile: "tsc/pkg/ast/utilities.go", outDir: "packages/typescript/src/enums" }, + { name: "ModifierFlags", goPrefix: "ModifierFlags", goFile: "tsc/pkg/ast/modifierflags.go", outDir: "packages/typescript/src/enums" }, + { name: "ModuleKind", goPrefix: "ModuleKind", goFile: "tsc/pkg/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, + { name: "ModuleResolutionKind", goPrefix: "ModuleResolutionKind", goFile: "tsc/pkg/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, + { name: "ModuleDetectionKind", goPrefix: "ModuleDetectionKind", goFile: "tsc/pkg/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, + { name: "NewLineKind", goPrefix: "NewLineKind", goFile: "tsc/pkg/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, + { name: "JsxEmit", goPrefix: "JsxEmit", goFile: "tsc/pkg/core/compileroptions.go", outDir: "packages/typescript/src/enums" }, + { name: "ScriptKind", goPrefix: "ScriptKind", goFile: "tsc/pkg/core/scriptkind.go", outDir: "packages/typescript/src/enums" }, + { name: "TokenFlags", goPrefix: "TokenFlags", goFile: "tsc/pkg/ast/tokenflags.go", outDir: "packages/typescript/src/enums" }, + { name: "DiagnosticDirectivePolicy", goPrefix: "MappedDiagnosticDirectivePolicy", goFile: "tsc/pkg/ast/ast.go", outDir: "packages/typescript/src/enums" }, + { name: "SpanMapKind", goPrefix: "Kind", goFile: "tsc/pkg/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, + { name: "SpanMapFidelity", goPrefix: "Fidelity", goFile: "tsc/pkg/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, + { name: "SpanMapFeature", goPrefix: "Feature", goFile: "tsc/pkg/spanmap/spanmap.go", outDir: "packages/typescript/src/enums" }, + { name: "NodeBuilderFlags", goPrefix: "Flags", goFile: "tsc/pkg/nodebuilder/types.go", outDir: "packages/typescript/src/enums" }, + { name: "CompletionItemKind", goPrefix: "CompletionItemKind", goFile: "tsc/pkg/lsp/lsproto/lsp_generated.go", outDir: "packages/typescript/src/enums" }, + { name: "EmitOnly", goPrefix: "Emit", goFile: "tsc/pkg/compiler/emitter.go", outDir: "packages/typescript/src/enums", excludeMembers: ["OnlyBuilderSignature"] }, // String enum: Go stores internal names with a "\xFE" sentinel prefix, but the escaped // form sent over the wire uses "__" (see EscapeSymbolName), so map the sentinel accordingly. - { name: "InternalSymbolName", goPrefix: "InternalSymbolName", goFile: "tsc/internal/ast/symbol.go", outDir: "packages/typescript/src/enums", stringEnum: true, valueReplacements: { InternalSymbolNamePrefix: "__" } }, + { name: "InternalSymbolName", goPrefix: "InternalSymbolName", goFile: "tsc/pkg/ast/symbol.go", outDir: "packages/typescript/src/enums", stringEnum: true, valueReplacements: { InternalSymbolNamePrefix: "__" } }, ]; /** @@ -746,7 +746,7 @@ function renderEnumTS(def, members) { return `${header}export enum ${def.name} {\n${lines.join("\n")}\n}\n`; } -const enumValuesGeneratedGoPath = "tsc/internal/api/enum_values_generated.go"; +const enumValuesGeneratedGoPath = "tsc/pkg/api/enum_values_generated.go"; /** * @typedef {{ @@ -762,7 +762,7 @@ const enumValuesGeneratedGoPath = "tsc/internal/api/enum_values_generated.go"; * generated TS values can be checked against Go's own arithmetic rather than trusting that * copying operator-by-operator text from Go into JS preserves precedence/semantics. * - * Writes tsc/internal/api/enum_values_generated.go, a standalone program that imports every + * Writes tsc/pkg/api/enum_values_generated.go, a standalone program that imports every * package referenced by enumDefs and references each member by its original Go identifier * (not by re-deriving it from the parsed TS text), so Go itself — not this script — computes * the ground-truth value, then prints them as JSON. `internal/api` is used as the host package @@ -780,7 +780,7 @@ async function computeGoGroundTruth(generatedEnums) { */ function getPackageName(def) { const dir = path.dirname(def.goFile); - const importPath = `github.com/microsoft/TypeScript/tsc/${dir.replace(/^tsc[\\/]/, "")}`.replace(/\\/g, "/"); + const importPath = `github.com/frida/TypeScript/tsc/${dir.replace(/^tsc[\\/]/, "")}`.replace(/\\/g, "/"); let info = packagesByDir.get(dir); if (info === undefined) { info = { importPath, pkgName: path.basename(dir) }; @@ -971,7 +971,7 @@ export const generateAPI = task({ name: "generate:api", description: "Generates API files from internal/api/proto.go and internal/api/session.go.", run: async () => { - await run("go", ["-C", "./tools", "run", "./gen-proto", "../tsc/internal/api/proto.go", "../packages/typescript/src/api/proto.generated.ts"]); + await run("go", ["-C", "./tools", "run", "./gen-proto", "../tsc/pkg/api/proto.go", "../packages/typescript/src/api/proto.generated.ts"]); await run("npx", ["dprint", "fmt", "packages/typescript/src/api/proto.generated.ts"]); }, }); @@ -1400,7 +1400,7 @@ export const checkHerebyfile = task({ const scriptTsconfigs = [ "./tools/scripts/tsc/tsconfig.json", - "./tsc/internal/lsp/lsproto/_generate/tsconfig.json", + "./tsc/pkg/lsp/lsproto/_generate/tsconfig.json", ]; export const checkScripts = task({ @@ -1659,7 +1659,7 @@ const getVersion = memoize(() => { return nativePreviewReleaseVersion; } - const f = fs.readFileSync("./tsc/internal/core/version.go", "utf8"); + const f = fs.readFileSync("./tsc/pkg/core/version.go", "utf8"); const match = f.match(/var version\s*=\s*"(\d+\.\d+\.\d+)(-[^"]+)?"/); if (!match) { diff --git a/packages/typescript/src/enums/checkFlags.enum.ts b/packages/typescript/src/enums/checkFlags.enum.ts index 7aab3deb385bf..53eec24afe958 100644 --- a/packages/typescript/src/enums/checkFlags.enum.ts +++ b/packages/typescript/src/enums/checkFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/checkflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/checkflags.go. DO NOT EDIT. export enum CheckFlags { None = 0, diff --git a/packages/typescript/src/enums/checkFlags.ts b/packages/typescript/src/enums/checkFlags.ts index 8dfcbdb384974..7010abfe83254 100644 --- a/packages/typescript/src/enums/checkFlags.ts +++ b/packages/typescript/src/enums/checkFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/checkflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/checkflags.go. DO NOT EDIT. export var CheckFlags: any; (function (CheckFlags) { CheckFlags[CheckFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/completionItemKind.enum.ts b/packages/typescript/src/enums/completionItemKind.enum.ts index 3118b0d02e4be..fa31be396cdd4 100644 --- a/packages/typescript/src/enums/completionItemKind.enum.ts +++ b/packages/typescript/src/enums/completionItemKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/lsp/lsproto/lsp_generated.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/lsp/lsproto/lsp_generated.go. DO NOT EDIT. export enum CompletionItemKind { Text = 1, diff --git a/packages/typescript/src/enums/completionItemKind.ts b/packages/typescript/src/enums/completionItemKind.ts index 3c946ea6af203..8ff7a60146d1c 100644 --- a/packages/typescript/src/enums/completionItemKind.ts +++ b/packages/typescript/src/enums/completionItemKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/lsp/lsproto/lsp_generated.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/lsp/lsproto/lsp_generated.go. DO NOT EDIT. export var CompletionItemKind: any; (function (CompletionItemKind) { CompletionItemKind[CompletionItemKind["Text"] = 1] = "Text"; diff --git a/packages/typescript/src/enums/diagnosticCategory.enum.ts b/packages/typescript/src/enums/diagnosticCategory.enum.ts index 1014d1e6a4698..50a333ebc28c6 100644 --- a/packages/typescript/src/enums/diagnosticCategory.enum.ts +++ b/packages/typescript/src/enums/diagnosticCategory.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/diagnostics/diagnostics.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/diagnostics/diagnostics.go. DO NOT EDIT. export enum DiagnosticCategory { Warning = 0, diff --git a/packages/typescript/src/enums/diagnosticCategory.ts b/packages/typescript/src/enums/diagnosticCategory.ts index 75c588c41918a..37ffcf46ac9f5 100644 --- a/packages/typescript/src/enums/diagnosticCategory.ts +++ b/packages/typescript/src/enums/diagnosticCategory.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/diagnostics/diagnostics.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/diagnostics/diagnostics.go. DO NOT EDIT. export var DiagnosticCategory: any; (function (DiagnosticCategory) { DiagnosticCategory[DiagnosticCategory["Warning"] = 0] = "Warning"; diff --git a/packages/typescript/src/enums/diagnosticDirectivePolicy.enum.ts b/packages/typescript/src/enums/diagnosticDirectivePolicy.enum.ts index 74ea6f1dcf25d..2f6323ac0d809 100644 --- a/packages/typescript/src/enums/diagnosticDirectivePolicy.enum.ts +++ b/packages/typescript/src/enums/diagnosticDirectivePolicy.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/ast.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/ast.go. DO NOT EDIT. export enum DiagnosticDirectivePolicy { Ignore = 0, diff --git a/packages/typescript/src/enums/diagnosticDirectivePolicy.ts b/packages/typescript/src/enums/diagnosticDirectivePolicy.ts index 46d7a7c539d1d..81e43c034101e 100644 --- a/packages/typescript/src/enums/diagnosticDirectivePolicy.ts +++ b/packages/typescript/src/enums/diagnosticDirectivePolicy.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/ast.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/ast.go. DO NOT EDIT. export var DiagnosticDirectivePolicy: any; (function (DiagnosticDirectivePolicy) { DiagnosticDirectivePolicy[DiagnosticDirectivePolicy["Ignore"] = 0] = "Ignore"; diff --git a/packages/typescript/src/enums/elementFlags.enum.ts b/packages/typescript/src/enums/elementFlags.enum.ts index 5905d808a2e85..af646a6dbe59a 100644 --- a/packages/typescript/src/enums/elementFlags.enum.ts +++ b/packages/typescript/src/enums/elementFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum ElementFlags { None = 0, diff --git a/packages/typescript/src/enums/elementFlags.ts b/packages/typescript/src/enums/elementFlags.ts index fa0ff45cd2380..510e3235f3edc 100644 --- a/packages/typescript/src/enums/elementFlags.ts +++ b/packages/typescript/src/enums/elementFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var ElementFlags: any; (function (ElementFlags) { ElementFlags[ElementFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/emitOnly.enum.ts b/packages/typescript/src/enums/emitOnly.enum.ts index 4d29dd3c0849f..d62dd59798dbc 100644 --- a/packages/typescript/src/enums/emitOnly.enum.ts +++ b/packages/typescript/src/enums/emitOnly.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/compiler/emitter.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/compiler/emitter.go. DO NOT EDIT. export enum EmitOnly { All = 0, diff --git a/packages/typescript/src/enums/emitOnly.ts b/packages/typescript/src/enums/emitOnly.ts index 44ee14f68b248..a853e117a92c3 100644 --- a/packages/typescript/src/enums/emitOnly.ts +++ b/packages/typescript/src/enums/emitOnly.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/compiler/emitter.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/compiler/emitter.go. DO NOT EDIT. export var EmitOnly: any; (function (EmitOnly) { EmitOnly[EmitOnly["All"] = 0] = "All"; diff --git a/packages/typescript/src/enums/internalSymbolName.enum.ts b/packages/typescript/src/enums/internalSymbolName.enum.ts index 1660591cc69ef..0261948763d88 100644 --- a/packages/typescript/src/enums/internalSymbolName.enum.ts +++ b/packages/typescript/src/enums/internalSymbolName.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/symbol.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/symbol.go. DO NOT EDIT. export enum InternalSymbolName { Call = "__call", diff --git a/packages/typescript/src/enums/internalSymbolName.ts b/packages/typescript/src/enums/internalSymbolName.ts index 1352b8690bd95..ea37f255e4e1d 100644 --- a/packages/typescript/src/enums/internalSymbolName.ts +++ b/packages/typescript/src/enums/internalSymbolName.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/symbol.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/symbol.go. DO NOT EDIT. export var InternalSymbolName: any; (function (InternalSymbolName) { InternalSymbolName["Call"] = "__call"; diff --git a/packages/typescript/src/enums/jsxEmit.enum.ts b/packages/typescript/src/enums/jsxEmit.enum.ts index 7270c60ee0611..4a1d7212608d0 100644 --- a/packages/typescript/src/enums/jsxEmit.enum.ts +++ b/packages/typescript/src/enums/jsxEmit.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export enum JsxEmit { None = 0, diff --git a/packages/typescript/src/enums/jsxEmit.ts b/packages/typescript/src/enums/jsxEmit.ts index 2d82471d099ad..c89801369c8e6 100644 --- a/packages/typescript/src/enums/jsxEmit.ts +++ b/packages/typescript/src/enums/jsxEmit.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export var JsxEmit: any; (function (JsxEmit) { JsxEmit[JsxEmit["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/modifierFlags.enum.ts b/packages/typescript/src/enums/modifierFlags.enum.ts index 3d7923ff86d4d..1d9b2ff97d462 100644 --- a/packages/typescript/src/enums/modifierFlags.enum.ts +++ b/packages/typescript/src/enums/modifierFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/modifierflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/modifierflags.go. DO NOT EDIT. export enum ModifierFlags { None = 0, diff --git a/packages/typescript/src/enums/modifierFlags.ts b/packages/typescript/src/enums/modifierFlags.ts index 43ec0b39076fc..f25885d7cfca4 100644 --- a/packages/typescript/src/enums/modifierFlags.ts +++ b/packages/typescript/src/enums/modifierFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/modifierflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/modifierflags.go. DO NOT EDIT. export var ModifierFlags: any; (function (ModifierFlags) { ModifierFlags[ModifierFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/moduleDetectionKind.enum.ts b/packages/typescript/src/enums/moduleDetectionKind.enum.ts index 3550ff58ad43d..983930f406098 100644 --- a/packages/typescript/src/enums/moduleDetectionKind.enum.ts +++ b/packages/typescript/src/enums/moduleDetectionKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export enum ModuleDetectionKind { None = 0, diff --git a/packages/typescript/src/enums/moduleDetectionKind.ts b/packages/typescript/src/enums/moduleDetectionKind.ts index 4f9e7ed54a7c4..30a6923d5c796 100644 --- a/packages/typescript/src/enums/moduleDetectionKind.ts +++ b/packages/typescript/src/enums/moduleDetectionKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export var ModuleDetectionKind: any; (function (ModuleDetectionKind) { ModuleDetectionKind[ModuleDetectionKind["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/moduleKind.enum.ts b/packages/typescript/src/enums/moduleKind.enum.ts index 6a9362631e2c7..4343d8baa4cba 100644 --- a/packages/typescript/src/enums/moduleKind.enum.ts +++ b/packages/typescript/src/enums/moduleKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export enum ModuleKind { None = 0, diff --git a/packages/typescript/src/enums/moduleKind.ts b/packages/typescript/src/enums/moduleKind.ts index 0158c88a172e8..cc6aff86fb1a6 100644 --- a/packages/typescript/src/enums/moduleKind.ts +++ b/packages/typescript/src/enums/moduleKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export var ModuleKind: any; (function (ModuleKind) { ModuleKind[ModuleKind["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/moduleResolutionKind.enum.ts b/packages/typescript/src/enums/moduleResolutionKind.enum.ts index d1229a6dcaf38..a6badeb39e1e4 100644 --- a/packages/typescript/src/enums/moduleResolutionKind.enum.ts +++ b/packages/typescript/src/enums/moduleResolutionKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export enum ModuleResolutionKind { Unknown = 0, diff --git a/packages/typescript/src/enums/moduleResolutionKind.ts b/packages/typescript/src/enums/moduleResolutionKind.ts index 2f99ddc4e0c55..fe51cc9923b05 100644 --- a/packages/typescript/src/enums/moduleResolutionKind.ts +++ b/packages/typescript/src/enums/moduleResolutionKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export var ModuleResolutionKind: any; (function (ModuleResolutionKind) { ModuleResolutionKind[ModuleResolutionKind["Unknown"] = 0] = "Unknown"; diff --git a/packages/typescript/src/enums/newLineKind.enum.ts b/packages/typescript/src/enums/newLineKind.enum.ts index 1aba40b360aba..b82ef2c701d9a 100644 --- a/packages/typescript/src/enums/newLineKind.enum.ts +++ b/packages/typescript/src/enums/newLineKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export enum NewLineKind { None = 0, diff --git a/packages/typescript/src/enums/newLineKind.ts b/packages/typescript/src/enums/newLineKind.ts index 43dce5e02005a..87c0039c5e5ba 100644 --- a/packages/typescript/src/enums/newLineKind.ts +++ b/packages/typescript/src/enums/newLineKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/compileroptions.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/compileroptions.go. DO NOT EDIT. export var NewLineKind: any; (function (NewLineKind) { NewLineKind[NewLineKind["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/nodeBuilderFlags.enum.ts b/packages/typescript/src/enums/nodeBuilderFlags.enum.ts index f7ecf188b1908..f43b74ee2ffdc 100644 --- a/packages/typescript/src/enums/nodeBuilderFlags.enum.ts +++ b/packages/typescript/src/enums/nodeBuilderFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/nodebuilder/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/nodebuilder/types.go. DO NOT EDIT. export enum NodeBuilderFlags { None = 0, diff --git a/packages/typescript/src/enums/nodeBuilderFlags.ts b/packages/typescript/src/enums/nodeBuilderFlags.ts index 020e1af5136db..4e69993254629 100644 --- a/packages/typescript/src/enums/nodeBuilderFlags.ts +++ b/packages/typescript/src/enums/nodeBuilderFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/nodebuilder/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/nodebuilder/types.go. DO NOT EDIT. export var NodeBuilderFlags: any; (function (NodeBuilderFlags) { NodeBuilderFlags[NodeBuilderFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/nodeFlags.enum.ts b/packages/typescript/src/enums/nodeFlags.enum.ts index 614736d0e38bb..0ac165bfea4c5 100644 --- a/packages/typescript/src/enums/nodeFlags.enum.ts +++ b/packages/typescript/src/enums/nodeFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/nodeflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/nodeflags.go. DO NOT EDIT. export enum NodeFlags { None = 0, diff --git a/packages/typescript/src/enums/nodeFlags.ts b/packages/typescript/src/enums/nodeFlags.ts index e1a41bc27b6f7..42253a42460bf 100644 --- a/packages/typescript/src/enums/nodeFlags.ts +++ b/packages/typescript/src/enums/nodeFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/nodeflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/nodeflags.go. DO NOT EDIT. export var NodeFlags: any; (function (NodeFlags) { NodeFlags[NodeFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/objectFlags.enum.ts b/packages/typescript/src/enums/objectFlags.enum.ts index 63ed4e4d3c93f..c40ac9c21a07c 100644 --- a/packages/typescript/src/enums/objectFlags.enum.ts +++ b/packages/typescript/src/enums/objectFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum ObjectFlags { None = 0, diff --git a/packages/typescript/src/enums/objectFlags.ts b/packages/typescript/src/enums/objectFlags.ts index 1c17a70d5f797..6adb95c0cee5a 100644 --- a/packages/typescript/src/enums/objectFlags.ts +++ b/packages/typescript/src/enums/objectFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var ObjectFlags: any; (function (ObjectFlags) { ObjectFlags[ObjectFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/outerExpressionKinds.enum.ts b/packages/typescript/src/enums/outerExpressionKinds.enum.ts index 5cf9d3a2b8440..b679c4ed7a2fe 100644 --- a/packages/typescript/src/enums/outerExpressionKinds.enum.ts +++ b/packages/typescript/src/enums/outerExpressionKinds.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/utilities.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/utilities.go. DO NOT EDIT. export enum OuterExpressionKinds { Parentheses = 1 << 0, diff --git a/packages/typescript/src/enums/outerExpressionKinds.ts b/packages/typescript/src/enums/outerExpressionKinds.ts index 83a9ec9c75c33..cada8d425e9d3 100644 --- a/packages/typescript/src/enums/outerExpressionKinds.ts +++ b/packages/typescript/src/enums/outerExpressionKinds.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/utilities.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/utilities.go. DO NOT EDIT. export var OuterExpressionKinds: any; (function (OuterExpressionKinds) { OuterExpressionKinds[OuterExpressionKinds["Parentheses"] = 1] = "Parentheses"; diff --git a/packages/typescript/src/enums/scriptKind.enum.ts b/packages/typescript/src/enums/scriptKind.enum.ts index 66b181d5b837c..6f6d28a222117 100644 --- a/packages/typescript/src/enums/scriptKind.enum.ts +++ b/packages/typescript/src/enums/scriptKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/scriptkind.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/scriptkind.go. DO NOT EDIT. export enum ScriptKind { Unknown = 0, diff --git a/packages/typescript/src/enums/scriptKind.ts b/packages/typescript/src/enums/scriptKind.ts index 5d9812af851db..1d964a0d3131b 100644 --- a/packages/typescript/src/enums/scriptKind.ts +++ b/packages/typescript/src/enums/scriptKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/core/scriptkind.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/core/scriptkind.go. DO NOT EDIT. export var ScriptKind: any; (function (ScriptKind) { ScriptKind[ScriptKind["Unknown"] = 0] = "Unknown"; diff --git a/packages/typescript/src/enums/signatureFlags.enum.ts b/packages/typescript/src/enums/signatureFlags.enum.ts index a3d7e51b6f923..437570560f9bc 100644 --- a/packages/typescript/src/enums/signatureFlags.enum.ts +++ b/packages/typescript/src/enums/signatureFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum SignatureFlags { None = 0, diff --git a/packages/typescript/src/enums/signatureFlags.ts b/packages/typescript/src/enums/signatureFlags.ts index aefca0a1055f8..aee4f1187a23a 100644 --- a/packages/typescript/src/enums/signatureFlags.ts +++ b/packages/typescript/src/enums/signatureFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var SignatureFlags: any; (function (SignatureFlags) { SignatureFlags[SignatureFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/signatureKind.enum.ts b/packages/typescript/src/enums/signatureKind.enum.ts index fe354479d617d..85dba77816243 100644 --- a/packages/typescript/src/enums/signatureKind.enum.ts +++ b/packages/typescript/src/enums/signatureKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum SignatureKind { Call = 0, diff --git a/packages/typescript/src/enums/signatureKind.ts b/packages/typescript/src/enums/signatureKind.ts index 9177cdd4a067d..9acdab426aac7 100644 --- a/packages/typescript/src/enums/signatureKind.ts +++ b/packages/typescript/src/enums/signatureKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var SignatureKind: any; (function (SignatureKind) { SignatureKind[SignatureKind["Call"] = 0] = "Call"; diff --git a/packages/typescript/src/enums/spanMapFeature.enum.ts b/packages/typescript/src/enums/spanMapFeature.enum.ts index 4bdd07a49e1c9..953d6975b1250 100644 --- a/packages/typescript/src/enums/spanMapFeature.enum.ts +++ b/packages/typescript/src/enums/spanMapFeature.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export enum SpanMapFeature { Hover = 1 << 0, diff --git a/packages/typescript/src/enums/spanMapFeature.ts b/packages/typescript/src/enums/spanMapFeature.ts index 625ff58ae10b3..1bdf579ec43e7 100644 --- a/packages/typescript/src/enums/spanMapFeature.ts +++ b/packages/typescript/src/enums/spanMapFeature.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export var SpanMapFeature: any; (function (SpanMapFeature) { SpanMapFeature[SpanMapFeature["Hover"] = 1] = "Hover"; diff --git a/packages/typescript/src/enums/spanMapFidelity.enum.ts b/packages/typescript/src/enums/spanMapFidelity.enum.ts index 00c9a498c74dd..e2e456c6b5c2e 100644 --- a/packages/typescript/src/enums/spanMapFidelity.enum.ts +++ b/packages/typescript/src/enums/spanMapFidelity.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export enum SpanMapFidelity { Exact = 0, diff --git a/packages/typescript/src/enums/spanMapFidelity.ts b/packages/typescript/src/enums/spanMapFidelity.ts index 2a4f92ecb0178..24a5d581694a3 100644 --- a/packages/typescript/src/enums/spanMapFidelity.ts +++ b/packages/typescript/src/enums/spanMapFidelity.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export var SpanMapFidelity: any; (function (SpanMapFidelity) { SpanMapFidelity[SpanMapFidelity["Exact"] = 0] = "Exact"; diff --git a/packages/typescript/src/enums/spanMapKind.enum.ts b/packages/typescript/src/enums/spanMapKind.enum.ts index db71ed3b2f015..302cd463d8bc0 100644 --- a/packages/typescript/src/enums/spanMapKind.enum.ts +++ b/packages/typescript/src/enums/spanMapKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export enum SpanMapKind { Verbatim = 0, diff --git a/packages/typescript/src/enums/spanMapKind.ts b/packages/typescript/src/enums/spanMapKind.ts index e514215da849c..7dec1498cdd3c 100644 --- a/packages/typescript/src/enums/spanMapKind.ts +++ b/packages/typescript/src/enums/spanMapKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/spanmap/spanmap.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/spanmap/spanmap.go. DO NOT EDIT. export var SpanMapKind: any; (function (SpanMapKind) { SpanMapKind[SpanMapKind["Verbatim"] = 0] = "Verbatim"; diff --git a/packages/typescript/src/enums/symbolFlags.enum.ts b/packages/typescript/src/enums/symbolFlags.enum.ts index 6350084ced171..9c2d92b8dfbe2 100644 --- a/packages/typescript/src/enums/symbolFlags.enum.ts +++ b/packages/typescript/src/enums/symbolFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/symbolflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/symbolflags.go. DO NOT EDIT. export enum SymbolFlags { None = 0, diff --git a/packages/typescript/src/enums/symbolFlags.ts b/packages/typescript/src/enums/symbolFlags.ts index a962554b6d51b..d0fbe1279c5a6 100644 --- a/packages/typescript/src/enums/symbolFlags.ts +++ b/packages/typescript/src/enums/symbolFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/symbolflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/symbolflags.go. DO NOT EDIT. export var SymbolFlags: any; (function (SymbolFlags) { SymbolFlags[SymbolFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/syntaxKind.enum.ts b/packages/typescript/src/enums/syntaxKind.enum.ts index 400c16806abf5..fd3e407c11886 100644 --- a/packages/typescript/src/enums/syntaxKind.enum.ts +++ b/packages/typescript/src/enums/syntaxKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/kind_generated.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/kind_generated.go. DO NOT EDIT. export enum SyntaxKind { Unknown = 0, diff --git a/packages/typescript/src/enums/syntaxKind.ts b/packages/typescript/src/enums/syntaxKind.ts index 87c2385c7cd47..8cdbe834eaba4 100644 --- a/packages/typescript/src/enums/syntaxKind.ts +++ b/packages/typescript/src/enums/syntaxKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/kind_generated.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/kind_generated.go. DO NOT EDIT. export var SyntaxKind: any; (function (SyntaxKind) { SyntaxKind[SyntaxKind["Unknown"] = 0] = "Unknown"; diff --git a/packages/typescript/src/enums/tokenFlags.enum.ts b/packages/typescript/src/enums/tokenFlags.enum.ts index 8459f360d196e..cfd1167d87776 100644 --- a/packages/typescript/src/enums/tokenFlags.enum.ts +++ b/packages/typescript/src/enums/tokenFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/tokenflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/tokenflags.go. DO NOT EDIT. export enum TokenFlags { None = 0, diff --git a/packages/typescript/src/enums/tokenFlags.ts b/packages/typescript/src/enums/tokenFlags.ts index eece2c2eefecc..46e0f736e1ef9 100644 --- a/packages/typescript/src/enums/tokenFlags.ts +++ b/packages/typescript/src/enums/tokenFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/ast/tokenflags.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/ast/tokenflags.go. DO NOT EDIT. export var TokenFlags: any; (function (TokenFlags) { TokenFlags[TokenFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/typeFlags.enum.ts b/packages/typescript/src/enums/typeFlags.enum.ts index 88701e2174f55..1f079d948fa3a 100644 --- a/packages/typescript/src/enums/typeFlags.enum.ts +++ b/packages/typescript/src/enums/typeFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum TypeFlags { None = 0, diff --git a/packages/typescript/src/enums/typeFlags.ts b/packages/typescript/src/enums/typeFlags.ts index 01fbbcbdeaca5..2c88808aaf8a7 100644 --- a/packages/typescript/src/enums/typeFlags.ts +++ b/packages/typescript/src/enums/typeFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var TypeFlags: any; (function (TypeFlags) { TypeFlags[TypeFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/typeFormatFlags.enum.ts b/packages/typescript/src/enums/typeFormatFlags.enum.ts index dbf5ce42a1c0a..efdd95954e33e 100644 --- a/packages/typescript/src/enums/typeFormatFlags.enum.ts +++ b/packages/typescript/src/enums/typeFormatFlags.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum TypeFormatFlags { None = 0, diff --git a/packages/typescript/src/enums/typeFormatFlags.ts b/packages/typescript/src/enums/typeFormatFlags.ts index 406656d44b3c9..c06a25e609204 100644 --- a/packages/typescript/src/enums/typeFormatFlags.ts +++ b/packages/typescript/src/enums/typeFormatFlags.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var TypeFormatFlags: any; (function (TypeFormatFlags) { TypeFormatFlags[TypeFormatFlags["None"] = 0] = "None"; diff --git a/packages/typescript/src/enums/typePredicateKind.enum.ts b/packages/typescript/src/enums/typePredicateKind.enum.ts index e79af96776168..f005e5439e010 100644 --- a/packages/typescript/src/enums/typePredicateKind.enum.ts +++ b/packages/typescript/src/enums/typePredicateKind.enum.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export enum TypePredicateKind { This = 0, diff --git a/packages/typescript/src/enums/typePredicateKind.ts b/packages/typescript/src/enums/typePredicateKind.ts index 5e0a61ff9c1e2..62ebc7c41f7b1 100644 --- a/packages/typescript/src/enums/typePredicateKind.ts +++ b/packages/typescript/src/enums/typePredicateKind.ts @@ -1,4 +1,4 @@ -// Code generated by Herebyfile.mjs generate:enums from tsc/internal/checker/types.go. DO NOT EDIT. +// Code generated by Herebyfile.mjs generate:enums from tsc/pkg/checker/types.go. DO NOT EDIT. export var TypePredicateKind: any; (function (TypePredicateKind) { TypePredicateKind[TypePredicateKind["This"] = 0] = "This"; diff --git a/packages/vscode-typescript/src/client.ts b/packages/vscode-typescript/src/client.ts index b8bd17df8540a..187448dc67bec 100644 --- a/packages/vscode-typescript/src/client.ts +++ b/packages/vscode-typescript/src/client.ts @@ -718,7 +718,7 @@ function sanitizeStderrLine(line: string): string { const leadingWhitespace = line.match(/^(\s*)/)?.[1] ?? ""; // Stack frame file path lines look like: \t/full/path/to/file.go:123 +0x40 - // Function lines look like: github.com/microsoft/TypeScript/tsc/internal/foo.Bar(...) + // Function lines look like: github.com/frida/TypeScript/tsc/pkg/foo.Bar(...) const ourModuleMarker = "TypeScript/tsc/"; const idx = line.indexOf(ourModuleMarker); if (idx >= 0) { diff --git a/tools/gen-proto/main.go b/tools/gen-proto/main.go index ce65bc39772fb..292bf657ef4ff 100644 --- a/tools/gen-proto/main.go +++ b/tools/gen-proto/main.go @@ -492,29 +492,29 @@ func (r *typeRenderer) namedType(named *types.Named) string { case r.apiPackagePath + ".DocumentIdentifier": r.documentIdentifier = obj return "DocumentIdentifier" - case "github.com/microsoft/TypeScript/tsc/internal/packagejson.JSONValue": + case "github.com/frida/TypeScript/tsc/pkg/packagejson.JSONValue": return "unknown" - case "github.com/microsoft/TypeScript/tsc/internal/json.Value": + case "github.com/frida/TypeScript/tsc/pkg/json.Value": return "unknown" case "github.com/go-json-experiment/json/jsontext.Value": // multiple ways to refer to this type depending on `go` version return "unknown" case "encoding/json/jsontext.Value": return "unknown" - case "github.com/microsoft/TypeScript/tsc/internal/core.Tristate": + case "github.com/frida/TypeScript/tsc/pkg/core.Tristate": return "boolean" - case "github.com/microsoft/TypeScript/tsc/internal/core.JsxEmit": + case "github.com/frida/TypeScript/tsc/pkg/core.JsxEmit": return r.importType("JsxEmit", "#enums/jsxEmit") - case "github.com/microsoft/TypeScript/tsc/internal/core.ModuleDetectionKind": + case "github.com/frida/TypeScript/tsc/pkg/core.ModuleDetectionKind": return r.importType("ModuleDetectionKind", "#enums/moduleDetectionKind") - case "github.com/microsoft/TypeScript/tsc/internal/core.ModuleKind": + case "github.com/frida/TypeScript/tsc/pkg/core.ModuleKind": return r.importType("ModuleKind", "#enums/moduleKind") - case "github.com/microsoft/TypeScript/tsc/internal/core.ModuleResolutionKind": + case "github.com/frida/TypeScript/tsc/pkg/core.ModuleResolutionKind": return r.importType("ModuleResolutionKind", "#enums/moduleResolutionKind") - case "github.com/microsoft/TypeScript/tsc/internal/core.NewLineKind": + case "github.com/frida/TypeScript/tsc/pkg/core.NewLineKind": return r.importType("NewLineKind", "#enums/newLineKind") - case "github.com/microsoft/TypeScript/tsc/internal/core.ScriptTarget": + case "github.com/frida/TypeScript/tsc/pkg/core.ScriptTarget": return r.importType("ScriptTarget", "#enums/scriptTarget") - case "github.com/microsoft/TypeScript/tsc/internal/collections.OrderedMap": + case "github.com/frida/TypeScript/tsc/pkg/collections.OrderedMap": if named.TypeArgs().Len() != 2 { return "Record" } diff --git a/tools/scripts/tsc/generate-encoder.ts b/tools/scripts/tsc/generate-encoder.ts index b0c9f9e5f57ea..16df0f4c7ffef 100644 --- a/tools/scripts/tsc/generate-encoder.ts +++ b/tools/scripts/tsc/generate-encoder.ts @@ -349,7 +349,7 @@ function generateGoEncoder(): string { w.push(); w.write('"fmt"'); w.write(""); - w.write('"github.com/microsoft/TypeScript/tsc/internal/ast"'); + w.write('"github.com/frida/TypeScript/tsc/pkg/ast"'); w.pop(); w.write(")"); w.write(""); @@ -596,7 +596,7 @@ function generateGoDecoder(): string { w.push(); w.write('"fmt"'); w.write(""); - w.write('"github.com/microsoft/TypeScript/tsc/internal/ast"'); + w.write('"github.com/frida/TypeScript/tsc/pkg/ast"'); w.pop(); w.write(")"); w.write(""); @@ -2029,14 +2029,14 @@ export default function main() { const goEncoder = generateGoEncoder(); writeAndFormat( - path.join(ROOT, "tsc/internal/api/encoder/encoder_generated.go"), + path.join(ROOT, "tsc/pkg/api/encoder/encoder_generated.go"), goEncoder + "\n", "dprint fmt", ); const goDecoder = generateGoDecoder(); writeAndFormat( - path.join(ROOT, "tsc/internal/api/encoder/decoder_generated.go"), + path.join(ROOT, "tsc/pkg/api/encoder/decoder_generated.go"), goDecoder + "\n", "dprint fmt", ); diff --git a/tools/scripts/tsc/generate-go-ast.ts b/tools/scripts/tsc/generate-go-ast.ts index e85658397729c..f608a2e9b8fbc 100644 --- a/tools/scripts/tsc/generate-go-ast.ts +++ b/tools/scripts/tsc/generate-go-ast.ts @@ -128,7 +128,7 @@ function generateHeader(w: CodeWriter) { w.push(); w.write('"sync/atomic"'); w.write(""); - w.write('"github.com/microsoft/TypeScript/tsc/internal/core"'); + w.write('"github.com/frida/TypeScript/tsc/pkg/core"'); w.pop(); w.write(")"); w.write(""); @@ -1095,11 +1095,11 @@ export default function main() { console.log("Generating Go AST code..."); const code = generate(); - const outPath = path.join(ROOT, "tsc/internal/ast/ast_generated.go"); + const outPath = path.join(ROOT, "tsc/pkg/ast/ast_generated.go"); writeAndFormat(outPath, code + "\n"); const kindCode = generateKind(); - const kindOutPath = path.join(ROOT, "tsc/internal/ast/kind_generated.go"); + const kindOutPath = path.join(ROOT, "tsc/pkg/ast/kind_generated.go"); writeAndFormat(kindOutPath, kindCode + "\n"); } diff --git a/tsc/cmd/tsc/api.go b/tsc/cmd/tsc/api.go index 56058687c66e5..610371bbc16fa 100644 --- a/tsc/cmd/tsc/api.go +++ b/tsc/cmd/tsc/api.go @@ -9,9 +9,9 @@ import ( "strings" "syscall" - "github.com/microsoft/TypeScript/tsc/internal/api" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/api" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" ) type apiFlags struct { diff --git a/tsc/cmd/tsc/lsp.go b/tsc/cmd/tsc/lsp.go index 2a0361723ab8b..c7e00ab37948b 100644 --- a/tsc/cmd/tsc/lsp.go +++ b/tsc/cmd/tsc/lsp.go @@ -10,11 +10,11 @@ import ( "syscall" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/pprof" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/pprof" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) func runLSP(args []string) int { diff --git a/tsc/cmd/tsc/main.go b/tsc/cmd/tsc/main.go index cbe3f0f4e567b..4e159aa6871b5 100644 --- a/tsc/cmd/tsc/main.go +++ b/tsc/cmd/tsc/main.go @@ -6,9 +6,9 @@ import ( "os/signal" "syscall" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute" - "github.com/microsoft/TypeScript/tsc/internal/osutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute" + "github.com/frida/TypeScript/tsc/pkg/osutil" ) func main() { diff --git a/tsc/cmd/tsc/sys.go b/tsc/cmd/tsc/sys.go index d73dfc393fff2..e8c7392ad422b 100644 --- a/tsc/cmd/tsc/sys.go +++ b/tsc/cmd/tsc/sys.go @@ -8,11 +8,11 @@ import ( "os/exec" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "golang.org/x/term" ) diff --git a/tsc/go.mod b/tsc/go.mod index 5de91445f175b..d03669d164c7c 100644 --- a/tsc/go.mod +++ b/tsc/go.mod @@ -1,4 +1,4 @@ -module github.com/microsoft/TypeScript/tsc +module github.com/frida/TypeScript/tsc go 1.26 diff --git a/tsc/internal/lsp/stack_sanitizer_test.go b/tsc/internal/lsp/stack_sanitizer_test.go deleted file mode 100644 index 984f041412364..0000000000000 --- a/tsc/internal/lsp/stack_sanitizer_test.go +++ /dev/null @@ -1,136 +0,0 @@ -package lsp - -import ( - "regexp" - "strings" - "testing" - - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" -) - -// This test uses non-trimmed paths to emulate debug builds. -// Most users won't actually see this. -func TestSanitizedDebugStackTraceCompletionsRequest(t *testing.T) { - t.Parallel() - - input := `goroutine 1196 [running]: -runtime/debug.Stack() - /usr/local/go/src/runtime/debug/stack.go:26 +0x8e -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).recover(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc00baf16e0) - /workspaces/TypeScript/tsc/internal/lsp/server.go:777 +0x65 -panic({0x1077b40?, 0x1abcb70?}) - /usr/local/go/src/runtime/panic.go:783 +0x136 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData.func15() - /workspaces/TypeScript/tsc/internal/ls/completions.go:1303 +0xfa -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData.func18() - /workspaces/TypeScript/tsc/internal/ls/completions.go:1548 +0x2df -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData(0xc004b08240, {0x14bc418, 0xc00bc60a20}, 0xc0069ef908, 0xc000272008, 0x1b, 0xc002b28e00) - /workspaces/TypeScript/tsc/internal/ls/completions.go:1581 +0x2b92 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionsAtPosition(0xc004b08240, {0x14bc418, 0xc00bc60a20}, 0xc000272008, 0x1b, 0x0) - /workspaces/TypeScript/tsc/internal/ls/completions.go:347 +0x690 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).ProvideCompletion(0xc004b08240, {0x14bc418, 0xc00bc60a20}, {0xc0092e02a0, 0x28}, {0x2, 0x4}, 0xc004580c30) - /workspaces/TypeScript/tsc/internal/ls/completions.go:47 +0x207 -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).handleCompletion(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc004b08240, 0xc00baf14d0) - /workspaces/TypeScript/tsc/internal/lsp/server.go:1102 +0xe5 -github.com/microsoft/TypeScript/tsc/internal/lsp.registerLanguageServiceWithAutoImportsRequestHandler[...].func1({0x14bc418, 0xc00bc60960}, 0xc00baf16e0) - /workspaces/TypeScript/tsc/internal/lsp/server.go:682 +0x32a -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).handleRequestOrNotification(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc00baf16e0) - /workspaces/TypeScript/tsc/internal/lsp/server.go:531 +0x11e -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).dispatchLoop.func1() - /workspaces/TypeScript/tsc/internal/lsp/server.go:414 +0x65 -created by github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).dispatchLoop in goroutine 19 - /workspaces/TypeScript/tsc/internal/lsp/server.go:438 +0x60` - - baseline.Run(t, "completionsDebugStackTrace.md", sanitizedStackTraceBaselineContents(t, input, sanitizeStackTrace(input)), baseline.Options{ - Subfolder: "lsp/stackSanitizer/", - }) -} - -func TestSanitizedReleaseStackTraceCompletionsRequest(t *testing.T) { - t.Parallel() - - input := `runtime error: invalid memory address or nil pointer dereference -goroutine 2331 [running]: -runtime/debug.Stack() - runtime/debug/stack.go:26 +0x5e -github.com/microsoft/TypeScript/tsc/cmd/tsc.runMain() - github.com/microsoft/TypeScript/tsc/cmd/tsc/main.go:17 +0x20 -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).recover(0xc0001c6e08, {0x441ae5?, 0xc000e976c0?}, 0xc00ab6c7b0) - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:777 +0x58 -panic({0xc323a0?, 0x1780b90?}) - runtime/panic.go:783 +0x132 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData.func15() - github.com/microsoft/TypeScript/tsc/internal/ls/completions.go:1303 +0xba -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData.func18(...) - github.com/microsoft/TypeScript/tsc/internal/ls/completions.go:1548 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionData(0xc008329200, {0x10f6688, 0xc00c2871d0}, 0xc00190b308, 0xc0001fe008, 0x1b, 0xc0008a2f00) - github.com/microsoft/TypeScript/tsc/internal/ls/completions.go:1581 +0x1ed4 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getCompletionsAtPosition(0xc008329200, {0x10f6688, 0xc00c2871d0}, 0xc0001fe008, 0x1b, 0x0) - github.com/microsoft/TypeScript/tsc/internal/ls/completions.go:347 +0x35f -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).ProvideCompletion(0xc008329200, {0x10f6688, 0xc00c287110}, {0xc00b472030?, 0xc00c287110?}, {0xb472030?, 0xc0?}, 0xc00c3ea000) - github.com/microsoft/TypeScript/tsc/internal/ls/completions.go:47 +0x11c -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).handleCompletion(0x418834?, {0x10f6688?, 0xc00c287110?}, 0xc00b472030?, 0x10f6688?) - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:1105 +0x39 -github.com/microsoft/TypeScript/tsc/internal/lsp.init.func1.registerLanguageServiceWithAutoImportsRequestHandler[...].28({0x10f6688, 0xc00c287110}, 0xc00ab6c7b0) - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:682 +0x16c -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).handleRequestOrNotification(0xc0001c6e08, {0x10f66c0?, 0xc006589180?}, 0xc00ab6c7b0) - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:531 +0x1c6 -github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).dispatchLoop.func1() - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:414 +0x3a -created by github.com/microsoft/TypeScript/tsc/internal/lsp.(*Server).dispatchLoop in goroutine 35 - github.com/microsoft/TypeScript/tsc/internal/lsp/server.go:438 +0x9f1` - - baseline.Run(t, "completionsReleaseStackTrace.md", sanitizedStackTraceBaselineContents(t, input, sanitizeStackTrace(input)), baseline.Options{ - Subfolder: "lsp/stackSanitizer/", - }) -} - -func sanitizedStackTraceBaselineContents(t *testing.T, input string, output string) string { - builder := strings.Builder{} - builder.WriteString("Test name: `") - builder.WriteString(t.Name()) - builder.WriteString("`\n\n# Unsanitized input:\n\n````\n") - builder.WriteString(input) - builder.WriteString("\n````\n\n# Sanitized output:\n\n````\n") - builder.WriteString(output) - builder.WriteString("\n````\n") - return builder.String() -} - -// Mirror of the "Generic Secret" pattern from VS Code's -// removePropertiesWithPossibleUserInfo. If this matches the sanitized output, -// VS Code's telemetry pipeline will replace the entire string with -// ``, destroying the stack trace. -var vscodeGenericSecretRegex = regexp.MustCompile(`(?i)(key|token|sig|secret|signature|password|passwd|pwd|android:value)[^a-zA-Z0-9]`) - -func TestSanitizedStackTraceDefeatsVSCodeGenericSecretRegex(t *testing.T) { - t.Parallel() - - // Frame names contain identifiers that contain trigger keywords: - // `getSignatureHelp` (signature), `LookupKey` (key), `validateToken` (token), - // `signRequest` (sig), `setPwd` (pwd), and a file `signature.go`. - input := `goroutine 7 [running]: -runtime/debug.Stack() - runtime/debug/stack.go:26 +0x5e -github.com/microsoft/TypeScript/tsc/cmd/tsc.runMain() - github.com/microsoft/TypeScript/tsc/cmd/tsc/main.go:17 +0x20 -github.com/microsoft/TypeScript/tsc/internal/ls.(*LanguageService).getSignatureHelp(0x1) - github.com/microsoft/TypeScript/tsc/internal/ls/signature.go:42 +0x10 -github.com/microsoft/TypeScript/tsc/internal/ls.LookupKey(0x2) - github.com/microsoft/TypeScript/tsc/internal/ls/keys.go:7 +0x10 -github.com/microsoft/TypeScript/tsc/internal/ls.validateToken(0x3) - github.com/microsoft/TypeScript/tsc/internal/ls/token.go:9 +0x10 -github.com/microsoft/TypeScript/tsc/internal/ls.signRequest(0x4) - github.com/microsoft/TypeScript/tsc/internal/ls/sig.go:11 +0x10 -github.com/microsoft/TypeScript/tsc/internal/ls.setPwd(0x5) - github.com/microsoft/TypeScript/tsc/internal/ls/pwd.go:13 +0x10` - - output := sanitizeStackTrace(input) - if loc := vscodeGenericSecretRegex.FindStringIndex(output); loc != nil { - t.Fatalf("sanitized stack trace would be redacted by VS Code's Generic Secret regex at %v: %q\nfull output:\n%s", loc, output[loc[0]:loc[1]], output) - } - - baseline.Run(t, "genericSecretWorkaround.md", sanitizedStackTraceBaselineContents(t, input, output), baseline.Options{ - Subfolder: "lsp/stackSanitizer/", - }) -} diff --git a/tsc/internal/api/callbackfs.go b/tsc/pkg/api/callbackfs.go similarity index 97% rename from tsc/internal/api/callbackfs.go rename to tsc/pkg/api/callbackfs.go index 9d2e1b9ce5659..7f15d79c74102 100644 --- a/tsc/internal/api/callbackfs.go +++ b/tsc/pkg/api/callbackfs.go @@ -5,9 +5,9 @@ import ( "fmt" "time" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // callbackFS wraps a base filesystem and delegates certain operations diff --git a/tsc/internal/api/encoder/decoder.go b/tsc/pkg/api/encoder/decoder.go similarity index 98% rename from tsc/internal/api/encoder/decoder.go rename to tsc/pkg/api/encoder/decoder.go index 463fab95dfa09..5f5fc5ae06c59 100644 --- a/tsc/internal/api/encoder/decoder.go +++ b/tsc/pkg/api/encoder/decoder.go @@ -5,9 +5,9 @@ import ( "errors" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // astDecoder reconstructs real *ast.Node objects from binary-encoded data. diff --git a/tsc/internal/api/encoder/decoder_generated.go b/tsc/pkg/api/encoder/decoder_generated.go similarity index 99% rename from tsc/internal/api/encoder/decoder_generated.go rename to tsc/pkg/api/encoder/decoder_generated.go index ff5b23cc06f22..d578c69c594aa 100644 --- a/tsc/internal/api/encoder/decoder_generated.go +++ b/tsc/pkg/api/encoder/decoder_generated.go @@ -5,7 +5,7 @@ package encoder import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" + "github.com/frida/TypeScript/tsc/pkg/ast" ) func (d *astDecoder) createStringNode(kind ast.Kind, data uint32, commonData uint8) (*ast.Node, error) { diff --git a/tsc/internal/api/encoder/decoder_test.go b/tsc/pkg/api/encoder/decoder_test.go similarity index 98% rename from tsc/internal/api/encoder/decoder_test.go rename to tsc/pkg/api/encoder/decoder_test.go index 26f6a95830a9e..5375de5bca55f 100644 --- a/tsc/internal/api/encoder/decoder_test.go +++ b/tsc/pkg/api/encoder/decoder_test.go @@ -5,11 +5,11 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/api/encoder" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" + "github.com/frida/TypeScript/tsc/pkg/api/encoder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/encoder/encoder.go b/tsc/pkg/api/encoder/encoder.go similarity index 99% rename from tsc/internal/api/encoder/encoder.go rename to tsc/pkg/api/encoder/encoder.go index 19cee9a951512..79b9364f1f0dc 100644 --- a/tsc/internal/api/encoder/encoder.go +++ b/tsc/pkg/api/encoder/encoder.go @@ -7,9 +7,9 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/spanmap" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/api/encoder/encoder_generated.go b/tsc/pkg/api/encoder/encoder_generated.go similarity index 99% rename from tsc/internal/api/encoder/encoder_generated.go rename to tsc/pkg/api/encoder/encoder_generated.go index b4a9021b6cd0b..53b58be581111 100644 --- a/tsc/internal/api/encoder/encoder_generated.go +++ b/tsc/pkg/api/encoder/encoder_generated.go @@ -5,7 +5,7 @@ package encoder import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" + "github.com/frida/TypeScript/tsc/pkg/ast" ) func getNodeDataType(node *ast.Node) uint32 { diff --git a/tsc/internal/api/encoder/encoder_test.go b/tsc/pkg/api/encoder/encoder_test.go similarity index 95% rename from tsc/internal/api/encoder/encoder_test.go rename to tsc/pkg/api/encoder/encoder_test.go index 4ac3e5ba036a6..fe7cb5fd432bb 100644 --- a/tsc/internal/api/encoder/encoder_test.go +++ b/tsc/pkg/api/encoder/encoder_test.go @@ -8,12 +8,12 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/api/encoder" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/api/encoder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/encoder/stringtable.go b/tsc/pkg/api/encoder/stringtable.go similarity index 97% rename from tsc/internal/api/encoder/stringtable.go rename to tsc/pkg/api/encoder/stringtable.go index 46cd674f32444..030f60a67ef27 100644 --- a/tsc/internal/api/encoder/stringtable.go +++ b/tsc/pkg/api/encoder/stringtable.go @@ -3,7 +3,7 @@ package encoder import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" + "github.com/frida/TypeScript/tsc/pkg/ast" ) type stringTable struct { diff --git a/tsc/internal/api/encoder/testmain_test.go b/tsc/pkg/api/encoder/testmain_test.go similarity index 54% rename from tsc/internal/api/encoder/testmain_test.go rename to tsc/pkg/api/encoder/testmain_test.go index a12d44682dda5..e7fd99fe7d770 100644 --- a/tsc/internal/api/encoder/testmain_test.go +++ b/tsc/pkg/api/encoder/testmain_test.go @@ -3,8 +3,8 @@ package encoder_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/api/enum_values_generated.go b/tsc/pkg/api/enum_values_generated.go similarity index 99% rename from tsc/internal/api/enum_values_generated.go rename to tsc/pkg/api/enum_values_generated.go index 8a6c2d8b92f21..cf2aa95b853dc 100644 --- a/tsc/internal/api/enum_values_generated.go +++ b/tsc/pkg/api/enum_values_generated.go @@ -12,14 +12,14 @@ import ( "encoding/json" "os" - ast "github.com/microsoft/TypeScript/tsc/internal/ast" - checker "github.com/microsoft/TypeScript/tsc/internal/checker" - compiler "github.com/microsoft/TypeScript/tsc/internal/compiler" - core "github.com/microsoft/TypeScript/tsc/internal/core" - diagnostics "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - lsproto "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - nodebuilder "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - spanmap "github.com/microsoft/TypeScript/tsc/internal/spanmap" + ast "github.com/frida/TypeScript/tsc/pkg/ast" + checker "github.com/frida/TypeScript/tsc/pkg/checker" + compiler "github.com/frida/TypeScript/tsc/pkg/compiler" + core "github.com/frida/TypeScript/tsc/pkg/core" + diagnostics "github.com/frida/TypeScript/tsc/pkg/diagnostics" + lsproto "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + nodebuilder "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + spanmap "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func main() { diff --git a/tsc/internal/api/jsonvalue_test.go b/tsc/pkg/api/jsonvalue_test.go similarity index 84% rename from tsc/internal/api/jsonvalue_test.go rename to tsc/pkg/api/jsonvalue_test.go index 90903bef4ea73..c1f7e54682bdc 100644 --- a/tsc/internal/api/jsonvalue_test.go +++ b/tsc/pkg/api/jsonvalue_test.go @@ -4,9 +4,9 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/proto.go b/tsc/pkg/api/proto.go similarity index 98% rename from tsc/internal/api/proto.go rename to tsc/pkg/api/proto.go index a2c021dd93e8f..ee752bb600882 100644 --- a/tsc/internal/api/proto.go +++ b/tsc/pkg/api/proto.go @@ -6,22 +6,22 @@ import ( "errors" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var ( diff --git a/tsc/internal/api/proto_test.go b/tsc/pkg/api/proto_test.go similarity index 89% rename from tsc/internal/api/proto_test.go rename to tsc/pkg/api/proto_test.go index e5add0c137345..85476a11783f1 100644 --- a/tsc/internal/api/proto_test.go +++ b/tsc/pkg/api/proto_test.go @@ -4,12 +4,12 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/api" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/api" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/protocol_msgpack.go b/tsc/pkg/api/protocol_msgpack.go similarity index 97% rename from tsc/internal/api/protocol_msgpack.go rename to tsc/pkg/api/protocol_msgpack.go index 848bb9a6e71b6..a501e35c63feb 100644 --- a/tsc/internal/api/protocol_msgpack.go +++ b/tsc/pkg/api/protocol_msgpack.go @@ -6,9 +6,9 @@ import ( "fmt" "io" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // MessageType represents the type of message in the msgpack protocol. diff --git a/tsc/internal/api/server.go b/tsc/pkg/api/server.go similarity index 91% rename from tsc/internal/api/server.go rename to tsc/pkg/api/server.go index d5e55fc74be8f..c71f8c3c81863 100644 --- a/tsc/internal/api/server.go +++ b/tsc/pkg/api/server.go @@ -5,12 +5,12 @@ import ( "fmt" "io" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) // StdioServerOptions configures the STDIO-based API server. diff --git a/tsc/internal/api/session.go b/tsc/pkg/api/session.go similarity index 99% rename from tsc/internal/api/session.go rename to tsc/pkg/api/session.go index a003d6e450f37..4398025dd60dc 100644 --- a/tsc/internal/api/session.go +++ b/tsc/pkg/api/session.go @@ -12,28 +12,28 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/api/encoder" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/pprof" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/transpile" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/api/encoder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/pprof" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/transpile" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var sessionIDCounter atomic.Uint64 diff --git a/tsc/internal/api/session_apistate_test.go b/tsc/pkg/api/session_apistate_test.go similarity index 97% rename from tsc/internal/api/session_apistate_test.go rename to tsc/pkg/api/session_apistate_test.go index 19696cf0bff98..3c1c73866ecd3 100644 --- a/tsc/internal/api/session_apistate_test.go +++ b/tsc/pkg/api/session_apistate_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/session_batch_test.go b/tsc/pkg/api/session_batch_test.go similarity index 97% rename from tsc/internal/api/session_batch_test.go rename to tsc/pkg/api/session_batch_test.go index d5fc1a8aa0d7d..2a06b7d9e1cbd 100644 --- a/tsc/internal/api/session_batch_test.go +++ b/tsc/pkg/api/session_batch_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/session_completion_test.go b/tsc/pkg/api/session_completion_test.go similarity index 96% rename from tsc/internal/api/session_completion_test.go rename to tsc/pkg/api/session_completion_test.go index 2fd3683b70377..f388b207b7326 100644 --- a/tsc/internal/api/session_completion_test.go +++ b/tsc/pkg/api/session_completion_test.go @@ -3,10 +3,10 @@ package api import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/session_createprogram_test.go b/tsc/pkg/api/session_createprogram_test.go similarity index 98% rename from tsc/internal/api/session_createprogram_test.go rename to tsc/pkg/api/session_createprogram_test.go index 2511bdaf11779..df8b53ec4d6c3 100644 --- a/tsc/internal/api/session_createprogram_test.go +++ b/tsc/pkg/api/session_createprogram_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/session_temporary_test.go b/tsc/pkg/api/session_temporary_test.go similarity index 97% rename from tsc/internal/api/session_temporary_test.go rename to tsc/pkg/api/session_temporary_test.go index c198c4c137ad9..33aee573f1ad3 100644 --- a/tsc/internal/api/session_temporary_test.go +++ b/tsc/pkg/api/session_temporary_test.go @@ -5,9 +5,9 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/session_textedit_test.go b/tsc/pkg/api/session_textedit_test.go similarity index 73% rename from tsc/internal/api/session_textedit_test.go rename to tsc/pkg/api/session_textedit_test.go index 2a025bcdcfe08..69611f99de373 100644 --- a/tsc/internal/api/session_textedit_test.go +++ b/tsc/pkg/api/session_textedit_test.go @@ -3,11 +3,11 @@ package api import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/api/stringer_generated.go b/tsc/pkg/api/stringer_generated.go similarity index 100% rename from tsc/internal/api/stringer_generated.go rename to tsc/pkg/api/stringer_generated.go diff --git a/tsc/internal/ast/ast.go b/tsc/pkg/ast/ast.go similarity index 99% rename from tsc/internal/ast/ast.go rename to tsc/pkg/ast/ast.go index a305269ca1f6b..86454dc2d5213 100644 --- a/tsc/internal/ast/ast.go +++ b/tsc/pkg/ast/ast.go @@ -7,11 +7,11 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/ast/ast_generated.go b/tsc/pkg/ast/ast_generated.go similarity index 99% rename from tsc/internal/ast/ast_generated.go rename to tsc/pkg/ast/ast_generated.go index ea7b17ee4cb47..a23a36b1f9a3c 100644 --- a/tsc/internal/ast/ast_generated.go +++ b/tsc/pkg/ast/ast_generated.go @@ -5,7 +5,7 @@ package ast import ( "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) var ( diff --git a/tsc/internal/ast/checkflags.go b/tsc/pkg/ast/checkflags.go similarity index 100% rename from tsc/internal/ast/checkflags.go rename to tsc/pkg/ast/checkflags.go diff --git a/tsc/internal/ast/deepclone.go b/tsc/pkg/ast/deepclone.go similarity index 97% rename from tsc/internal/ast/deepclone.go rename to tsc/pkg/ast/deepclone.go index b083b42a93183..e65f97ccc5685 100644 --- a/tsc/internal/ast/deepclone.go +++ b/tsc/pkg/ast/deepclone.go @@ -1,6 +1,6 @@ package ast -import "github.com/microsoft/TypeScript/tsc/internal/core" +import "github.com/frida/TypeScript/tsc/pkg/core" // Ideally, this would get cached on the node factory so there's only ever one set of closures made per factory func getDeepCloneVisitor(f *NodeFactory, syntheticLocation bool) *NodeVisitor { diff --git a/tsc/internal/ast/deepclone_test.go b/tsc/pkg/ast/deepclone_test.go similarity index 99% rename from tsc/internal/ast/deepclone_test.go rename to tsc/pkg/ast/deepclone_test.go index d8af4d33ad1ee..e522214598f87 100644 --- a/tsc/internal/ast/deepclone_test.go +++ b/tsc/pkg/ast/deepclone_test.go @@ -3,8 +3,8 @@ package ast_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ast/diagnostic.go b/tsc/pkg/ast/diagnostic.go similarity index 98% rename from tsc/internal/ast/diagnostic.go rename to tsc/pkg/ast/diagnostic.go index 1056e22873ca3..b9fc967993ef3 100644 --- a/tsc/internal/ast/diagnostic.go +++ b/tsc/pkg/ast/diagnostic.go @@ -5,11 +5,11 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // RepopulateDiagnosticKind indicates the kind of repopulation for a diagnostic chain entry. diff --git a/tsc/internal/ast/diagnostic_test.go b/tsc/pkg/ast/diagnostic_test.go similarity index 95% rename from tsc/internal/ast/diagnostic_test.go rename to tsc/pkg/ast/diagnostic_test.go index 83298c7b2ee41..de1e77a464718 100644 --- a/tsc/internal/ast/diagnostic_test.go +++ b/tsc/pkg/ast/diagnostic_test.go @@ -3,9 +3,9 @@ package ast import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ast/flow.go b/tsc/pkg/ast/flow.go similarity index 100% rename from tsc/internal/ast/flow.go rename to tsc/pkg/ast/flow.go diff --git a/tsc/internal/ast/functionflags.go b/tsc/pkg/ast/functionflags.go similarity index 100% rename from tsc/internal/ast/functionflags.go rename to tsc/pkg/ast/functionflags.go diff --git a/tsc/internal/ast/ids.go b/tsc/pkg/ast/ids.go similarity index 100% rename from tsc/internal/ast/ids.go rename to tsc/pkg/ast/ids.go diff --git a/tsc/internal/ast/kind_generated.go b/tsc/pkg/ast/kind_generated.go similarity index 100% rename from tsc/internal/ast/kind_generated.go rename to tsc/pkg/ast/kind_generated.go diff --git a/tsc/internal/ast/kind_stringer_generated.go b/tsc/pkg/ast/kind_stringer_generated.go similarity index 100% rename from tsc/internal/ast/kind_stringer_generated.go rename to tsc/pkg/ast/kind_stringer_generated.go diff --git a/tsc/internal/ast/modifierflags.go b/tsc/pkg/ast/modifierflags.go similarity index 100% rename from tsc/internal/ast/modifierflags.go rename to tsc/pkg/ast/modifierflags.go diff --git a/tsc/internal/ast/nodeflags.go b/tsc/pkg/ast/nodeflags.go similarity index 100% rename from tsc/internal/ast/nodeflags.go rename to tsc/pkg/ast/nodeflags.go diff --git a/tsc/internal/ast/parseoptions.go b/tsc/pkg/ast/parseoptions.go similarity index 97% rename from tsc/internal/ast/parseoptions.go rename to tsc/pkg/ast/parseoptions.go index 1647dc893a4e1..7581063c7b391 100644 --- a/tsc/internal/ast/parseoptions.go +++ b/tsc/pkg/ast/parseoptions.go @@ -1,8 +1,8 @@ package ast import ( - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type SourceFileParseOptions struct { diff --git a/tsc/internal/ast/positionmap.go b/tsc/pkg/ast/positionmap.go similarity index 98% rename from tsc/internal/ast/positionmap.go rename to tsc/pkg/ast/positionmap.go index 4c2fde6b6842e..6b110aa922e7d 100644 --- a/tsc/internal/ast/positionmap.go +++ b/tsc/pkg/ast/positionmap.go @@ -3,7 +3,7 @@ package ast import ( "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) // PositionMap provides bidirectional mapping between UTF-8 byte offsets (used by Go) diff --git a/tsc/internal/ast/positionmap_test.go b/tsc/pkg/ast/positionmap_test.go similarity index 98% rename from tsc/internal/ast/positionmap_test.go rename to tsc/pkg/ast/positionmap_test.go index c3c1b9e923696..7821b738ebf8c 100644 --- a/tsc/internal/ast/positionmap_test.go +++ b/tsc/pkg/ast/positionmap_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func TestPositionMapASCII(t *testing.T) { diff --git a/tsc/internal/ast/precedence.go b/tsc/pkg/ast/precedence.go similarity index 100% rename from tsc/internal/ast/precedence.go rename to tsc/pkg/ast/precedence.go diff --git a/tsc/internal/ast/subtreefacts.go b/tsc/pkg/ast/subtreefacts.go similarity index 99% rename from tsc/internal/ast/subtreefacts.go rename to tsc/pkg/ast/subtreefacts.go index 7c6a2a5cc113a..4eb0ce7fa44b3 100644 --- a/tsc/internal/ast/subtreefacts.go +++ b/tsc/pkg/ast/subtreefacts.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) type SubtreeFacts uint32 diff --git a/tsc/internal/ast/symbol.go b/tsc/pkg/ast/symbol.go similarity index 100% rename from tsc/internal/ast/symbol.go rename to tsc/pkg/ast/symbol.go diff --git a/tsc/internal/ast/symbolflags.go b/tsc/pkg/ast/symbolflags.go similarity index 100% rename from tsc/internal/ast/symbolflags.go rename to tsc/pkg/ast/symbolflags.go diff --git a/tsc/internal/ast/tokenflags.go b/tsc/pkg/ast/tokenflags.go similarity index 100% rename from tsc/internal/ast/tokenflags.go rename to tsc/pkg/ast/tokenflags.go diff --git a/tsc/internal/ast/utilities.go b/tsc/pkg/ast/utilities.go similarity index 99% rename from tsc/internal/ast/utilities.go rename to tsc/pkg/ast/utilities.go index e2d464fa9746c..81b446fc6644f 100644 --- a/tsc/internal/ast/utilities.go +++ b/tsc/pkg/ast/utilities.go @@ -7,9 +7,9 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Atomic ids diff --git a/tsc/internal/ast/utilities_bench_test.go b/tsc/pkg/ast/utilities_bench_test.go similarity index 74% rename from tsc/internal/ast/utilities_bench_test.go rename to tsc/pkg/ast/utilities_bench_test.go index d53151f81cecc..f88a433dae94b 100644 --- a/tsc/internal/ast/utilities_bench_test.go +++ b/tsc/pkg/ast/utilities_bench_test.go @@ -3,12 +3,12 @@ package ast_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fixtures" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/testutil/fixtures" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) func BenchmarkGetCombinedFlags(b *testing.B) { diff --git a/tsc/internal/ast/visitor.go b/tsc/pkg/ast/visitor.go similarity index 100% rename from tsc/internal/ast/visitor.go rename to tsc/pkg/ast/visitor.go diff --git a/tsc/internal/astnav/testmain_test.go b/tsc/pkg/astnav/testmain_test.go similarity index 54% rename from tsc/internal/astnav/testmain_test.go rename to tsc/pkg/astnav/testmain_test.go index 4cf62eddf2980..b0732b47025eb 100644 --- a/tsc/internal/astnav/testmain_test.go +++ b/tsc/pkg/astnav/testmain_test.go @@ -3,8 +3,8 @@ package astnav_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/astnav/tokens.go b/tsc/pkg/astnav/tokens.go similarity index 99% rename from tsc/internal/astnav/tokens.go rename to tsc/pkg/astnav/tokens.go index 9b6b3257df890..b87ee4431c8b1 100644 --- a/tsc/internal/astnav/tokens.go +++ b/tsc/pkg/astnav/tokens.go @@ -3,9 +3,9 @@ package astnav import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func shouldRescanLessThanLessThanToken(s *scanner.Scanner, containingNode *ast.Node, token ast.Kind) bool { diff --git a/tsc/internal/astnav/tokens_test.go b/tsc/pkg/astnav/tokens_test.go similarity index 97% rename from tsc/internal/astnav/tokens_test.go rename to tsc/pkg/astnav/tokens_test.go index 7968d2ccbc10a..fa6be290a4157 100644 --- a/tsc/internal/astnav/tokens_test.go +++ b/tsc/pkg/astnav/tokens_test.go @@ -9,13 +9,13 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/jstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/jstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/binder/binder.go b/tsc/pkg/binder/binder.go similarity index 99% rename from tsc/internal/binder/binder.go rename to tsc/pkg/binder/binder.go index e20bbaea3ce0b..93311f117170b 100644 --- a/tsc/internal/binder/binder.go +++ b/tsc/pkg/binder/binder.go @@ -5,13 +5,13 @@ import ( "strconv" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ContainerFlags int32 diff --git a/tsc/internal/binder/binder_test.go b/tsc/pkg/binder/binder_test.go similarity index 74% rename from tsc/internal/binder/binder_test.go rename to tsc/pkg/binder/binder_test.go index c301e4829eba3..74b336b24fc17 100644 --- a/tsc/internal/binder/binder_test.go +++ b/tsc/pkg/binder/binder_test.go @@ -4,12 +4,12 @@ import ( "runtime" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fixtures" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/testutil/fixtures" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) func BenchmarkBind(b *testing.B) { diff --git a/tsc/internal/binder/nameresolver.go b/tsc/pkg/binder/nameresolver.go similarity index 99% rename from tsc/internal/binder/nameresolver.go rename to tsc/pkg/binder/nameresolver.go index 5c1928ec4b6fd..96da03a676ecf 100644 --- a/tsc/internal/binder/nameresolver.go +++ b/tsc/pkg/binder/nameresolver.go @@ -1,9 +1,9 @@ package binder import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) type NameResolver struct { diff --git a/tsc/internal/binder/referenceresolver.go b/tsc/pkg/binder/referenceresolver.go similarity index 98% rename from tsc/internal/binder/referenceresolver.go rename to tsc/pkg/binder/referenceresolver.go index fbc6e5a24d7ff..7514d56c90137 100644 --- a/tsc/internal/binder/referenceresolver.go +++ b/tsc/pkg/binder/referenceresolver.go @@ -1,9 +1,9 @@ package binder import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) type ReferenceResolver interface { diff --git a/tsc/internal/bundled/CopyrightNotice.txt b/tsc/pkg/bundled/CopyrightNotice.txt similarity index 100% rename from tsc/internal/bundled/CopyrightNotice.txt rename to tsc/pkg/bundled/CopyrightNotice.txt diff --git a/tsc/internal/bundled/README.md b/tsc/pkg/bundled/README.md similarity index 100% rename from tsc/internal/bundled/README.md rename to tsc/pkg/bundled/README.md diff --git a/tsc/internal/bundled/bundled.go b/tsc/pkg/bundled/bundled.go similarity index 93% rename from tsc/internal/bundled/bundled.go rename to tsc/pkg/bundled/bundled.go index f2121a0f7e1e9..9cf6b55de9710 100644 --- a/tsc/internal/bundled/bundled.go +++ b/tsc/pkg/bundled/bundled.go @@ -7,8 +7,8 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) //go:generate go run generate.go diff --git a/tsc/internal/bundled/bundled_test.go b/tsc/pkg/bundled/bundled_test.go similarity index 76% rename from tsc/internal/bundled/bundled_test.go rename to tsc/pkg/bundled/bundled_test.go index 68c8c40eed76c..3499ec6205aa5 100644 --- a/tsc/internal/bundled/bundled_test.go +++ b/tsc/pkg/bundled/bundled_test.go @@ -5,10 +5,10 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/bundled/embed.go b/tsc/pkg/bundled/embed.go similarity index 98% rename from tsc/internal/bundled/embed.go rename to tsc/pkg/bundled/embed.go index c13ec10b98998..89f13c06026e2 100644 --- a/tsc/internal/bundled/embed.go +++ b/tsc/pkg/bundled/embed.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) const embedded = true diff --git a/tsc/internal/bundled/embed_generated.go b/tsc/pkg/bundled/embed_generated.go similarity index 100% rename from tsc/internal/bundled/embed_generated.go rename to tsc/pkg/bundled/embed_generated.go diff --git a/tsc/internal/bundled/generate.go b/tsc/pkg/bundled/generate.go similarity index 100% rename from tsc/internal/bundled/generate.go rename to tsc/pkg/bundled/generate.go diff --git a/tsc/internal/bundled/libs/lib.d.ts b/tsc/pkg/bundled/libs/lib.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.d.ts rename to tsc/pkg/bundled/libs/lib.d.ts diff --git a/tsc/internal/bundled/libs/lib.decorators.d.ts b/tsc/pkg/bundled/libs/lib.decorators.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.decorators.d.ts rename to tsc/pkg/bundled/libs/lib.decorators.d.ts diff --git a/tsc/internal/bundled/libs/lib.decorators.legacy.d.ts b/tsc/pkg/bundled/libs/lib.decorators.legacy.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.decorators.legacy.d.ts rename to tsc/pkg/bundled/libs/lib.decorators.legacy.d.ts diff --git a/tsc/internal/bundled/libs/lib.dom.asynciterable.d.ts b/tsc/pkg/bundled/libs/lib.dom.asynciterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.dom.asynciterable.d.ts rename to tsc/pkg/bundled/libs/lib.dom.asynciterable.d.ts diff --git a/tsc/internal/bundled/libs/lib.dom.d.ts b/tsc/pkg/bundled/libs/lib.dom.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.dom.d.ts rename to tsc/pkg/bundled/libs/lib.dom.d.ts diff --git a/tsc/internal/bundled/libs/lib.dom.iterable.d.ts b/tsc/pkg/bundled/libs/lib.dom.iterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.dom.iterable.d.ts rename to tsc/pkg/bundled/libs/lib.dom.iterable.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.collection.d.ts b/tsc/pkg/bundled/libs/lib.es2015.collection.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.collection.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.collection.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.core.d.ts b/tsc/pkg/bundled/libs/lib.es2015.core.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.core.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.core.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.d.ts b/tsc/pkg/bundled/libs/lib.es2015.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.generator.d.ts b/tsc/pkg/bundled/libs/lib.es2015.generator.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.generator.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.generator.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.iterable.d.ts b/tsc/pkg/bundled/libs/lib.es2015.iterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.iterable.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.iterable.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2015.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.proxy.d.ts b/tsc/pkg/bundled/libs/lib.es2015.proxy.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.proxy.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.proxy.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.reflect.d.ts b/tsc/pkg/bundled/libs/lib.es2015.reflect.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.reflect.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.reflect.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.symbol.d.ts b/tsc/pkg/bundled/libs/lib.es2015.symbol.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.symbol.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.symbol.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2015.symbol.wellknown.d.ts b/tsc/pkg/bundled/libs/lib.es2015.symbol.wellknown.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2015.symbol.wellknown.d.ts rename to tsc/pkg/bundled/libs/lib.es2015.symbol.wellknown.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2016.array.include.d.ts b/tsc/pkg/bundled/libs/lib.es2016.array.include.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2016.array.include.d.ts rename to tsc/pkg/bundled/libs/lib.es2016.array.include.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2016.d.ts b/tsc/pkg/bundled/libs/lib.es2016.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2016.d.ts rename to tsc/pkg/bundled/libs/lib.es2016.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2016.full.d.ts b/tsc/pkg/bundled/libs/lib.es2016.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2016.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2016.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2016.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2016.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2016.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2016.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.arraybuffer.d.ts b/tsc/pkg/bundled/libs/lib.es2017.arraybuffer.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.arraybuffer.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.arraybuffer.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.d.ts b/tsc/pkg/bundled/libs/lib.es2017.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.date.d.ts b/tsc/pkg/bundled/libs/lib.es2017.date.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.date.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.date.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.full.d.ts b/tsc/pkg/bundled/libs/lib.es2017.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2017.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.object.d.ts b/tsc/pkg/bundled/libs/lib.es2017.object.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.object.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.object.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.sharedmemory.d.ts b/tsc/pkg/bundled/libs/lib.es2017.sharedmemory.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.sharedmemory.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.sharedmemory.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.string.d.ts b/tsc/pkg/bundled/libs/lib.es2017.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2017.typedarrays.d.ts b/tsc/pkg/bundled/libs/lib.es2017.typedarrays.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2017.typedarrays.d.ts rename to tsc/pkg/bundled/libs/lib.es2017.typedarrays.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.asyncgenerator.d.ts b/tsc/pkg/bundled/libs/lib.es2018.asyncgenerator.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.asyncgenerator.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.asyncgenerator.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.asynciterable.d.ts b/tsc/pkg/bundled/libs/lib.es2018.asynciterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.asynciterable.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.asynciterable.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.d.ts b/tsc/pkg/bundled/libs/lib.es2018.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.full.d.ts b/tsc/pkg/bundled/libs/lib.es2018.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2018.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2018.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2018.regexp.d.ts b/tsc/pkg/bundled/libs/lib.es2018.regexp.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2018.regexp.d.ts rename to tsc/pkg/bundled/libs/lib.es2018.regexp.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.array.d.ts b/tsc/pkg/bundled/libs/lib.es2019.array.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.array.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.array.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.d.ts b/tsc/pkg/bundled/libs/lib.es2019.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.full.d.ts b/tsc/pkg/bundled/libs/lib.es2019.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2019.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.object.d.ts b/tsc/pkg/bundled/libs/lib.es2019.object.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.object.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.object.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.string.d.ts b/tsc/pkg/bundled/libs/lib.es2019.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2019.symbol.d.ts b/tsc/pkg/bundled/libs/lib.es2019.symbol.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2019.symbol.d.ts rename to tsc/pkg/bundled/libs/lib.es2019.symbol.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.bigint.d.ts b/tsc/pkg/bundled/libs/lib.es2020.bigint.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.bigint.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.bigint.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.d.ts b/tsc/pkg/bundled/libs/lib.es2020.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.date.d.ts b/tsc/pkg/bundled/libs/lib.es2020.date.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.date.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.date.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.full.d.ts b/tsc/pkg/bundled/libs/lib.es2020.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2020.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.number.d.ts b/tsc/pkg/bundled/libs/lib.es2020.number.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.number.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.number.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2020.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.sharedmemory.d.ts b/tsc/pkg/bundled/libs/lib.es2020.sharedmemory.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.sharedmemory.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.sharedmemory.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.string.d.ts b/tsc/pkg/bundled/libs/lib.es2020.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2020.symbol.wellknown.d.ts b/tsc/pkg/bundled/libs/lib.es2020.symbol.wellknown.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2020.symbol.wellknown.d.ts rename to tsc/pkg/bundled/libs/lib.es2020.symbol.wellknown.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.d.ts b/tsc/pkg/bundled/libs/lib.es2021.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.full.d.ts b/tsc/pkg/bundled/libs/lib.es2021.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2021.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2021.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.string.d.ts b/tsc/pkg/bundled/libs/lib.es2021.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2021.weakref.d.ts b/tsc/pkg/bundled/libs/lib.es2021.weakref.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2021.weakref.d.ts rename to tsc/pkg/bundled/libs/lib.es2021.weakref.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.array.d.ts b/tsc/pkg/bundled/libs/lib.es2022.array.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.array.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.array.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.d.ts b/tsc/pkg/bundled/libs/lib.es2022.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.error.d.ts b/tsc/pkg/bundled/libs/lib.es2022.error.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.error.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.error.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.full.d.ts b/tsc/pkg/bundled/libs/lib.es2022.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2022.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.object.d.ts b/tsc/pkg/bundled/libs/lib.es2022.object.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.object.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.object.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.regexp.d.ts b/tsc/pkg/bundled/libs/lib.es2022.regexp.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.regexp.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.regexp.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2022.string.d.ts b/tsc/pkg/bundled/libs/lib.es2022.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2022.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2022.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2023.array.d.ts b/tsc/pkg/bundled/libs/lib.es2023.array.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2023.array.d.ts rename to tsc/pkg/bundled/libs/lib.es2023.array.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2023.collection.d.ts b/tsc/pkg/bundled/libs/lib.es2023.collection.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2023.collection.d.ts rename to tsc/pkg/bundled/libs/lib.es2023.collection.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2023.d.ts b/tsc/pkg/bundled/libs/lib.es2023.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2023.d.ts rename to tsc/pkg/bundled/libs/lib.es2023.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2023.full.d.ts b/tsc/pkg/bundled/libs/lib.es2023.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2023.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2023.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2023.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2023.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2023.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2023.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.arraybuffer.d.ts b/tsc/pkg/bundled/libs/lib.es2024.arraybuffer.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.arraybuffer.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.arraybuffer.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.collection.d.ts b/tsc/pkg/bundled/libs/lib.es2024.collection.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.collection.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.collection.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.d.ts b/tsc/pkg/bundled/libs/lib.es2024.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.full.d.ts b/tsc/pkg/bundled/libs/lib.es2024.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.object.d.ts b/tsc/pkg/bundled/libs/lib.es2024.object.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.object.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.object.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2024.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.regexp.d.ts b/tsc/pkg/bundled/libs/lib.es2024.regexp.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.regexp.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.regexp.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.sharedmemory.d.ts b/tsc/pkg/bundled/libs/lib.es2024.sharedmemory.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.sharedmemory.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.sharedmemory.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2024.string.d.ts b/tsc/pkg/bundled/libs/lib.es2024.string.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2024.string.d.ts rename to tsc/pkg/bundled/libs/lib.es2024.string.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.collection.d.ts b/tsc/pkg/bundled/libs/lib.es2025.collection.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.collection.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.collection.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.d.ts b/tsc/pkg/bundled/libs/lib.es2025.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.float16.d.ts b/tsc/pkg/bundled/libs/lib.es2025.float16.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.float16.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.float16.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.full.d.ts b/tsc/pkg/bundled/libs/lib.es2025.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.full.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.intl.d.ts b/tsc/pkg/bundled/libs/lib.es2025.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.intl.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.iterator.d.ts b/tsc/pkg/bundled/libs/lib.es2025.iterator.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.iterator.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.iterator.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.promise.d.ts b/tsc/pkg/bundled/libs/lib.es2025.promise.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.promise.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.promise.d.ts diff --git a/tsc/internal/bundled/libs/lib.es2025.regexp.d.ts b/tsc/pkg/bundled/libs/lib.es2025.regexp.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es2025.regexp.d.ts rename to tsc/pkg/bundled/libs/lib.es2025.regexp.d.ts diff --git a/tsc/internal/bundled/libs/lib.es5.d.ts b/tsc/pkg/bundled/libs/lib.es5.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es5.d.ts rename to tsc/pkg/bundled/libs/lib.es5.d.ts diff --git a/tsc/internal/bundled/libs/lib.es6.d.ts b/tsc/pkg/bundled/libs/lib.es6.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.es6.d.ts rename to tsc/pkg/bundled/libs/lib.es6.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.array.d.ts b/tsc/pkg/bundled/libs/lib.esnext.array.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.array.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.array.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.collection.d.ts b/tsc/pkg/bundled/libs/lib.esnext.collection.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.collection.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.collection.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.d.ts b/tsc/pkg/bundled/libs/lib.esnext.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.date.d.ts b/tsc/pkg/bundled/libs/lib.esnext.date.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.date.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.date.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.decorators.d.ts b/tsc/pkg/bundled/libs/lib.esnext.decorators.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.decorators.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.decorators.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.disposable.d.ts b/tsc/pkg/bundled/libs/lib.esnext.disposable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.disposable.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.disposable.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.error.d.ts b/tsc/pkg/bundled/libs/lib.esnext.error.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.error.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.error.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.full.d.ts b/tsc/pkg/bundled/libs/lib.esnext.full.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.full.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.full.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.intl.d.ts b/tsc/pkg/bundled/libs/lib.esnext.intl.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.intl.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.intl.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.sharedmemory.d.ts b/tsc/pkg/bundled/libs/lib.esnext.sharedmemory.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.sharedmemory.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.sharedmemory.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.temporal.d.ts b/tsc/pkg/bundled/libs/lib.esnext.temporal.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.temporal.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.temporal.d.ts diff --git a/tsc/internal/bundled/libs/lib.esnext.typedarrays.d.ts b/tsc/pkg/bundled/libs/lib.esnext.typedarrays.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.esnext.typedarrays.d.ts rename to tsc/pkg/bundled/libs/lib.esnext.typedarrays.d.ts diff --git a/tsc/internal/bundled/libs/lib.scripthost.d.ts b/tsc/pkg/bundled/libs/lib.scripthost.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.scripthost.d.ts rename to tsc/pkg/bundled/libs/lib.scripthost.d.ts diff --git a/tsc/internal/bundled/libs/lib.webworker.asynciterable.d.ts b/tsc/pkg/bundled/libs/lib.webworker.asynciterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.webworker.asynciterable.d.ts rename to tsc/pkg/bundled/libs/lib.webworker.asynciterable.d.ts diff --git a/tsc/internal/bundled/libs/lib.webworker.d.ts b/tsc/pkg/bundled/libs/lib.webworker.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.webworker.d.ts rename to tsc/pkg/bundled/libs/lib.webworker.d.ts diff --git a/tsc/internal/bundled/libs/lib.webworker.importscripts.d.ts b/tsc/pkg/bundled/libs/lib.webworker.importscripts.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.webworker.importscripts.d.ts rename to tsc/pkg/bundled/libs/lib.webworker.importscripts.d.ts diff --git a/tsc/internal/bundled/libs/lib.webworker.iterable.d.ts b/tsc/pkg/bundled/libs/lib.webworker.iterable.d.ts similarity index 100% rename from tsc/internal/bundled/libs/lib.webworker.iterable.d.ts rename to tsc/pkg/bundled/libs/lib.webworker.iterable.d.ts diff --git a/tsc/internal/bundled/libs_generated.go b/tsc/pkg/bundled/libs_generated.go similarity index 100% rename from tsc/internal/bundled/libs_generated.go rename to tsc/pkg/bundled/libs_generated.go diff --git a/tsc/internal/bundled/noembed.go b/tsc/pkg/bundled/noembed.go similarity index 78% rename from tsc/internal/bundled/noembed.go rename to tsc/pkg/bundled/noembed.go index 0842b8a70fc46..de6dad04a9c18 100644 --- a/tsc/internal/bundled/noembed.go +++ b/tsc/pkg/bundled/noembed.go @@ -7,10 +7,10 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/osutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/osutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) const embedded = false diff --git a/tsc/internal/checker/checker.go b/tsc/pkg/checker/checker.go similarity index 99% rename from tsc/internal/checker/checker.go rename to tsc/pkg/checker/checker.go index d19cf6b214b79..1c1898509c3b7 100644 --- a/tsc/internal/checker/checker.go +++ b/tsc/pkg/checker/checker.go @@ -13,21 +13,21 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/evaluator" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) @@ -1316,7 +1316,7 @@ func (c *Checker) initializeChecker() { } for _, symbol := range file.Locals { // We defer merging of global ambient module declarations since they may require other global symbols - // and types to be resolved. See https://github.com/microsoft/TypeScript/tsc/issues/2953. + // and types to be resolved. See https://github.com/frida/TypeScript/tsc/issues/2953. if symbol.Flags&ast.SymbolFlagsModule != 0 && ast.IsAmbientModuleSymbolName(symbol.Name) { ambientModuleSymbols = append(ambientModuleSymbols, symbol) } else { @@ -18558,7 +18558,7 @@ func (c *Checker) isGlobalSymbolConstructor(node *ast.Node) bool { func (c *Checker) widenTypeForVariableLikeDeclaration(t *Type, declaration *ast.Node, reportErrors bool) *Type { if t != nil { // This special case is required for backwards compatibility with libraries that merge a `symbol` property into `SymbolConstructor`. - // See https://github.com/microsoft/TypeScript/tsc/issues/1212 + // See https://github.com/frida/TypeScript/tsc/issues/1212 if t.flags&TypeFlagsESSymbol != 0 && c.isGlobalSymbolConstructor(declaration.Parent) { t = c.getESSymbolLikeTypeForNode(declaration) } @@ -22393,7 +22393,7 @@ func (c *Checker) getNamedMembers(members ast.SymbolTable, container *ast.Symbol } // For classes and interfaces, we store explicitly declared members ahead of inherited members. This ensures we process // explicitly declared members first in type relations, which is beneficial because explicitly declared members are more - // likely to contain discriminating differences. See for example https://github.com/microsoft/TypeScript/tsc/issues/1968. + // likely to contain discriminating differences. See for example https://github.com/frida/TypeScript/tsc/issues/1968. result := make([]*ast.Symbol, 0, len(members)) var containedCount int if container != nil && container.Flags&(ast.SymbolFlagsClass|ast.SymbolFlagsInterface) != 0 { diff --git a/tsc/internal/checker/checker_test.go b/tsc/pkg/checker/checker_test.go similarity index 78% rename from tsc/internal/checker/checker_test.go rename to tsc/pkg/checker/checker_test.go index 19453841bfd69..eeef3d2fd950b 100644 --- a/tsc/internal/checker/checker_test.go +++ b/tsc/pkg/checker/checker_test.go @@ -4,16 +4,16 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/checker/emitresolver.go b/tsc/pkg/checker/emitresolver.go similarity index 99% rename from tsc/internal/checker/emitresolver.go rename to tsc/pkg/checker/emitresolver.go index 9bc590fd179bf..3ea2b79f619fe 100644 --- a/tsc/internal/checker/emitresolver.go +++ b/tsc/pkg/checker/emitresolver.go @@ -5,13 +5,13 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/evaluator" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" ) var _ printer.EmitResolver = (*EmitResolver)(nil) diff --git a/tsc/internal/checker/exports.go b/tsc/pkg/checker/exports.go similarity index 99% rename from tsc/internal/checker/exports.go rename to tsc/pkg/checker/exports.go index f75b8c6cd714e..2ad003e130df5 100644 --- a/tsc/internal/checker/exports.go +++ b/tsc/pkg/checker/exports.go @@ -1,8 +1,8 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) func (c *Checker) GetStringType() *Type { diff --git a/tsc/internal/checker/flow.go b/tsc/pkg/checker/flow.go similarity index 99% rename from tsc/internal/checker/flow.go rename to tsc/pkg/checker/flow.go index d08254cc8ef88..cd055b952909f 100644 --- a/tsc/internal/checker/flow.go +++ b/tsc/pkg/checker/flow.go @@ -6,13 +6,13 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tracing" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/evaluator" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tracing" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/checker/grammarchecks.go b/tsc/pkg/checker/grammarchecks.go similarity index 99% rename from tsc/internal/checker/grammarchecks.go rename to tsc/pkg/checker/grammarchecks.go index cc274d8b2fd4d..f888abdc3c907 100644 --- a/tsc/internal/checker/grammarchecks.go +++ b/tsc/pkg/checker/grammarchecks.go @@ -4,16 +4,16 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func (c *Checker) grammarErrorOnFirstToken(node *ast.Node, message *diagnostics.Message, args ...any) bool { diff --git a/tsc/internal/checker/inference.go b/tsc/pkg/checker/inference.go similarity index 99% rename from tsc/internal/checker/inference.go rename to tsc/pkg/checker/inference.go index 4bb9d2923d9ab..9647be6a14f0f 100644 --- a/tsc/internal/checker/inference.go +++ b/tsc/pkg/checker/inference.go @@ -3,9 +3,9 @@ package checker import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/jsnum" ) type InferenceKey struct { diff --git a/tsc/internal/checker/jsdoc.go b/tsc/pkg/checker/jsdoc.go similarity index 94% rename from tsc/internal/checker/jsdoc.go rename to tsc/pkg/checker/jsdoc.go index c8b5fb1adba44..068d0bbf800c1 100644 --- a/tsc/internal/checker/jsdoc.go +++ b/tsc/pkg/checker/jsdoc.go @@ -1,9 +1,9 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) func (c *Checker) checkUnmatchedJSDocParameters(node *ast.Node) { diff --git a/tsc/internal/checker/jsx.go b/tsc/pkg/checker/jsx.go similarity index 99% rename from tsc/internal/checker/jsx.go rename to tsc/pkg/checker/jsx.go index 7b2d448ed8814..67cfe613f6e5d 100644 --- a/tsc/internal/checker/jsx.go +++ b/tsc/pkg/checker/jsx.go @@ -5,13 +5,13 @@ import ( "math" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) type JsxFlags uint32 diff --git a/tsc/internal/checker/links.go b/tsc/pkg/checker/links.go similarity index 92% rename from tsc/internal/checker/links.go rename to tsc/pkg/checker/links.go index 03034151ab93a..d53abe57b2dd6 100644 --- a/tsc/internal/checker/links.go +++ b/tsc/pkg/checker/links.go @@ -1,8 +1,8 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" ) // nodeLinkStore is a links store keyed by node references. Values are stored directly diff --git a/tsc/internal/checker/mapper.go b/tsc/pkg/checker/mapper.go similarity index 99% rename from tsc/internal/checker/mapper.go rename to tsc/pkg/checker/mapper.go index 6393911137576..28a9d9cc4e5eb 100644 --- a/tsc/internal/checker/mapper.go +++ b/tsc/pkg/checker/mapper.go @@ -3,7 +3,7 @@ package checker import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) // TypeMapperKind diff --git a/tsc/internal/checker/nodebuilder.go b/tsc/pkg/checker/nodebuilder.go similarity index 98% rename from tsc/internal/checker/nodebuilder.go rename to tsc/pkg/checker/nodebuilder.go index e6ccb962191f7..c65148d47e9fd 100644 --- a/tsc/internal/checker/nodebuilder.go +++ b/tsc/pkg/checker/nodebuilder.go @@ -1,10 +1,10 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" ) type NodeBuilder struct { diff --git a/tsc/internal/checker/nodebuilder_hover.go b/tsc/pkg/checker/nodebuilder_hover.go similarity index 98% rename from tsc/internal/checker/nodebuilder_hover.go rename to tsc/pkg/checker/nodebuilder_hover.go index d07e229b20451..1facc599138f0 100644 --- a/tsc/internal/checker/nodebuilder_hover.go +++ b/tsc/pkg/checker/nodebuilder_hover.go @@ -3,13 +3,13 @@ package checker import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) // isExpanding returns whether the node builder context is operating in hover-expansion mode. diff --git a/tsc/internal/checker/nodebuilderimpl.go b/tsc/pkg/checker/nodebuilderimpl.go similarity index 99% rename from tsc/internal/checker/nodebuilderimpl.go rename to tsc/pkg/checker/nodebuilderimpl.go index 0f0a010195363..cee4df417638f 100644 --- a/tsc/internal/checker/nodebuilderimpl.go +++ b/tsc/pkg/checker/nodebuilderimpl.go @@ -6,19 +6,19 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/pseudochecker" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/pseudochecker" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type CompositeSymbolIdentity struct { diff --git a/tsc/internal/checker/nodebuilderscopes.go b/tsc/pkg/checker/nodebuilderscopes.go similarity index 97% rename from tsc/internal/checker/nodebuilderscopes.go rename to tsc/pkg/checker/nodebuilderscopes.go index 59b5fcd479b55..4e80d034813be 100644 --- a/tsc/internal/checker/nodebuilderscopes.go +++ b/tsc/pkg/checker/nodebuilderscopes.go @@ -1,10 +1,10 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" ) func cloneNodeBuilderContext(context *NodeBuilderContext) func() { diff --git a/tsc/internal/checker/nodecopy.go b/tsc/pkg/checker/nodecopy.go similarity index 99% rename from tsc/internal/checker/nodecopy.go rename to tsc/pkg/checker/nodecopy.go index efef4c7f5d505..62aa850e88124 100644 --- a/tsc/internal/checker/nodecopy.go +++ b/tsc/pkg/checker/nodecopy.go @@ -3,10 +3,10 @@ package checker import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" ) func (b *NodeBuilderImpl) reuseNode(node *ast.Node) *ast.Node { diff --git a/tsc/internal/checker/printer.go b/tsc/pkg/checker/printer.go similarity index 98% rename from tsc/internal/checker/printer.go rename to tsc/pkg/checker/printer.go index 234e3e4b0818d..b7a560d172f92 100644 --- a/tsc/internal/checker/printer.go +++ b/tsc/pkg/checker/printer.go @@ -3,10 +3,10 @@ package checker import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" ) // TODO: Memoize once per checker to retain threadsafety diff --git a/tsc/internal/checker/pseudotypenodebuilder.go b/tsc/pkg/checker/pseudotypenodebuilder.go similarity index 99% rename from tsc/internal/checker/pseudotypenodebuilder.go rename to tsc/pkg/checker/pseudotypenodebuilder.go index 9daf4b686fc43..27f7786263e58 100644 --- a/tsc/internal/checker/pseudotypenodebuilder.go +++ b/tsc/pkg/checker/pseudotypenodebuilder.go @@ -1,11 +1,11 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/pseudochecker" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/pseudochecker" ) // pseudoTypeToNodeWithCheckerFallback is like pseudoTypeToNode but when the top-level pseudo type diff --git a/tsc/internal/checker/relater.go b/tsc/pkg/checker/relater.go similarity index 99% rename from tsc/internal/checker/relater.go rename to tsc/pkg/checker/relater.go index 9008420fb7cd1..9ff1d9bc07a90 100644 --- a/tsc/internal/checker/relater.go +++ b/tsc/pkg/checker/relater.go @@ -5,14 +5,14 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tracing" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tracing" ) type SignatureCheckMode uint32 diff --git a/tsc/internal/checker/services.go b/tsc/pkg/checker/services.go similarity index 99% rename from tsc/internal/checker/services.go rename to tsc/pkg/checker/services.go index 231692d89d95b..70fcff66b6a37 100644 --- a/tsc/internal/checker/services.go +++ b/tsc/pkg/checker/services.go @@ -5,13 +5,13 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func (c *Checker) GetSymbolsInScope(location *ast.Node, meaning ast.SymbolFlags) []*ast.Symbol { diff --git a/tsc/internal/checker/stringer_generated.go b/tsc/pkg/checker/stringer_generated.go similarity index 100% rename from tsc/internal/checker/stringer_generated.go rename to tsc/pkg/checker/stringer_generated.go diff --git a/tsc/internal/checker/symbolaccessibility.go b/tsc/pkg/checker/symbolaccessibility.go similarity index 99% rename from tsc/internal/checker/symbolaccessibility.go rename to tsc/pkg/checker/symbolaccessibility.go index d19806d50599d..f6bb69e398ed1 100644 --- a/tsc/internal/checker/symbolaccessibility.go +++ b/tsc/pkg/checker/symbolaccessibility.go @@ -3,9 +3,9 @@ package checker import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" ) func (c *Checker) IsTypeSymbolAccessible(typeSymbol *ast.Symbol, enclosingDeclaration *ast.Node) bool { diff --git a/tsc/internal/checker/symboltracker.go b/tsc/pkg/checker/symboltracker.go similarity index 96% rename from tsc/internal/checker/symboltracker.go rename to tsc/pkg/checker/symboltracker.go index 1a1b7ad28bec8..9eaa413e15854 100644 --- a/tsc/internal/checker/symboltracker.go +++ b/tsc/pkg/checker/symboltracker.go @@ -1,8 +1,8 @@ package checker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" ) type SymbolTrackerImpl struct { diff --git a/tsc/internal/checker/tracer.go b/tsc/pkg/checker/tracer.go similarity index 98% rename from tsc/internal/checker/tracer.go rename to tsc/pkg/checker/tracer.go index 0fd4db6937244..ce24e1e9df19d 100644 --- a/tsc/internal/checker/tracer.go +++ b/tsc/pkg/checker/tracer.go @@ -3,8 +3,8 @@ package checker import ( "maps" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/tracing" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/tracing" ) // Tracer records types and trace events during type checking. A nil *Tracer diff --git a/tsc/internal/checker/tracer_test.go b/tsc/pkg/checker/tracer_test.go similarity index 91% rename from tsc/internal/checker/tracer_test.go rename to tsc/pkg/checker/tracer_test.go index 5959bfa34107d..d5932fed83b00 100644 --- a/tsc/internal/checker/tracer_test.go +++ b/tsc/pkg/checker/tracer_test.go @@ -5,9 +5,9 @@ import ( "testing" "testing/fstest" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/checker/types.go b/tsc/pkg/checker/types.go similarity index 99% rename from tsc/internal/checker/types.go rename to tsc/pkg/checker/types.go index 2e8bacbd5df29..abd62b7ed7774 100644 --- a/tsc/internal/checker/types.go +++ b/tsc/pkg/checker/types.go @@ -5,10 +5,10 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/evaluator" ) //go:generate go tool golang.org/x/tools/cmd/stringer -type=SignatureKind -output=stringer_generated.go diff --git a/tsc/internal/checker/utilities.go b/tsc/pkg/checker/utilities.go similarity index 99% rename from tsc/internal/checker/utilities.go rename to tsc/pkg/checker/utilities.go index 132b3b98692c1..16a80d2f5a7ef 100644 --- a/tsc/internal/checker/utilities.go +++ b/tsc/pkg/checker/utilities.go @@ -6,16 +6,16 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func NewDiagnosticForNode(node *ast.Node, message *diagnostics.Message, args ...any) *ast.Diagnostic { diff --git a/tsc/internal/collections/cow.go b/tsc/pkg/collections/cow.go similarity index 100% rename from tsc/internal/collections/cow.go rename to tsc/pkg/collections/cow.go diff --git a/tsc/internal/collections/multimap.go b/tsc/pkg/collections/multimap.go similarity index 100% rename from tsc/internal/collections/multimap.go rename to tsc/pkg/collections/multimap.go diff --git a/tsc/internal/collections/ordered_map.go b/tsc/pkg/collections/ordered_map.go similarity index 99% rename from tsc/internal/collections/ordered_map.go rename to tsc/pkg/collections/ordered_map.go index d4d84f3f8e955..f22b372102580 100644 --- a/tsc/internal/collections/ordered_map.go +++ b/tsc/pkg/collections/ordered_map.go @@ -9,7 +9,7 @@ import ( "slices" "strconv" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) // OrderedMap is an insertion ordered map. diff --git a/tsc/internal/collections/ordered_map_test.go b/tsc/pkg/collections/ordered_map_test.go similarity index 97% rename from tsc/internal/collections/ordered_map_test.go rename to tsc/pkg/collections/ordered_map_test.go index 86e548ec218d3..ca0d443f4b73c 100644 --- a/tsc/internal/collections/ordered_map_test.go +++ b/tsc/pkg/collections/ordered_map_test.go @@ -5,8 +5,8 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/json" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/collections/ordered_set.go b/tsc/pkg/collections/ordered_set.go similarity index 100% rename from tsc/internal/collections/ordered_set.go rename to tsc/pkg/collections/ordered_set.go diff --git a/tsc/internal/collections/ordered_set_test.go b/tsc/pkg/collections/ordered_set_test.go similarity index 93% rename from tsc/internal/collections/ordered_set_test.go rename to tsc/pkg/collections/ordered_set_test.go index a2f264e6d64d8..ab2e0a40fbc57 100644 --- a/tsc/internal/collections/ordered_set_test.go +++ b/tsc/pkg/collections/ordered_set_test.go @@ -4,7 +4,7 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/collections/set.go b/tsc/pkg/collections/set.go similarity index 100% rename from tsc/internal/collections/set.go rename to tsc/pkg/collections/set.go diff --git a/tsc/internal/collections/syncmap.go b/tsc/pkg/collections/syncmap.go similarity index 100% rename from tsc/internal/collections/syncmap.go rename to tsc/pkg/collections/syncmap.go diff --git a/tsc/internal/collections/syncmap_test.go b/tsc/pkg/collections/syncmap_test.go similarity index 89% rename from tsc/internal/collections/syncmap_test.go rename to tsc/pkg/collections/syncmap_test.go index e2f62256837d9..471f9a5a75a3d 100644 --- a/tsc/internal/collections/syncmap_test.go +++ b/tsc/pkg/collections/syncmap_test.go @@ -3,7 +3,7 @@ package collections_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/collections/syncset.go b/tsc/pkg/collections/syncset.go similarity index 100% rename from tsc/internal/collections/syncset.go rename to tsc/pkg/collections/syncset.go diff --git a/tsc/internal/compiler/checkerpool.go b/tsc/pkg/compiler/checkerpool.go similarity index 98% rename from tsc/internal/compiler/checkerpool.go rename to tsc/pkg/compiler/checkerpool.go index c7961118a4ce5..59c2826a5d67b 100644 --- a/tsc/internal/compiler/checkerpool.go +++ b/tsc/pkg/compiler/checkerpool.go @@ -7,10 +7,10 @@ import ( "sort" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tracing" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tracing" ) // CheckerPool is implemented by the project system to provide checkers with diff --git a/tsc/internal/compiler/checkerpool_test.go b/tsc/pkg/compiler/checkerpool_test.go similarity index 100% rename from tsc/internal/compiler/checkerpool_test.go rename to tsc/pkg/compiler/checkerpool_test.go diff --git a/tsc/internal/compiler/contentmapper_test.go b/tsc/pkg/compiler/contentmapper_test.go similarity index 93% rename from tsc/internal/compiler/contentmapper_test.go rename to tsc/pkg/compiler/contentmapper_test.go index 197914d47aaee..faa06e196e764 100644 --- a/tsc/internal/compiler/contentmapper_test.go +++ b/tsc/pkg/compiler/contentmapper_test.go @@ -6,16 +6,16 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/compiler/emitHost.go b/tsc/pkg/compiler/emitHost.go similarity index 89% rename from tsc/internal/compiler/emitHost.go rename to tsc/pkg/compiler/emitHost.go index e6d4e1ce153d0..31ca5e1d663a9 100644 --- a/tsc/internal/compiler/emitHost.go +++ b/tsc/pkg/compiler/emitHost.go @@ -3,16 +3,16 @@ package compiler import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/transformers/declarations" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/transformers/declarations" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // NOTE: EmitHost operations must be thread-safe diff --git a/tsc/internal/compiler/emit_test.go b/tsc/pkg/compiler/emit_test.go similarity index 94% rename from tsc/internal/compiler/emit_test.go rename to tsc/pkg/compiler/emit_test.go index 0e74a10cbf0c1..2226d4b0c4d9f 100644 --- a/tsc/internal/compiler/emit_test.go +++ b/tsc/pkg/compiler/emit_test.go @@ -6,11 +6,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) // generateLongLineTS generates TypeScript source code that produces a single very long line. diff --git a/tsc/internal/compiler/emitter.go b/tsc/pkg/compiler/emitter.go similarity index 94% rename from tsc/internal/compiler/emitter.go rename to tsc/pkg/compiler/emitter.go index 2500bafb93f3d..795fc7f453784 100644 --- a/tsc/internal/compiler/emitter.go +++ b/tsc/pkg/compiler/emitter.go @@ -1,24 +1,24 @@ package compiler import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/transformers/declarations" - "github.com/microsoft/TypeScript/tsc/internal/transformers/estransforms" - "github.com/microsoft/TypeScript/tsc/internal/transformers/inliners" - "github.com/microsoft/TypeScript/tsc/internal/transformers/jsxtransforms" - "github.com/microsoft/TypeScript/tsc/internal/transformers/moduletransforms" - "github.com/microsoft/TypeScript/tsc/internal/transformers/tstransforms" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/transformers/declarations" + "github.com/frida/TypeScript/tsc/pkg/transformers/estransforms" + "github.com/frida/TypeScript/tsc/pkg/transformers/inliners" + "github.com/frida/TypeScript/tsc/pkg/transformers/jsxtransforms" + "github.com/frida/TypeScript/tsc/pkg/transformers/moduletransforms" + "github.com/frida/TypeScript/tsc/pkg/transformers/tstransforms" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type EmitOnly byte diff --git a/tsc/internal/compiler/fileInclude.go b/tsc/pkg/compiler/fileInclude.go similarity index 97% rename from tsc/internal/compiler/fileInclude.go rename to tsc/pkg/compiler/fileInclude.go index 1b23b73359ed2..9232459342b31 100644 --- a/tsc/internal/compiler/fileInclude.go +++ b/tsc/pkg/compiler/fileInclude.go @@ -4,12 +4,12 @@ import ( "fmt" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type fileIncludeKind int diff --git a/tsc/internal/compiler/fileloader.go b/tsc/pkg/compiler/fileloader.go similarity index 98% rename from tsc/internal/compiler/fileloader.go rename to tsc/pkg/compiler/fileloader.go index 1885c55056045..31974fd384ab8 100644 --- a/tsc/internal/compiler/fileloader.go +++ b/tsc/pkg/compiler/fileloader.go @@ -9,17 +9,17 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/compiler/filesparser.go b/tsc/pkg/compiler/filesparser.go similarity index 98% rename from tsc/internal/compiler/filesparser.go rename to tsc/pkg/compiler/filesparser.go index 8ec9b43dc827a..d29b807ec9a4b 100644 --- a/tsc/internal/compiler/filesparser.go +++ b/tsc/pkg/compiler/filesparser.go @@ -6,14 +6,14 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type parseTask struct { diff --git a/tsc/internal/compiler/host.go b/tsc/pkg/compiler/host.go similarity index 88% rename from tsc/internal/compiler/host.go rename to tsc/pkg/compiler/host.go index 828ec31227809..79cfdfe5f7276 100644 --- a/tsc/internal/compiler/host.go +++ b/tsc/pkg/compiler/host.go @@ -1,15 +1,15 @@ package compiler import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" ) type CompilerHost interface { diff --git a/tsc/internal/compiler/includeprocessor.go b/tsc/pkg/compiler/includeprocessor.go similarity index 95% rename from tsc/internal/compiler/includeprocessor.go rename to tsc/pkg/compiler/includeprocessor.go index 30c958a1eaf77..b3efc5ec403b4 100644 --- a/tsc/internal/compiler/includeprocessor.go +++ b/tsc/pkg/compiler/includeprocessor.go @@ -4,12 +4,12 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type includeProcessor struct { diff --git a/tsc/internal/compiler/pkg.go b/tsc/pkg/compiler/pkg.go similarity index 100% rename from tsc/internal/compiler/pkg.go rename to tsc/pkg/compiler/pkg.go diff --git a/tsc/internal/compiler/processingDiagnostic.go b/tsc/pkg/compiler/processingDiagnostic.go similarity index 92% rename from tsc/internal/compiler/processingDiagnostic.go rename to tsc/pkg/compiler/processingDiagnostic.go index 0dbe2dab6ff03..ff3d0870a1961 100644 --- a/tsc/internal/compiler/processingDiagnostic.go +++ b/tsc/pkg/compiler/processingDiagnostic.go @@ -4,12 +4,12 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type processingDiagnosticKind int diff --git a/tsc/internal/compiler/program.go b/tsc/pkg/compiler/program.go similarity index 98% rename from tsc/internal/compiler/program.go rename to tsc/pkg/compiler/program.go index 34f713918a6ad..cdbe486429888 100644 --- a/tsc/internal/compiler/program.go +++ b/tsc/pkg/compiler/program.go @@ -10,28 +10,28 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ProgramOptions struct { diff --git a/tsc/internal/compiler/program_test.go b/tsc/pkg/compiler/program_test.go similarity index 96% rename from tsc/internal/compiler/program_test.go rename to tsc/pkg/compiler/program_test.go index 0b91d2ce073e0..177075637e85c 100644 --- a/tsc/internal/compiler/program_test.go +++ b/tsc/pkg/compiler/program_test.go @@ -7,14 +7,14 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/compiler/projectreferencedtsfakinghost.go b/tsc/pkg/compiler/projectreferencedtsfakinghost.go similarity index 94% rename from tsc/internal/compiler/projectreferencedtsfakinghost.go rename to tsc/pkg/compiler/projectreferencedtsfakinghost.go index 64a7671b1277e..c83500c79879e 100644 --- a/tsc/internal/compiler/projectreferencedtsfakinghost.go +++ b/tsc/pkg/compiler/projectreferencedtsfakinghost.go @@ -4,13 +4,13 @@ import ( "strings" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" ) type projectReferenceDtsFakingHost struct { diff --git a/tsc/internal/compiler/projectreferencefilemapper.go b/tsc/pkg/compiler/projectreferencefilemapper.go similarity index 95% rename from tsc/internal/compiler/projectreferencefilemapper.go rename to tsc/pkg/compiler/projectreferencefilemapper.go index 7f2ef37141c91..5a490c658b6a3 100644 --- a/tsc/internal/compiler/projectreferencefilemapper.go +++ b/tsc/pkg/compiler/projectreferencefilemapper.go @@ -3,12 +3,12 @@ package compiler import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type projectReferenceFileMapper struct { diff --git a/tsc/internal/compiler/projectreferenceparser.go b/tsc/pkg/compiler/projectreferenceparser.go similarity index 94% rename from tsc/internal/compiler/projectreferenceparser.go rename to tsc/pkg/compiler/projectreferenceparser.go index 9bf23abed9d7b..d057ab3c92764 100644 --- a/tsc/internal/compiler/projectreferenceparser.go +++ b/tsc/pkg/compiler/projectreferenceparser.go @@ -3,11 +3,11 @@ package compiler import ( "maps" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type projectReferenceParseTask struct { diff --git a/tsc/internal/contentmapper/contentmapper.go b/tsc/pkg/contentmapper/contentmapper.go similarity index 97% rename from tsc/internal/contentmapper/contentmapper.go rename to tsc/pkg/contentmapper/contentmapper.go index b44dedb42cb23..dedcad0341c4d 100644 --- a/tsc/internal/contentmapper/contentmapper.go +++ b/tsc/pkg/contentmapper/contentmapper.go @@ -17,9 +17,9 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/contentmapper/host.go b/tsc/pkg/contentmapper/host.go similarity index 98% rename from tsc/internal/contentmapper/host.go rename to tsc/pkg/contentmapper/host.go index 538e9caf8880c..150372c288bb6 100644 --- a/tsc/internal/contentmapper/host.go +++ b/tsc/pkg/contentmapper/host.go @@ -4,10 +4,10 @@ import ( "fmt" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // TransformErrorKind identifies the stage at which a content mapper transform failed. diff --git a/tsc/internal/contentmapper/host_test.go b/tsc/pkg/contentmapper/host_test.go similarity index 99% rename from tsc/internal/contentmapper/host_test.go rename to tsc/pkg/contentmapper/host_test.go index b5a8a807f2c6b..f3c17ae15cd64 100644 --- a/tsc/internal/contentmapper/host_test.go +++ b/tsc/pkg/contentmapper/host_test.go @@ -13,14 +13,14 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/contentmapper/hostimpl.go b/tsc/pkg/contentmapper/hostimpl.go similarity index 98% rename from tsc/internal/contentmapper/hostimpl.go rename to tsc/pkg/contentmapper/hostimpl.go index 890daf15f22b2..7581fc9bae8e8 100644 --- a/tsc/internal/contentmapper/hostimpl.go +++ b/tsc/pkg/contentmapper/hostimpl.go @@ -15,15 +15,15 @@ import ( "time" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/contentmapper/transform.go b/tsc/pkg/contentmapper/transform.go similarity index 96% rename from tsc/internal/contentmapper/transform.go rename to tsc/pkg/contentmapper/transform.go index 69541393b4505..a2bcb47578109 100644 --- a/tsc/internal/contentmapper/transform.go +++ b/tsc/pkg/contentmapper/transform.go @@ -4,10 +4,10 @@ import ( "slices" "strconv" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // SourceFiles is the canonical output and its unnamed supplemental compiler inputs. diff --git a/tsc/internal/contentmapper/transform_test.go b/tsc/pkg/contentmapper/transform_test.go similarity index 93% rename from tsc/internal/contentmapper/transform_test.go rename to tsc/pkg/contentmapper/transform_test.go index e902cfb112bc6..24c379668dda6 100644 --- a/tsc/internal/contentmapper/transform_test.go +++ b/tsc/pkg/contentmapper/transform_test.go @@ -3,11 +3,11 @@ package contentmapper_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/core/arena.go b/tsc/pkg/core/arena.go similarity index 100% rename from tsc/internal/core/arena.go rename to tsc/pkg/core/arena.go diff --git a/tsc/internal/core/bfs.go b/tsc/pkg/core/bfs.go similarity index 99% rename from tsc/internal/core/bfs.go rename to tsc/pkg/core/bfs.go index 0ffb2541f2978..1423b65b178a2 100644 --- a/tsc/internal/core/bfs.go +++ b/tsc/pkg/core/bfs.go @@ -5,7 +5,7 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) type BreadthFirstSearchResult[N any] struct { diff --git a/tsc/internal/core/bfs_test.go b/tsc/pkg/core/bfs_test.go similarity index 97% rename from tsc/internal/core/bfs_test.go rename to tsc/pkg/core/bfs_test.go index 2eafe9883ad78..ddca6e2c0c518 100644 --- a/tsc/internal/core/bfs_test.go +++ b/tsc/pkg/core/bfs_test.go @@ -5,8 +5,8 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/core/binarysearch.go b/tsc/pkg/core/binarysearch.go similarity index 100% rename from tsc/internal/core/binarysearch.go rename to tsc/pkg/core/binarysearch.go diff --git a/tsc/internal/core/buildoptions.go b/tsc/pkg/core/buildoptions.go similarity index 100% rename from tsc/internal/core/buildoptions.go rename to tsc/pkg/core/buildoptions.go diff --git a/tsc/internal/core/compileroptions.go b/tsc/pkg/core/compileroptions.go similarity index 99% rename from tsc/internal/core/compileroptions.go rename to tsc/pkg/core/compileroptions.go index 55401a499f3a8..1057f142e6e6d 100644 --- a/tsc/internal/core/compileroptions.go +++ b/tsc/pkg/core/compileroptions.go @@ -5,8 +5,8 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) //go:generate go tool golang.org/x/tools/cmd/stringer -type=ModuleKind -trimprefix=ModuleKind -output=modulekind_stringer_generated.go diff --git a/tsc/internal/core/context.go b/tsc/pkg/core/context.go similarity index 100% rename from tsc/internal/core/context.go rename to tsc/pkg/core/context.go diff --git a/tsc/internal/core/core.go b/tsc/pkg/core/core.go similarity index 98% rename from tsc/internal/core/core.go rename to tsc/pkg/core/core.go index cb5cd9b6d8327..bd9288e0ab6b9 100644 --- a/tsc/internal/core/core.go +++ b/tsc/pkg/core/core.go @@ -15,10 +15,10 @@ import ( "unicode/utf16" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func ApplyDebugStackLimit() { diff --git a/tsc/internal/core/languagevariant.go b/tsc/pkg/core/languagevariant.go similarity index 100% rename from tsc/internal/core/languagevariant.go rename to tsc/pkg/core/languagevariant.go diff --git a/tsc/internal/core/languagevariant_stringer_generated.go b/tsc/pkg/core/languagevariant_stringer_generated.go similarity index 100% rename from tsc/internal/core/languagevariant_stringer_generated.go rename to tsc/pkg/core/languagevariant_stringer_generated.go diff --git a/tsc/internal/core/linkstore.go b/tsc/pkg/core/linkstore.go similarity index 100% rename from tsc/internal/core/linkstore.go rename to tsc/pkg/core/linkstore.go diff --git a/tsc/internal/core/modulekind_stringer_generated.go b/tsc/pkg/core/modulekind_stringer_generated.go similarity index 100% rename from tsc/internal/core/modulekind_stringer_generated.go rename to tsc/pkg/core/modulekind_stringer_generated.go diff --git a/tsc/internal/core/nodemodules.go b/tsc/pkg/core/nodemodules.go similarity index 100% rename from tsc/internal/core/nodemodules.go rename to tsc/pkg/core/nodemodules.go diff --git a/tsc/internal/core/pattern.go b/tsc/pkg/core/pattern.go similarity index 100% rename from tsc/internal/core/pattern.go rename to tsc/pkg/core/pattern.go diff --git a/tsc/internal/core/pattern_test.go b/tsc/pkg/core/pattern_test.go similarity index 100% rename from tsc/internal/core/pattern_test.go rename to tsc/pkg/core/pattern_test.go diff --git a/tsc/internal/core/projectreference.go b/tsc/pkg/core/projectreference.go similarity index 91% rename from tsc/internal/core/projectreference.go rename to tsc/pkg/core/projectreference.go index 31e3bc2bfa3a2..7b237bbc05f04 100644 --- a/tsc/internal/core/projectreference.go +++ b/tsc/pkg/core/projectreference.go @@ -1,6 +1,6 @@ package core -import "github.com/microsoft/TypeScript/tsc/internal/tspath" +import "github.com/frida/TypeScript/tsc/pkg/tspath" type ProjectReference struct { // Path is a normalized path on disk. diff --git a/tsc/internal/core/scriptkind.go b/tsc/pkg/core/scriptkind.go similarity index 100% rename from tsc/internal/core/scriptkind.go rename to tsc/pkg/core/scriptkind.go diff --git a/tsc/internal/core/scriptkind_stringer_generated.go b/tsc/pkg/core/scriptkind_stringer_generated.go similarity index 100% rename from tsc/internal/core/scriptkind_stringer_generated.go rename to tsc/pkg/core/scriptkind_stringer_generated.go diff --git a/tsc/internal/core/scripttarget_stringer_generated.go b/tsc/pkg/core/scripttarget_stringer_generated.go similarity index 100% rename from tsc/internal/core/scripttarget_stringer_generated.go rename to tsc/pkg/core/scripttarget_stringer_generated.go diff --git a/tsc/internal/core/semaphore.go b/tsc/pkg/core/semaphore.go similarity index 100% rename from tsc/internal/core/semaphore.go rename to tsc/pkg/core/semaphore.go diff --git a/tsc/internal/core/stack.go b/tsc/pkg/core/stack.go similarity index 100% rename from tsc/internal/core/stack.go rename to tsc/pkg/core/stack.go diff --git a/tsc/internal/core/text.go b/tsc/pkg/core/text.go similarity index 100% rename from tsc/internal/core/text.go rename to tsc/pkg/core/text.go diff --git a/tsc/internal/core/textchange.go b/tsc/pkg/core/textchange.go similarity index 100% rename from tsc/internal/core/textchange.go rename to tsc/pkg/core/textchange.go diff --git a/tsc/internal/core/tristate.go b/tsc/pkg/core/tristate.go similarity index 100% rename from tsc/internal/core/tristate.go rename to tsc/pkg/core/tristate.go diff --git a/tsc/internal/core/tristate_stringer_generated.go b/tsc/pkg/core/tristate_stringer_generated.go similarity index 100% rename from tsc/internal/core/tristate_stringer_generated.go rename to tsc/pkg/core/tristate_stringer_generated.go diff --git a/tsc/internal/core/typeacquisition.go b/tsc/pkg/core/typeacquisition.go similarity index 100% rename from tsc/internal/core/typeacquisition.go rename to tsc/pkg/core/typeacquisition.go diff --git a/tsc/internal/core/version.go b/tsc/pkg/core/version.go similarity index 100% rename from tsc/internal/core/version.go rename to tsc/pkg/core/version.go diff --git a/tsc/internal/core/watchoptions.go b/tsc/pkg/core/watchoptions.go similarity index 100% rename from tsc/internal/core/watchoptions.go rename to tsc/pkg/core/watchoptions.go diff --git a/tsc/internal/core/workgroup.go b/tsc/pkg/core/workgroup.go similarity index 100% rename from tsc/internal/core/workgroup.go rename to tsc/pkg/core/workgroup.go diff --git a/tsc/internal/debug/debug.go b/tsc/pkg/debug/debug.go similarity index 100% rename from tsc/internal/debug/debug.go rename to tsc/pkg/debug/debug.go diff --git a/tsc/internal/debug/debug_test.go b/tsc/pkg/debug/debug_test.go similarity index 95% rename from tsc/internal/debug/debug_test.go rename to tsc/pkg/debug/debug_test.go index 261bbbd80b8eb..c74389c861fb0 100644 --- a/tsc/internal/debug/debug_test.go +++ b/tsc/pkg/debug/debug_test.go @@ -3,8 +3,8 @@ package debug_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFailEmptyReason(t *testing.T) { diff --git a/tsc/internal/diagnostics/diagnosticMessages.json b/tsc/pkg/diagnostics/diagnosticMessages.json similarity index 100% rename from tsc/internal/diagnostics/diagnosticMessages.json rename to tsc/pkg/diagnostics/diagnosticMessages.json diff --git a/tsc/internal/diagnostics/diagnostics.go b/tsc/pkg/diagnostics/diagnostics.go similarity index 97% rename from tsc/internal/diagnostics/diagnostics.go rename to tsc/pkg/diagnostics/diagnostics.go index 294554b2a2de7..700acd230fc45 100644 --- a/tsc/internal/diagnostics/diagnostics.go +++ b/tsc/pkg/diagnostics/diagnostics.go @@ -8,8 +8,8 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" "golang.org/x/text/language" ) diff --git a/tsc/internal/diagnostics/diagnostics_generated.go b/tsc/pkg/diagnostics/diagnostics_generated.go similarity index 100% rename from tsc/internal/diagnostics/diagnostics_generated.go rename to tsc/pkg/diagnostics/diagnostics_generated.go diff --git a/tsc/internal/diagnostics/diagnostics_test.go b/tsc/pkg/diagnostics/diagnostics_test.go similarity index 98% rename from tsc/internal/diagnostics/diagnostics_test.go rename to tsc/pkg/diagnostics/diagnostics_test.go index 38fc37437224f..87aaefea48ac1 100644 --- a/tsc/internal/diagnostics/diagnostics_test.go +++ b/tsc/pkg/diagnostics/diagnostics_test.go @@ -3,7 +3,7 @@ package diagnostics import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/locale" + "github.com/frida/TypeScript/tsc/pkg/locale" "golang.org/x/text/language" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/diagnostics/extraDiagnosticMessages.json b/tsc/pkg/diagnostics/extraDiagnosticMessages.json similarity index 100% rename from tsc/internal/diagnostics/extraDiagnosticMessages.json rename to tsc/pkg/diagnostics/extraDiagnosticMessages.json diff --git a/tsc/internal/diagnostics/generate.go b/tsc/pkg/diagnostics/generate.go similarity index 98% rename from tsc/internal/diagnostics/generate.go rename to tsc/pkg/diagnostics/generate.go index f86ad7af6e187..17a21ad484ccf 100644 --- a/tsc/internal/diagnostics/generate.go +++ b/tsc/pkg/diagnostics/generate.go @@ -23,8 +23,8 @@ import ( "unicode" "github.com/klauspost/compress/gzip" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/json" "golang.org/x/text/language" ) @@ -186,7 +186,7 @@ func generateLocalizations(knownKeys map[string]bool, locDir string) *bytes.Buff buf.WriteString("\t\"strings\"\n") buf.WriteString("\t\"sync\"\n") buf.WriteString("\t\"golang.org/x/text/language\"\n") - buf.WriteString("\t\"github.com/microsoft/TypeScript/tsc/internal/json\"\n") + buf.WriteString("\t\"github.com/frida/TypeScript/tsc/pkg/json\"\n") buf.WriteString(")\n") // Remove and recreate the loc directory for a clean state diff --git a/tsc/internal/diagnostics/generate_deps.go b/tsc/pkg/diagnostics/generate_deps.go similarity index 100% rename from tsc/internal/diagnostics/generate_deps.go rename to tsc/pkg/diagnostics/generate_deps.go diff --git a/tsc/internal/diagnostics/loc/cs-CZ.json.gz b/tsc/pkg/diagnostics/loc/cs-CZ.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/cs-CZ.json.gz rename to tsc/pkg/diagnostics/loc/cs-CZ.json.gz diff --git a/tsc/internal/diagnostics/loc/de-DE.json.gz b/tsc/pkg/diagnostics/loc/de-DE.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/de-DE.json.gz rename to tsc/pkg/diagnostics/loc/de-DE.json.gz diff --git a/tsc/internal/diagnostics/loc/es-ES.json.gz b/tsc/pkg/diagnostics/loc/es-ES.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/es-ES.json.gz rename to tsc/pkg/diagnostics/loc/es-ES.json.gz diff --git a/tsc/internal/diagnostics/loc/fr-FR.json.gz b/tsc/pkg/diagnostics/loc/fr-FR.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/fr-FR.json.gz rename to tsc/pkg/diagnostics/loc/fr-FR.json.gz diff --git a/tsc/internal/diagnostics/loc/it-IT.json.gz b/tsc/pkg/diagnostics/loc/it-IT.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/it-IT.json.gz rename to tsc/pkg/diagnostics/loc/it-IT.json.gz diff --git a/tsc/internal/diagnostics/loc/ja-JP.json.gz b/tsc/pkg/diagnostics/loc/ja-JP.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/ja-JP.json.gz rename to tsc/pkg/diagnostics/loc/ja-JP.json.gz diff --git a/tsc/internal/diagnostics/loc/ko-KR.json.gz b/tsc/pkg/diagnostics/loc/ko-KR.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/ko-KR.json.gz rename to tsc/pkg/diagnostics/loc/ko-KR.json.gz diff --git a/tsc/internal/diagnostics/loc/pl-PL.json.gz b/tsc/pkg/diagnostics/loc/pl-PL.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/pl-PL.json.gz rename to tsc/pkg/diagnostics/loc/pl-PL.json.gz diff --git a/tsc/internal/diagnostics/loc/pt-BR.json.gz b/tsc/pkg/diagnostics/loc/pt-BR.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/pt-BR.json.gz rename to tsc/pkg/diagnostics/loc/pt-BR.json.gz diff --git a/tsc/internal/diagnostics/loc/ru-RU.json.gz b/tsc/pkg/diagnostics/loc/ru-RU.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/ru-RU.json.gz rename to tsc/pkg/diagnostics/loc/ru-RU.json.gz diff --git a/tsc/internal/diagnostics/loc/tr-TR.json.gz b/tsc/pkg/diagnostics/loc/tr-TR.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/tr-TR.json.gz rename to tsc/pkg/diagnostics/loc/tr-TR.json.gz diff --git a/tsc/internal/diagnostics/loc/zh-CN.json.gz b/tsc/pkg/diagnostics/loc/zh-CN.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/zh-CN.json.gz rename to tsc/pkg/diagnostics/loc/zh-CN.json.gz diff --git a/tsc/internal/diagnostics/loc/zh-TW.json.gz b/tsc/pkg/diagnostics/loc/zh-TW.json.gz similarity index 100% rename from tsc/internal/diagnostics/loc/zh-TW.json.gz rename to tsc/pkg/diagnostics/loc/zh-TW.json.gz diff --git a/tsc/internal/diagnostics/loc_generated.go b/tsc/pkg/diagnostics/loc_generated.go similarity index 98% rename from tsc/internal/diagnostics/loc_generated.go rename to tsc/pkg/diagnostics/loc_generated.go index 769956b1762a2..2bbd79786cdcc 100644 --- a/tsc/internal/diagnostics/loc_generated.go +++ b/tsc/pkg/diagnostics/loc_generated.go @@ -8,7 +8,7 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" "golang.org/x/text/language" ) diff --git a/tsc/internal/diagnostics/stringer_generated.go b/tsc/pkg/diagnostics/stringer_generated.go similarity index 100% rename from tsc/internal/diagnostics/stringer_generated.go rename to tsc/pkg/diagnostics/stringer_generated.go diff --git a/tsc/internal/diagnosticwriter/diagnosticwriter.go b/tsc/pkg/diagnosticwriter/diagnosticwriter.go similarity index 98% rename from tsc/internal/diagnosticwriter/diagnosticwriter.go rename to tsc/pkg/diagnosticwriter/diagnosticwriter.go index 335589a29133d..e96ab335435af 100644 --- a/tsc/internal/diagnosticwriter/diagnosticwriter.go +++ b/tsc/pkg/diagnosticwriter/diagnosticwriter.go @@ -9,13 +9,13 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type FileLike interface { diff --git a/tsc/internal/evaluator/evaluator.go b/tsc/pkg/evaluator/evaluator.go similarity index 97% rename from tsc/internal/evaluator/evaluator.go rename to tsc/pkg/evaluator/evaluator.go index 136918a9ef4b7..7682beacebf45 100644 --- a/tsc/internal/evaluator/evaluator.go +++ b/tsc/pkg/evaluator/evaluator.go @@ -3,9 +3,9 @@ package evaluator import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/jsnum" ) type Result struct { diff --git a/tsc/internal/execute/build/buildtask.go b/tsc/pkg/execute/build/buildtask.go similarity index 98% rename from tsc/internal/execute/build/buildtask.go rename to tsc/pkg/execute/build/buildtask.go index 96d776a4ccc3a..185bffaf2e768 100644 --- a/tsc/internal/execute/build/buildtask.go +++ b/tsc/pkg/execute/build/buildtask.go @@ -10,16 +10,16 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type buildKind uint diff --git a/tsc/internal/execute/build/buildtask_contentmapper_test.go b/tsc/pkg/execute/build/buildtask_contentmapper_test.go similarity index 93% rename from tsc/internal/execute/build/buildtask_contentmapper_test.go rename to tsc/pkg/execute/build/buildtask_contentmapper_test.go index 2680cb9267546..bc78ad4d54519 100644 --- a/tsc/internal/execute/build/buildtask_contentmapper_test.go +++ b/tsc/pkg/execute/build/buildtask_contentmapper_test.go @@ -4,7 +4,7 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/build/compilerHost.go b/tsc/pkg/execute/build/compilerHost.go similarity index 80% rename from tsc/internal/execute/build/compilerHost.go rename to tsc/pkg/execute/build/compilerHost.go index 47a990be14a97..7635451e6ce1f 100644 --- a/tsc/internal/execute/build/compilerHost.go +++ b/tsc/pkg/execute/build/compilerHost.go @@ -1,13 +1,13 @@ package build import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type compilerHost struct { diff --git a/tsc/internal/execute/build/graph_test.go b/tsc/pkg/execute/build/graph_test.go similarity index 96% rename from tsc/internal/execute/build/graph_test.go rename to tsc/pkg/execute/build/graph_test.go index f3a38aa2b4e16..396a52428c3aa 100644 --- a/tsc/internal/execute/build/graph_test.go +++ b/tsc/pkg/execute/build/graph_test.go @@ -6,10 +6,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute/build" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsctests" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute/build" + "github.com/frida/TypeScript/tsc/pkg/execute/tsctests" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/build/host.go b/tsc/pkg/execute/build/host.go similarity index 87% rename from tsc/internal/execute/build/host.go rename to tsc/pkg/execute/build/host.go index f61c716f78190..26385c3cf4d07 100644 --- a/tsc/internal/execute/build/host.go +++ b/tsc/pkg/execute/build/host.go @@ -3,16 +3,16 @@ package build import ( "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type host struct { diff --git a/tsc/internal/execute/build/orchestrator.go b/tsc/pkg/execute/build/orchestrator.go similarity index 96% rename from tsc/internal/execute/build/orchestrator.go rename to tsc/pkg/execute/build/orchestrator.go index a5ca48c30c234..f9305f0f14df1 100644 --- a/tsc/internal/execute/build/orchestrator.go +++ b/tsc/pkg/execute/build/orchestrator.go @@ -9,19 +9,19 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/execute/watchmanager" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/execute/watchmanager" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" ) type Options struct { diff --git a/tsc/internal/execute/build/parseCache.go b/tsc/pkg/execute/build/parseCache.go similarity index 93% rename from tsc/internal/execute/build/parseCache.go rename to tsc/pkg/execute/build/parseCache.go index f4e0261232c29..f6a7d78d8ae7c 100644 --- a/tsc/internal/execute/build/parseCache.go +++ b/tsc/pkg/execute/build/parseCache.go @@ -3,7 +3,7 @@ package build import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) type parseCacheEntry[V comparable] struct { diff --git a/tsc/internal/execute/build/uptodatestatus.go b/tsc/pkg/execute/build/uptodatestatus.go similarity index 100% rename from tsc/internal/execute/build/uptodatestatus.go rename to tsc/pkg/execute/build/uptodatestatus.go diff --git a/tsc/internal/execute/incremental/affectedfileshandler.go b/tsc/pkg/execute/incremental/affectedfileshandler.go similarity index 97% rename from tsc/internal/execute/incremental/affectedfileshandler.go rename to tsc/pkg/execute/incremental/affectedfileshandler.go index 73289380cc51d..da175d49121fb 100644 --- a/tsc/internal/execute/incremental/affectedfileshandler.go +++ b/tsc/pkg/execute/incremental/affectedfileshandler.go @@ -7,12 +7,12 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type dtsMayChange map[tspath.Path]FileEmitKind diff --git a/tsc/internal/execute/incremental/buildInfo.go b/tsc/pkg/execute/incremental/buildInfo.go similarity index 97% rename from tsc/internal/execute/incremental/buildInfo.go rename to tsc/pkg/execute/incremental/buildInfo.go index e83bc86bff7a4..04beb081667b4 100644 --- a/tsc/internal/execute/incremental/buildInfo.go +++ b/tsc/pkg/execute/incremental/buildInfo.go @@ -5,14 +5,14 @@ import ( "iter" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ( diff --git a/tsc/internal/execute/incremental/buildinfo_contentmapper_test.go b/tsc/pkg/execute/incremental/buildinfo_contentmapper_test.go similarity index 93% rename from tsc/internal/execute/incremental/buildinfo_contentmapper_test.go rename to tsc/pkg/execute/incremental/buildinfo_contentmapper_test.go index bd2ae47240384..e9f7f0556d459 100644 --- a/tsc/internal/execute/incremental/buildinfo_contentmapper_test.go +++ b/tsc/pkg/execute/incremental/buildinfo_contentmapper_test.go @@ -4,12 +4,12 @@ import ( "errors" "testing" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/incremental/buildinfotosnapshot.go b/tsc/pkg/execute/incremental/buildinfotosnapshot.go similarity index 95% rename from tsc/internal/execute/incremental/buildinfotosnapshot.go rename to tsc/pkg/execute/incremental/buildinfotosnapshot.go index a4924f396427b..2d5a66044e608 100644 --- a/tsc/internal/execute/incremental/buildinfotosnapshot.go +++ b/tsc/pkg/execute/incremental/buildinfotosnapshot.go @@ -1,12 +1,12 @@ package incremental import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func buildInfoToSnapshot(buildInfo *BuildInfo, config *tsoptions.ParsedCommandLine, host compiler.CompilerHost) *snapshot { diff --git a/tsc/internal/execute/incremental/emitfileshandler.go b/tsc/pkg/execute/incremental/emitfileshandler.go similarity index 97% rename from tsc/internal/execute/incremental/emitfileshandler.go rename to tsc/pkg/execute/incremental/emitfileshandler.go index ba064548666c3..7053bf38369c9 100644 --- a/tsc/internal/execute/incremental/emitfileshandler.go +++ b/tsc/pkg/execute/incremental/emitfileshandler.go @@ -5,11 +5,11 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type emitUpdate struct { diff --git a/tsc/internal/execute/incremental/external_diagnostic_test.go b/tsc/pkg/execute/incremental/external_diagnostic_test.go similarity index 72% rename from tsc/internal/execute/incremental/external_diagnostic_test.go rename to tsc/pkg/execute/incremental/external_diagnostic_test.go index 2676ed6db1d5f..9af1c45fd39c4 100644 --- a/tsc/internal/execute/incremental/external_diagnostic_test.go +++ b/tsc/pkg/execute/incremental/external_diagnostic_test.go @@ -3,11 +3,11 @@ package incremental import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/incremental/host.go b/tsc/pkg/execute/incremental/host.go similarity index 87% rename from tsc/internal/execute/incremental/host.go rename to tsc/pkg/execute/incremental/host.go index 0ccc1833e43be..4d9d52d08f67a 100644 --- a/tsc/internal/execute/incremental/host.go +++ b/tsc/pkg/execute/incremental/host.go @@ -3,8 +3,8 @@ package incremental import ( "time" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type Host interface { diff --git a/tsc/internal/execute/incremental/incremental.go b/tsc/pkg/execute/incremental/incremental.go similarity index 90% rename from tsc/internal/execute/incremental/incremental.go rename to tsc/pkg/execute/incremental/incremental.go index f4c78a53599d8..223d3c4460a40 100644 --- a/tsc/internal/execute/incremental/incremental.go +++ b/tsc/pkg/execute/incremental/incremental.go @@ -1,9 +1,9 @@ package incremental import ( - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" ) type BuildInfoReader interface { diff --git a/tsc/internal/execute/incremental/program.go b/tsc/pkg/execute/incremental/program.go similarity index 96% rename from tsc/internal/execute/incremental/program.go rename to tsc/pkg/execute/incremental/program.go index d8b6a5dbb1c2c..52aef59dea17a 100644 --- a/tsc/internal/execute/incremental/program.go +++ b/tsc/pkg/execute/incremental/program.go @@ -8,16 +8,16 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type SignatureUpdateKind byte diff --git a/tsc/internal/execute/incremental/programtosnapshot.go b/tsc/pkg/execute/incremental/programtosnapshot.go similarity index 97% rename from tsc/internal/execute/incremental/programtosnapshot.go rename to tsc/pkg/execute/incremental/programtosnapshot.go index 27bfffb552b1c..c5ce1f51f0969 100644 --- a/tsc/internal/execute/incremental/programtosnapshot.go +++ b/tsc/pkg/execute/incremental/programtosnapshot.go @@ -3,14 +3,14 @@ package incremental import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func programToSnapshot(program *compiler.Program, oldProgram *Program, hashWithText bool) *snapshot { diff --git a/tsc/internal/execute/incremental/referencemap.go b/tsc/pkg/execute/incremental/referencemap.go similarity index 91% rename from tsc/internal/execute/incremental/referencemap.go rename to tsc/pkg/execute/incremental/referencemap.go index 70e67977a033a..69196315faee6 100644 --- a/tsc/internal/execute/incremental/referencemap.go +++ b/tsc/pkg/execute/incremental/referencemap.go @@ -6,8 +6,8 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type referenceMap struct { diff --git a/tsc/internal/execute/incremental/snapshot.go b/tsc/pkg/execute/incremental/snapshot.go similarity index 97% rename from tsc/internal/execute/incremental/snapshot.go rename to tsc/pkg/execute/incremental/snapshot.go index 61aa15a4230d6..37b0ccba0050f 100644 --- a/tsc/internal/execute/incremental/snapshot.go +++ b/tsc/pkg/execute/incremental/snapshot.go @@ -7,13 +7,13 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/execute/incremental/snapshottobuildinfo.go b/tsc/pkg/execute/incremental/snapshottobuildinfo.go similarity index 97% rename from tsc/internal/execute/incremental/snapshottobuildinfo.go rename to tsc/pkg/execute/incremental/snapshottobuildinfo.go index 78eea1369565a..d3fb86a3c717b 100644 --- a/tsc/internal/execute/incremental/snapshottobuildinfo.go +++ b/tsc/pkg/execute/incremental/snapshottobuildinfo.go @@ -7,12 +7,12 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func snapshotToBuildInfo(snapshot *snapshot, program *compiler.Program, buildInfoFileName string) (*BuildInfo, error) { diff --git a/tsc/internal/execute/tsc.go b/tsc/pkg/execute/tsc.go similarity index 93% rename from tsc/internal/execute/tsc.go rename to tsc/pkg/execute/tsc.go index f14b945daad4d..bdae8af845e7c 100644 --- a/tsc/internal/execute/tsc.go +++ b/tsc/pkg/execute/tsc.go @@ -5,24 +5,24 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/build" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/pprof" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/build" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/pprof" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func startTracingIfNeeded(sys tsc.System, config *tsoptions.ParsedCommandLine, testing tsc.CommandLineTesting) *tracing.Tracing { diff --git a/tsc/internal/execute/tsc/compile.go b/tsc/pkg/execute/tsc/compile.go similarity index 84% rename from tsc/internal/execute/tsc/compile.go rename to tsc/pkg/execute/tsc/compile.go index a2f00d91f81f5..a50c2ac6fe1ed 100644 --- a/tsc/internal/execute/tsc/compile.go +++ b/tsc/pkg/execute/tsc/compile.go @@ -7,16 +7,16 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type System interface { diff --git a/tsc/internal/execute/tsc/diagnostics.go b/tsc/pkg/execute/tsc/diagnostics.go similarity index 95% rename from tsc/internal/execute/tsc/diagnostics.go rename to tsc/pkg/execute/tsc/diagnostics.go index c4fa7b5ba6f41..3d92f48f1fcf8 100644 --- a/tsc/internal/execute/tsc/diagnostics.go +++ b/tsc/pkg/execute/tsc/diagnostics.go @@ -5,11 +5,11 @@ import ( "io" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func getFormatOptsOfSys(sys System, locale locale.Locale) *diagnosticwriter.FormattingOptions { diff --git a/tsc/internal/execute/tsc/emit.go b/tsc/pkg/execute/tsc/emit.go similarity index 90% rename from tsc/internal/execute/tsc/emit.go rename to tsc/pkg/execute/tsc/emit.go index 6a271106c36a4..66351942f1f75 100644 --- a/tsc/internal/execute/tsc/emit.go +++ b/tsc/pkg/execute/tsc/emit.go @@ -7,15 +7,15 @@ import ( "runtime" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tracing" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tracing" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func GetTraceWithWriterFromSys(w io.Writer, locale locale.Locale, testing CommandLineTesting) func(msg *diagnostics.Message, args ...any) { diff --git a/tsc/internal/execute/tsc/emit_test.go b/tsc/pkg/execute/tsc/emit_test.go similarity index 93% rename from tsc/internal/execute/tsc/emit_test.go rename to tsc/pkg/execute/tsc/emit_test.go index abbb02bc9ff04..f420b5e80cac8 100644 --- a/tsc/internal/execute/tsc/emit_test.go +++ b/tsc/pkg/execute/tsc/emit_test.go @@ -9,13 +9,13 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/tsc/extendedconfigcache.go b/tsc/pkg/execute/tsc/extendedconfigcache.go similarity index 89% rename from tsc/internal/execute/tsc/extendedconfigcache.go rename to tsc/pkg/execute/tsc/extendedconfigcache.go index b8b4af568573f..32d628a7a5a73 100644 --- a/tsc/internal/execute/tsc/extendedconfigcache.go +++ b/tsc/pkg/execute/tsc/extendedconfigcache.go @@ -3,9 +3,9 @@ package tsc import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // extendedConfigCache is a minimal implementation of tsoptions.ExtendedConfigCache. diff --git a/tsc/internal/execute/tsc/extendedconfigcache_test.go b/tsc/pkg/execute/tsc/extendedconfigcache_test.go similarity index 93% rename from tsc/internal/execute/tsc/extendedconfigcache_test.go rename to tsc/pkg/execute/tsc/extendedconfigcache_test.go index 8df586f440ac5..a543ec8546d62 100644 --- a/tsc/internal/execute/tsc/extendedconfigcache_test.go +++ b/tsc/pkg/execute/tsc/extendedconfigcache_test.go @@ -3,10 +3,10 @@ package tsc_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) type testParseConfigHost struct { diff --git a/tsc/internal/execute/tsc/help.go b/tsc/pkg/execute/tsc/help.go similarity index 98% rename from tsc/internal/execute/tsc/help.go rename to tsc/pkg/execute/tsc/help.go index 1de9b248d9dfd..b3d6a8efc77ef 100644 --- a/tsc/internal/execute/tsc/help.go +++ b/tsc/pkg/execute/tsc/help.go @@ -5,11 +5,11 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" ) func PrintVersion(sys System, locale locale.Locale) { diff --git a/tsc/internal/execute/tsc/init.go b/tsc/pkg/execute/tsc/init.go similarity index 93% rename from tsc/internal/execute/tsc/init.go rename to tsc/pkg/execute/tsc/init.go index 58fb6a1a208d7..d1374427a7132 100644 --- a/tsc/internal/execute/tsc/init.go +++ b/tsc/pkg/execute/tsc/init.go @@ -6,14 +6,14 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func WriteConfigFile(sys System, locale locale.Locale, reportDiagnostic DiagnosticReporter, options *collections.OrderedMap[string, any]) { diff --git a/tsc/internal/execute/tsc/statistics.go b/tsc/pkg/execute/tsc/statistics.go similarity index 98% rename from tsc/internal/execute/tsc/statistics.go rename to tsc/pkg/execute/tsc/statistics.go index ce2ac6d5d4bdc..6ce792c7175bd 100644 --- a/tsc/internal/execute/tsc/statistics.go +++ b/tsc/pkg/execute/tsc/statistics.go @@ -9,7 +9,7 @@ import ( "strconv" "time" - "github.com/microsoft/TypeScript/tsc/internal/compiler" + "github.com/frida/TypeScript/tsc/pkg/compiler" ) type tableRow struct { diff --git a/tsc/internal/execute/tsctests/contentmapper_watch_test.go b/tsc/pkg/execute/tsctests/contentmapper_watch_test.go similarity index 98% rename from tsc/internal/execute/tsctests/contentmapper_watch_test.go rename to tsc/pkg/execute/tsctests/contentmapper_watch_test.go index fb1c0c4fd5a8b..61b7af59e2191 100644 --- a/tsc/internal/execute/tsctests/contentmapper_watch_test.go +++ b/tsc/pkg/execute/tsctests/contentmapper_watch_test.go @@ -9,12 +9,12 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/execute" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/execute" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/tsctests/fs.go b/tsc/pkg/execute/tsctests/fs.go similarity index 84% rename from tsc/internal/execute/tsctests/fs.go rename to tsc/pkg/execute/tsctests/fs.go index 6b4758c72cbbb..4f9163b5a65d6 100644 --- a/tsc/internal/execute/tsctests/fs.go +++ b/tsc/pkg/execute/tsctests/fs.go @@ -3,14 +3,14 @@ package tsctests import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fsbaselineutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/testutil/fsbaselineutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type testFs struct { diff --git a/tsc/internal/execute/tsctests/mock_watch_backend.go b/tsc/pkg/execute/tsctests/mock_watch_backend.go similarity index 96% rename from tsc/internal/execute/tsctests/mock_watch_backend.go rename to tsc/pkg/execute/tsctests/mock_watch_backend.go index 7f58d956e0958..49db571ff3f5e 100644 --- a/tsc/internal/execute/tsctests/mock_watch_backend.go +++ b/tsc/pkg/execute/tsctests/mock_watch_backend.go @@ -8,10 +8,10 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/execute/watchmanager" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fsbaselineutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/execute/watchmanager" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/testutil/fsbaselineutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // MockWatchBackend implements watchmanager.WatchBackend for testing. It diff --git a/tsc/internal/execute/tsctests/readablebuildinfo.go b/tsc/pkg/execute/tsctests/readablebuildinfo.go similarity index 98% rename from tsc/internal/execute/tsctests/readablebuildinfo.go rename to tsc/pkg/execute/tsctests/readablebuildinfo.go index 091a850cebdc4..2958597809edb 100644 --- a/tsc/internal/execute/tsctests/readablebuildinfo.go +++ b/tsc/pkg/execute/tsctests/readablebuildinfo.go @@ -4,12 +4,12 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/json" ) type readableBuildInfo struct { diff --git a/tsc/internal/execute/tsctests/runner.go b/tsc/pkg/execute/tsctests/runner.go similarity index 96% rename from tsc/internal/execute/tsctests/runner.go rename to tsc/pkg/execute/tsctests/runner.go index 60b41a947e1e8..5c43f432c30c9 100644 --- a/tsc/internal/execute/tsctests/runner.go +++ b/tsc/pkg/execute/tsctests/runner.go @@ -8,11 +8,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/execute" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/execute" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type tscEdit struct { diff --git a/tsc/internal/execute/tsctests/showconfig_test.go b/tsc/pkg/execute/tsctests/showconfig_test.go similarity index 98% rename from tsc/internal/execute/tsctests/showconfig_test.go rename to tsc/pkg/execute/tsctests/showconfig_test.go index efd19a59911e6..d43e1756724ee 100644 --- a/tsc/internal/execute/tsctests/showconfig_test.go +++ b/tsc/pkg/execute/tsctests/showconfig_test.go @@ -3,7 +3,7 @@ package tsctests import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil/stringtestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/stringtestutil" ) func TestShowConfig(t *testing.T) { diff --git a/tsc/internal/execute/tsctests/sys.go b/tsc/pkg/execute/tsctests/sys.go similarity index 94% rename from tsc/internal/execute/tsctests/sys.go rename to tsc/pkg/execute/tsctests/sys.go index 98d528c291f40..f8703f2739fca 100644 --- a/tsc/internal/execute/tsctests/sys.go +++ b/tsc/pkg/execute/tsctests/sys.go @@ -10,24 +10,24 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/execute/watchmanager" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fsbaselineutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/stringtestutil" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/execute/watchmanager" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/fsbaselineutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/stringtestutil" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "golang.org/x/text/language" ) diff --git a/tsc/internal/execute/tsctests/testmain_test.go b/tsc/pkg/execute/tsctests/testmain_test.go similarity index 53% rename from tsc/internal/execute/tsctests/testmain_test.go rename to tsc/pkg/execute/tsctests/testmain_test.go index 04ea9222d6210..0bec0d5e14da7 100644 --- a/tsc/internal/execute/tsctests/testmain_test.go +++ b/tsc/pkg/execute/tsctests/testmain_test.go @@ -3,8 +3,8 @@ package tsctests import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/execute/tsctests/tsc_test.go b/tsc/pkg/execute/tsctests/tsc_test.go similarity index 99% rename from tsc/internal/execute/tsctests/tsc_test.go rename to tsc/pkg/execute/tsctests/tsc_test.go index 24b664f8cc78d..d3626d0336d43 100644 --- a/tsc/internal/execute/tsctests/tsc_test.go +++ b/tsc/pkg/execute/tsctests/tsc_test.go @@ -6,10 +6,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/stringtestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/stringtestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) func TestTscCommandline(t *testing.T) { diff --git a/tsc/internal/execute/tsctests/tscbuild_test.go b/tsc/pkg/execute/tsctests/tscbuild_test.go similarity index 99% rename from tsc/internal/execute/tsctests/tscbuild_test.go rename to tsc/pkg/execute/tsctests/tscbuild_test.go index ab963e6496216..3559ce5f8e2ba 100644 --- a/tsc/internal/execute/tsctests/tscbuild_test.go +++ b/tsc/pkg/execute/tsctests/tscbuild_test.go @@ -8,12 +8,12 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/stringtestutil" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/stringtestutil" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) @@ -1140,7 +1140,7 @@ func TestBuildDependencyUpdate(t *testing.T) { } testCases := []*tscInput{ { - // https://github.com/microsoft/TypeScript/tsc/issues/2666 + // https://github.com/frida/TypeScript/tsc/issues/2666 subScenario: "rebuilds when dependency in node_modules is updated", files: FileMap{ "/home/src/workspaces/project/tsconfig.json": stringtestutil.Dedent(` @@ -1714,7 +1714,7 @@ func TestBuildDeclarationEmitForReferencedProjectTypesSubpath(t *testing.T) { t.Parallel() testCases := []*tscInput{ { - // https://github.com/microsoft/TypeScript/tsc/issues/3617 + // https://github.com/frida/TypeScript/tsc/issues/3617 // This package.json exposes the same files under two exports subpaths // (`./src/*` and `./types/*`), so both `import("@scope/dep/src/...")` and // `import("@scope/dep/types/...")` are technically valid module specifiers for diff --git a/tsc/internal/execute/tsctests/tscwatch_test.go b/tsc/pkg/execute/tsctests/tscwatch_test.go similarity index 99% rename from tsc/internal/execute/tsctests/tscwatch_test.go rename to tsc/pkg/execute/tsctests/tscwatch_test.go index 16a26026f3326..741878588c431 100644 --- a/tsc/internal/execute/tsctests/tscwatch_test.go +++ b/tsc/pkg/execute/tsctests/tscwatch_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) func TestWatch(t *testing.T) { diff --git a/tsc/internal/execute/tsctests/watcher_race_test.go b/tsc/pkg/execute/tsctests/watcher_race_test.go similarity index 99% rename from tsc/internal/execute/tsctests/watcher_race_test.go rename to tsc/pkg/execute/tsctests/watcher_race_test.go index a736408ca3459..2d91e53ccded9 100644 --- a/tsc/internal/execute/tsctests/watcher_race_test.go +++ b/tsc/pkg/execute/tsctests/watcher_race_test.go @@ -8,9 +8,9 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/execute" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" + "github.com/frida/TypeScript/tsc/pkg/execute" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/fswatch" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/execute/watcher.go b/tsc/pkg/execute/watcher.go similarity index 96% rename from tsc/internal/execute/watcher.go rename to tsc/pkg/execute/watcher.go index 3a3b9405340c9..88b9ba55e9974 100644 --- a/tsc/internal/execute/watcher.go +++ b/tsc/pkg/execute/watcher.go @@ -7,20 +7,20 @@ import ( "slices" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsc" - "github.com/microsoft/TypeScript/tsc/internal/execute/watchmanager" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/trackingvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/execute/tsc" + "github.com/frida/TypeScript/tsc/pkg/execute/watchmanager" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/trackingvfs" ) type cachedSourceFile struct { diff --git a/tsc/internal/execute/watchmanager/watchbackend.go b/tsc/pkg/execute/watchmanager/watchbackend.go similarity index 96% rename from tsc/internal/execute/watchmanager/watchbackend.go rename to tsc/pkg/execute/watchmanager/watchbackend.go index c158f93d00292..dd9ae5425d853 100644 --- a/tsc/internal/execute/watchmanager/watchbackend.go +++ b/tsc/pkg/execute/watchmanager/watchbackend.go @@ -4,8 +4,8 @@ import ( "io" "strings" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // WatchBackend abstracts fswatch.Watcher for testing diff --git a/tsc/internal/execute/watchmanager/watchmanager.go b/tsc/pkg/execute/watchmanager/watchmanager.go similarity index 98% rename from tsc/internal/execute/watchmanager/watchmanager.go rename to tsc/pkg/execute/watchmanager/watchmanager.go index f037d93e2f863..77ab1c536df90 100644 --- a/tsc/internal/execute/watchmanager/watchmanager.go +++ b/tsc/pkg/execute/watchmanager/watchmanager.go @@ -7,9 +7,9 @@ import ( "io" "sync" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type watchedDir struct { diff --git a/tsc/internal/execute/watchmanager/watchmanager_test.go b/tsc/pkg/execute/watchmanager/watchmanager_test.go similarity index 98% rename from tsc/internal/execute/watchmanager/watchmanager_test.go rename to tsc/pkg/execute/watchmanager/watchmanager_test.go index 633afde563c34..94e739d5b3c48 100644 --- a/tsc/internal/execute/watchmanager/watchmanager_test.go +++ b/tsc/pkg/execute/watchmanager/watchmanager_test.go @@ -3,7 +3,7 @@ package watchmanager import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/format/README.md b/tsc/pkg/format/README.md similarity index 100% rename from tsc/internal/format/README.md rename to tsc/pkg/format/README.md diff --git a/tsc/internal/format/api.go b/tsc/pkg/format/api.go similarity index 96% rename from tsc/internal/format/api.go rename to tsc/pkg/format/api.go index bcb42bf18e886..f33ecb0f8b02f 100644 --- a/tsc/internal/format/api.go +++ b/tsc/pkg/format/api.go @@ -4,11 +4,11 @@ import ( "context" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type FormatRequestKind int diff --git a/tsc/internal/format/api_test.go b/tsc/pkg/format/api_test.go similarity index 88% rename from tsc/internal/format/api_test.go rename to tsc/pkg/format/api_test.go index d42df56296710..709baa2cc72fd 100644 --- a/tsc/internal/format/api_test.go +++ b/tsc/pkg/format/api_test.go @@ -6,13 +6,13 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/repo" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/repo" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/format/comment_test.go b/tsc/pkg/format/comment_test.go similarity index 98% rename from tsc/internal/format/comment_test.go rename to tsc/pkg/format/comment_test.go index b8162975f298d..79131f67b7a98 100644 --- a/tsc/internal/format/comment_test.go +++ b/tsc/pkg/format/comment_test.go @@ -4,11 +4,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/format/context.go b/tsc/pkg/format/context.go similarity index 93% rename from tsc/internal/format/context.go rename to tsc/pkg/format/context.go index 56bc2f61f03fd..8d8acdbae1ff0 100644 --- a/tsc/internal/format/context.go +++ b/tsc/pkg/format/context.go @@ -1,11 +1,11 @@ package format import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) type FormattingContext struct { diff --git a/tsc/internal/format/format_test.go b/tsc/pkg/format/format_test.go similarity index 85% rename from tsc/internal/format/format_test.go rename to tsc/pkg/format/format_test.go index 2ee70877255c7..0f6de0ffdaaa6 100644 --- a/tsc/internal/format/format_test.go +++ b/tsc/pkg/format/format_test.go @@ -4,11 +4,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/format/indent.go b/tsc/pkg/format/indent.go similarity index 98% rename from tsc/internal/format/indent.go rename to tsc/pkg/format/indent.go index f440423b64397..f6b1d127ad623 100644 --- a/tsc/internal/format/indent.go +++ b/tsc/pkg/format/indent.go @@ -5,13 +5,13 @@ import ( "slices" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func GetIndentationForNode(n *ast.Node, ignoreActualIndentationRange *core.TextRange, sourceFile *ast.SourceFile, options lsutil.FormatCodeSettings) int { diff --git a/tsc/internal/format/indent_getindentation_test.go b/tsc/pkg/format/indent_getindentation_test.go similarity index 80% rename from tsc/internal/format/indent_getindentation_test.go rename to tsc/pkg/format/indent_getindentation_test.go index 2a297b7cc2266..72db2afb4e04b 100644 --- a/tsc/internal/format/indent_getindentation_test.go +++ b/tsc/pkg/format/indent_getindentation_test.go @@ -3,11 +3,11 @@ package format_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" ) func TestGetIndentationForNamedImportsPosition(t *testing.T) { diff --git a/tsc/internal/format/indent_test.go b/tsc/pkg/format/indent_test.go similarity index 85% rename from tsc/internal/format/indent_test.go rename to tsc/pkg/format/indent_test.go index 3307ce6665d32..123b294a6a539 100644 --- a/tsc/internal/format/indent_test.go +++ b/tsc/pkg/format/indent_test.go @@ -3,10 +3,10 @@ package format_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/format/rule.go b/tsc/pkg/format/rule.go similarity index 98% rename from tsc/internal/format/rule.go rename to tsc/pkg/format/rule.go index 1281636b89bee..e6dae9e93a582 100644 --- a/tsc/internal/format/rule.go +++ b/tsc/pkg/format/rule.go @@ -1,6 +1,6 @@ package format -import "github.com/microsoft/TypeScript/tsc/internal/ast" +import "github.com/frida/TypeScript/tsc/pkg/ast" type ruleImpl struct { debugName string diff --git a/tsc/internal/format/rulecontext.go b/tsc/pkg/format/rulecontext.go similarity index 98% rename from tsc/internal/format/rulecontext.go rename to tsc/pkg/format/rulecontext.go index 175f43752f396..a99f201736133 100644 --- a/tsc/internal/format/rulecontext.go +++ b/tsc/pkg/format/rulecontext.go @@ -3,11 +3,11 @@ package format import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) /// diff --git a/tsc/internal/format/rules.go b/tsc/pkg/format/rules.go similarity index 99% rename from tsc/internal/format/rules.go rename to tsc/pkg/format/rules.go index b120a9d51fe0e..f635e2b46e0c4 100644 --- a/tsc/internal/format/rules.go +++ b/tsc/pkg/format/rules.go @@ -3,8 +3,8 @@ package format import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" ) func getAllRules() []ruleSpec { diff --git a/tsc/internal/format/rulesmap.go b/tsc/pkg/format/rulesmap.go similarity index 97% rename from tsc/internal/format/rulesmap.go rename to tsc/pkg/format/rulesmap.go index 3dedb88e26ac1..7e24298beaa73 100644 --- a/tsc/internal/format/rulesmap.go +++ b/tsc/pkg/format/rulesmap.go @@ -4,8 +4,8 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/debug" ) func getRules(context *FormattingContext, rules []*ruleImpl) []*ruleImpl { diff --git a/tsc/internal/format/scanner.go b/tsc/pkg/format/scanner.go similarity index 97% rename from tsc/internal/format/scanner.go rename to tsc/pkg/format/scanner.go index e85fae16c6eb7..40494ce09ce90 100644 --- a/tsc/internal/format/scanner.go +++ b/tsc/pkg/format/scanner.go @@ -3,10 +3,10 @@ package format import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) type TextRangeWithKind struct { diff --git a/tsc/internal/format/span.go b/tsc/pkg/format/span.go similarity index 99% rename from tsc/internal/format/span.go rename to tsc/pkg/format/span.go index ef268c873a404..e3f6d22f270ec 100644 --- a/tsc/internal/format/span.go +++ b/tsc/pkg/format/span.go @@ -7,13 +7,13 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) /** find node that fully contains given text range */ diff --git a/tsc/internal/format/util.go b/tsc/pkg/format/util.go similarity index 95% rename from tsc/internal/format/util.go rename to tsc/pkg/format/util.go index 2b562d15d66d7..c8fd7fcb08a3f 100644 --- a/tsc/internal/format/util.go +++ b/tsc/pkg/format/util.go @@ -1,10 +1,10 @@ package format import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func rangeIsOnOneLine(node core.TextRange, file *ast.SourceFile) bool { diff --git a/tsc/internal/fourslash/baselineutil.go b/tsc/pkg/fourslash/baselineutil.go similarity index 97% rename from tsc/internal/fourslash/baselineutil.go rename to tsc/pkg/fourslash/baselineutil.go index c0c0f7615aefd..4647a7891a0a1 100644 --- a/tsc/internal/fourslash/baselineutil.go +++ b/tsc/pkg/fourslash/baselineutil.go @@ -10,15 +10,15 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) const ( diff --git a/tsc/internal/fourslash/fourslash.go b/tsc/pkg/fourslash/fourslash.go similarity index 99% rename from tsc/internal/fourslash/fourslash.go rename to tsc/pkg/fourslash/fourslash.go index fe61e1b5c4815..76d8c7673e4f3 100644 --- a/tsc/internal/fourslash/fourslash.go +++ b/tsc/pkg/fourslash/fourslash.go @@ -13,33 +13,33 @@ import ( "unicode/utf8" "github.com/google/go-cmp/cmp" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/execute/tsctests" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/tsbaseline" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/execute/tsctests" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/tsbaseline" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/fourslash/semantictokens.go b/tsc/pkg/fourslash/semantictokens.go similarity index 96% rename from tsc/internal/fourslash/semantictokens.go rename to tsc/pkg/fourslash/semantictokens.go index bba341cdc8c01..acc27dd4be47d 100644 --- a/tsc/internal/fourslash/semantictokens.go +++ b/tsc/pkg/fourslash/semantictokens.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) type SemanticToken struct { diff --git a/tsc/internal/fourslash/statebaseline.go b/tsc/pkg/fourslash/statebaseline.go similarity index 96% rename from tsc/internal/fourslash/statebaseline.go rename to tsc/pkg/fourslash/statebaseline.go index c1e8a8873355a..557289bc056ed 100644 --- a/tsc/internal/fourslash/statebaseline.go +++ b/tsc/pkg/fourslash/statebaseline.go @@ -9,17 +9,17 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/json" - - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fsbaselineutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/json" + + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/fsbaselineutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/fourslash/test_parser.go b/tsc/pkg/fourslash/test_parser.go similarity index 96% rename from tsc/internal/fourslash/test_parser.go rename to tsc/pkg/fourslash/test_parser.go index 18e59049781dd..9bd2b57538e5d 100644 --- a/tsc/internal/fourslash/test_parser.go +++ b/tsc/pkg/fourslash/test_parser.go @@ -7,14 +7,14 @@ import ( "testing" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/testrunner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/testrunner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Inserted in source files by surrounding desired text diff --git a/tsc/internal/fourslash/tests/NavigationBarJsDoc_test.go b/tsc/pkg/fourslash/tests/NavigationBarJsDoc_test.go similarity index 79% rename from tsc/internal/fourslash/tests/NavigationBarJsDoc_test.go rename to tsc/pkg/fourslash/tests/NavigationBarJsDoc_test.go index c1525b8679cb0..d6b842b8a2b84 100644 --- a/tsc/internal/fourslash/tests/NavigationBarJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/NavigationBarJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go b/tsc/pkg/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go rename to tsc/pkg/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go index b808158160a8d..fab934e211c62 100644 --- a/tsc/internal/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go +++ b/tsc/pkg/fourslash/tests/TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDecoratorNoCrashOnFunctionDeclaration1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addAllMissingImportsNoCrash_test.go b/tsc/pkg/fourslash/tests/addAllMissingImportsNoCrash_test.go similarity index 88% rename from tsc/internal/fourslash/tests/addAllMissingImportsNoCrash_test.go rename to tsc/pkg/fourslash/tests/addAllMissingImportsNoCrash_test.go index 002b4246fe27f..0916d37f9e73a 100644 --- a/tsc/internal/fourslash/tests/addAllMissingImportsNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/addAllMissingImportsNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddAllMissingImportsNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addDeclareToFunction_test.go b/tsc/pkg/fourslash/tests/addDeclareToFunction_test.go similarity index 78% rename from tsc/internal/fourslash/tests/addDeclareToFunction_test.go rename to tsc/pkg/fourslash/tests/addDeclareToFunction_test.go index 18982b09f8daa..ee9a7ffefaea5 100644 --- a/tsc/internal/fourslash/tests/addDeclareToFunction_test.go +++ b/tsc/pkg/fourslash/tests/addDeclareToFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddDeclareToFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addDeclareToModule_test.go b/tsc/pkg/fourslash/tests/addDeclareToModule_test.go similarity index 76% rename from tsc/internal/fourslash/tests/addDeclareToModule_test.go rename to tsc/pkg/fourslash/tests/addDeclareToModule_test.go index e43553c9dc46c..4acaf03ef3686 100644 --- a/tsc/internal/fourslash/tests/addDeclareToModule_test.go +++ b/tsc/pkg/fourslash/tests/addDeclareToModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddDeclareToModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addDuplicateSetter_test.go b/tsc/pkg/fourslash/tests/addDuplicateSetter_test.go similarity index 76% rename from tsc/internal/fourslash/tests/addDuplicateSetter_test.go rename to tsc/pkg/fourslash/tests/addDuplicateSetter_test.go index 79a179569ec63..b27807c351540 100644 --- a/tsc/internal/fourslash/tests/addDuplicateSetter_test.go +++ b/tsc/pkg/fourslash/tests/addDuplicateSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddDuplicateSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go b/tsc/pkg/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go similarity index 76% rename from tsc/internal/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go rename to tsc/pkg/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go index 55e332a49e78c..cc6748a7dcb1d 100644 --- a/tsc/internal/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go +++ b/tsc/pkg/fourslash/tests/addFunctionAboveMultiLineLambdaExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddFunctionAboveMultiLineLambdaExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go b/tsc/pkg/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go similarity index 79% rename from tsc/internal/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go rename to tsc/pkg/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go index c022e03d275ce..e194152c0f984 100644 --- a/tsc/internal/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go +++ b/tsc/pkg/fourslash/tests/addFunctionInDuplicatedConstructorClassBody_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddFunctionInDuplicatedConstructorClassBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addInterfaceMemberAboveClass_test.go b/tsc/pkg/fourslash/tests/addInterfaceMemberAboveClass_test.go similarity index 83% rename from tsc/internal/fourslash/tests/addInterfaceMemberAboveClass_test.go rename to tsc/pkg/fourslash/tests/addInterfaceMemberAboveClass_test.go index 5520ba222f8c7..79ffd1297e0bb 100644 --- a/tsc/internal/fourslash/tests/addInterfaceMemberAboveClass_test.go +++ b/tsc/pkg/fourslash/tests/addInterfaceMemberAboveClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddInterfaceMemberAboveClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go b/tsc/pkg/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go similarity index 79% rename from tsc/internal/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go rename to tsc/pkg/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go index a04378bde27d2..11ec0faa46179 100644 --- a/tsc/internal/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go +++ b/tsc/pkg/fourslash/tests/addInterfaceToNotSatisfyConstraint_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddInterfaceToNotSatisfyConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go b/tsc/pkg/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go similarity index 84% rename from tsc/internal/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go rename to tsc/pkg/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go index 7e0586d6d58cb..789a2953cff6d 100644 --- a/tsc/internal/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go +++ b/tsc/pkg/fourslash/tests/addMemberNotInNodeModulesDeclarationFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddMemberNotInNodeModulesDeclarationFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addMemberToModule_test.go b/tsc/pkg/fourslash/tests/addMemberToModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/addMemberToModule_test.go rename to tsc/pkg/fourslash/tests/addMemberToModule_test.go index 8a440fa1ff58e..c72ba6a63e364 100644 --- a/tsc/internal/fourslash/tests/addMemberToModule_test.go +++ b/tsc/pkg/fourslash/tests/addMemberToModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddMemberToModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/addSignaturePartial_test.go b/tsc/pkg/fourslash/tests/addSignaturePartial_test.go similarity index 74% rename from tsc/internal/fourslash/tests/addSignaturePartial_test.go rename to tsc/pkg/fourslash/tests/addSignaturePartial_test.go index c586c178af2df..4baf885456582 100644 --- a/tsc/internal/fourslash/tests/addSignaturePartial_test.go +++ b/tsc/pkg/fourslash/tests/addSignaturePartial_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAddSignaturePartial(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/aliasMergingWithNamespace_test.go b/tsc/pkg/fourslash/tests/aliasMergingWithNamespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/aliasMergingWithNamespace_test.go rename to tsc/pkg/fourslash/tests/aliasMergingWithNamespace_test.go index 6591e98821743..43de2170d4cad 100644 --- a/tsc/internal/fourslash/tests/aliasMergingWithNamespace_test.go +++ b/tsc/pkg/fourslash/tests/aliasMergingWithNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAliasMergingWithNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/aliasToVarUsedAsType_test.go b/tsc/pkg/fourslash/tests/aliasToVarUsedAsType_test.go similarity index 76% rename from tsc/internal/fourslash/tests/aliasToVarUsedAsType_test.go rename to tsc/pkg/fourslash/tests/aliasToVarUsedAsType_test.go index b530087ddad19..001557fda6820 100644 --- a/tsc/internal/fourslash/tests/aliasToVarUsedAsType_test.go +++ b/tsc/pkg/fourslash/tests/aliasToVarUsedAsType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAliasToVarUsedAsType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go b/tsc/pkg/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go similarity index 81% rename from tsc/internal/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go rename to tsc/pkg/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go index 8451c37a9a3b4..5aa6c1aacb480 100644 --- a/tsc/internal/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go +++ b/tsc/pkg/fourslash/tests/allowLateBoundSymbolsOverwriteEarlyBoundSymbols_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAllowLateBoundSymbolsOverwriteEarlyBoundSymbols(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ambientShorthandFindAllRefs_test.go b/tsc/pkg/fourslash/tests/ambientShorthandFindAllRefs_test.go similarity index 81% rename from tsc/internal/fourslash/tests/ambientShorthandFindAllRefs_test.go rename to tsc/pkg/fourslash/tests/ambientShorthandFindAllRefs_test.go index 6dbdee4aee297..07e3143b78aa2 100644 --- a/tsc/internal/fourslash/tests/ambientShorthandFindAllRefs_test.go +++ b/tsc/pkg/fourslash/tests/ambientShorthandFindAllRefs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAmbientShorthandFindAllRefs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ambientShorthandGotoDefinition_test.go b/tsc/pkg/fourslash/tests/ambientShorthandGotoDefinition_test.go similarity index 90% rename from tsc/internal/fourslash/tests/ambientShorthandGotoDefinition_test.go rename to tsc/pkg/fourslash/tests/ambientShorthandGotoDefinition_test.go index f3a3179caff9c..6f5718d2a3191 100644 --- a/tsc/internal/fourslash/tests/ambientShorthandGotoDefinition_test.go +++ b/tsc/pkg/fourslash/tests/ambientShorthandGotoDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAmbientShorthandGotoDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ambientVariablesWithSameName_test.go b/tsc/pkg/fourslash/tests/ambientVariablesWithSameName_test.go similarity index 78% rename from tsc/internal/fourslash/tests/ambientVariablesWithSameName_test.go rename to tsc/pkg/fourslash/tests/ambientVariablesWithSameName_test.go index 76da286af5226..5ce787d10c67e 100644 --- a/tsc/internal/fourslash/tests/ambientVariablesWithSameName_test.go +++ b/tsc/pkg/fourslash/tests/ambientVariablesWithSameName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAmbientVariablesWithSameName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/annotateWithTypeFromJSDoc2_test.go b/tsc/pkg/fourslash/tests/annotateWithTypeFromJSDoc2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/annotateWithTypeFromJSDoc2_test.go rename to tsc/pkg/fourslash/tests/annotateWithTypeFromJSDoc2_test.go index 201bec9254721..698c30bf4f1c3 100644 --- a/tsc/internal/fourslash/tests/annotateWithTypeFromJSDoc2_test.go +++ b/tsc/pkg/fourslash/tests/annotateWithTypeFromJSDoc2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAnnotateWithTypeFromJSDoc2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/argumentCompletions_test.go b/tsc/pkg/fourslash/tests/argumentCompletions_test.go similarity index 84% rename from tsc/internal/fourslash/tests/argumentCompletions_test.go rename to tsc/pkg/fourslash/tests/argumentCompletions_test.go index 804689ee4dccf..035a907b59aa1 100644 --- a/tsc/internal/fourslash/tests/argumentCompletions_test.go +++ b/tsc/pkg/fourslash/tests/argumentCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArgumentCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go b/tsc/pkg/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go similarity index 79% rename from tsc/internal/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go rename to tsc/pkg/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go index 03bf942d17864..cd9a5a1078bd8 100644 --- a/tsc/internal/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go +++ b/tsc/pkg/fourslash/tests/argumentsAreAvailableAfterEditsAtEndOfFunction_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArgumentsAreAvailableAfterEditsAtEndOfFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/argumentsIndexExpression_test.go b/tsc/pkg/fourslash/tests/argumentsIndexExpression_test.go similarity index 76% rename from tsc/internal/fourslash/tests/argumentsIndexExpression_test.go rename to tsc/pkg/fourslash/tests/argumentsIndexExpression_test.go index 6f61f1d34a0ac..7652a758f87de 100644 --- a/tsc/internal/fourslash/tests/argumentsIndexExpression_test.go +++ b/tsc/pkg/fourslash/tests/argumentsIndexExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArgumentsIndexExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/arityErrorAfterSignatureHelp_test.go b/tsc/pkg/fourslash/tests/arityErrorAfterSignatureHelp_test.go similarity index 84% rename from tsc/internal/fourslash/tests/arityErrorAfterSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/arityErrorAfterSignatureHelp_test.go index 82d8e4412602e..051b2285d5019 100644 --- a/tsc/internal/fourslash/tests/arityErrorAfterSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/arityErrorAfterSignatureHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArityErrorAfterSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/arityErrorAfterStringCompletions_test.go b/tsc/pkg/fourslash/tests/arityErrorAfterStringCompletions_test.go similarity index 82% rename from tsc/internal/fourslash/tests/arityErrorAfterStringCompletions_test.go rename to tsc/pkg/fourslash/tests/arityErrorAfterStringCompletions_test.go index d2d2b71744b8f..252413f09b099 100644 --- a/tsc/internal/fourslash/tests/arityErrorAfterStringCompletions_test.go +++ b/tsc/pkg/fourslash/tests/arityErrorAfterStringCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArityErrorAfterStringCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/arrayCallAndConstructTypings_test.go b/tsc/pkg/fourslash/tests/arrayCallAndConstructTypings_test.go similarity index 90% rename from tsc/internal/fourslash/tests/arrayCallAndConstructTypings_test.go rename to tsc/pkg/fourslash/tests/arrayCallAndConstructTypings_test.go index df3e32bc2dba8..430b8c5dfc23f 100644 --- a/tsc/internal/fourslash/tests/arrayCallAndConstructTypings_test.go +++ b/tsc/pkg/fourslash/tests/arrayCallAndConstructTypings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestArrayCallAndConstructTypings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asConstRefsNoErrors1_test.go b/tsc/pkg/fourslash/tests/asConstRefsNoErrors1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/asConstRefsNoErrors1_test.go rename to tsc/pkg/fourslash/tests/asConstRefsNoErrors1_test.go index 26c03cd7b0173..41f59693fe674 100644 --- a/tsc/internal/fourslash/tests/asConstRefsNoErrors1_test.go +++ b/tsc/pkg/fourslash/tests/asConstRefsNoErrors1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsConstRefsNoErrors1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asConstRefsNoErrors2_test.go b/tsc/pkg/fourslash/tests/asConstRefsNoErrors2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/asConstRefsNoErrors2_test.go rename to tsc/pkg/fourslash/tests/asConstRefsNoErrors2_test.go index 30c959ec17202..a1891aa6040cf 100644 --- a/tsc/internal/fourslash/tests/asConstRefsNoErrors2_test.go +++ b/tsc/pkg/fourslash/tests/asConstRefsNoErrors2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsConstRefsNoErrors2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asConstRefsNoErrors3_test.go b/tsc/pkg/fourslash/tests/asConstRefsNoErrors3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/asConstRefsNoErrors3_test.go rename to tsc/pkg/fourslash/tests/asConstRefsNoErrors3_test.go index 5bca6141db7d4..862561d92bd75 100644 --- a/tsc/internal/fourslash/tests/asConstRefsNoErrors3_test.go +++ b/tsc/pkg/fourslash/tests/asConstRefsNoErrors3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsConstRefsNoErrors3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asOperatorCompletion2_test.go b/tsc/pkg/fourslash/tests/asOperatorCompletion2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/asOperatorCompletion2_test.go rename to tsc/pkg/fourslash/tests/asOperatorCompletion2_test.go index 89a17f35eb3b2..f85270ad0d9a5 100644 --- a/tsc/internal/fourslash/tests/asOperatorCompletion2_test.go +++ b/tsc/pkg/fourslash/tests/asOperatorCompletion2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsOperatorCompletion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asOperatorCompletion3_test.go b/tsc/pkg/fourslash/tests/asOperatorCompletion3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/asOperatorCompletion3_test.go rename to tsc/pkg/fourslash/tests/asOperatorCompletion3_test.go index e0a659ec29d88..c9b52e3bea4c8 100644 --- a/tsc/internal/fourslash/tests/asOperatorCompletion3_test.go +++ b/tsc/pkg/fourslash/tests/asOperatorCompletion3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsOperatorCompletion3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asOperatorCompletion_test.go b/tsc/pkg/fourslash/tests/asOperatorCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/asOperatorCompletion_test.go rename to tsc/pkg/fourslash/tests/asOperatorCompletion_test.go index 9e52b882b9df7..072b09bbd5b79 100644 --- a/tsc/internal/fourslash/tests/asOperatorCompletion_test.go +++ b/tsc/pkg/fourslash/tests/asOperatorCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsOperatorCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/asOperatorFormatting_test.go b/tsc/pkg/fourslash/tests/asOperatorFormatting_test.go similarity index 77% rename from tsc/internal/fourslash/tests/asOperatorFormatting_test.go rename to tsc/pkg/fourslash/tests/asOperatorFormatting_test.go index b63aee871e14b..5cb8dc2f087eb 100644 --- a/tsc/internal/fourslash/tests/asOperatorFormatting_test.go +++ b/tsc/pkg/fourslash/tests/asOperatorFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAsOperatorFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/assertContextualType_test.go b/tsc/pkg/fourslash/tests/assertContextualType_test.go similarity index 76% rename from tsc/internal/fourslash/tests/assertContextualType_test.go rename to tsc/pkg/fourslash/tests/assertContextualType_test.go index 051b76e7fa026..99ddfd3ae292a 100644 --- a/tsc/internal/fourslash/tests/assertContextualType_test.go +++ b/tsc/pkg/fourslash/tests/assertContextualType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAssertContextualType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesClass1_test.go b/tsc/pkg/fourslash/tests/augmentedTypesClass1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/augmentedTypesClass1_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesClass1_test.go index bdca7cedefaa3..56b91ddef551c 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesClass1_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesClass1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesClass1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesClass3Fourslash_test.go b/tsc/pkg/fourslash/tests/augmentedTypesClass3Fourslash_test.go similarity index 79% rename from tsc/internal/fourslash/tests/augmentedTypesClass3Fourslash_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesClass3Fourslash_test.go index b8a0c0e403ce5..26f8118f0b555 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesClass3Fourslash_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesClass3Fourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesClass3Fourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule1_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/augmentedTypesModule1_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule1_test.go index c1e5dbb0f6c2b..f7d1617b1460d 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule1_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule2_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/augmentedTypesModule2_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule2_test.go index 8e47528955f3e..4ab0bd19e9360 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule2_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule3_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/augmentedTypesModule3_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule3_test.go index 426e25118c1fc..b2f8bbf29528a 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule3_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule4_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/augmentedTypesModule4_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule4_test.go index 5a9a7c5f19195..178e87b360bc7 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule4_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule5_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule5_test.go similarity index 86% rename from tsc/internal/fourslash/tests/augmentedTypesModule5_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule5_test.go index ba147fa2d54ce..9d4bc7319486b 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule5_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/augmentedTypesModule6_test.go b/tsc/pkg/fourslash/tests/augmentedTypesModule6_test.go similarity index 92% rename from tsc/internal/fourslash/tests/augmentedTypesModule6_test.go rename to tsc/pkg/fourslash/tests/augmentedTypesModule6_test.go index b5eaac0e18027..d14b9b74edc86 100644 --- a/tsc/internal/fourslash/tests/augmentedTypesModule6_test.go +++ b/tsc/pkg/fourslash/tests/augmentedTypesModule6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAugmentedTypesModule6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoCloseFragment_test.go b/tsc/pkg/fourslash/tests/autoCloseFragment_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoCloseFragment_test.go rename to tsc/pkg/fourslash/tests/autoCloseFragment_test.go index fa314670c7a70..8c4be23720c54 100644 --- a/tsc/internal/fourslash/tests/autoCloseFragment_test.go +++ b/tsc/pkg/fourslash/tests/autoCloseFragment_test.go @@ -3,8 +3,8 @@ package fourslash import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoCloseFragment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoCloseTag_test.go b/tsc/pkg/fourslash/tests/autoCloseTag_test.go similarity index 91% rename from tsc/internal/fourslash/tests/autoCloseTag_test.go rename to tsc/pkg/fourslash/tests/autoCloseTag_test.go index d40d5f5028d56..ff09d24f0e4d9 100644 --- a/tsc/internal/fourslash/tests/autoCloseTag_test.go +++ b/tsc/pkg/fourslash/tests/autoCloseTag_test.go @@ -3,8 +3,8 @@ package fourslash import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoCloseTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go b/tsc/pkg/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go similarity index 93% rename from tsc/internal/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go rename to tsc/pkg/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go index 0022f8b685fcd..a4c700ec92055 100644 --- a/tsc/internal/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go +++ b/tsc/pkg/fourslash/tests/autoCloseTagsWithTriviaAndComplexNames_test.go @@ -3,8 +3,8 @@ package fourslash import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoCloseTagsWithTriviaAndComplexNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoFormattingOnPasting_test.go b/tsc/pkg/fourslash/tests/autoFormattingOnPasting_test.go similarity index 82% rename from tsc/internal/fourslash/tests/autoFormattingOnPasting_test.go rename to tsc/pkg/fourslash/tests/autoFormattingOnPasting_test.go index 13bad03f9ddab..30c0c0ec3c667 100644 --- a/tsc/internal/fourslash/tests/autoFormattingOnPasting_test.go +++ b/tsc/pkg/fourslash/tests/autoFormattingOnPasting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoFormattingOnPasting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go b/tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go rename to tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go index 0d085f1d1b5a1..6f2fe4fe3a89f 100644 --- a/tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportAllowImportingTsExtensionsPackageJsonImports1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go b/tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go rename to tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go index 096c935a848ee..753f871fb483d 100644 --- a/tsc/internal/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportAllowImportingTsExtensionsPackageJsonImports2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportAllowImportingTsExtensionsPackageJsonImports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go b/tsc/pkg/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go rename to tsc/pkg/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go index 245c257f6fc48..a4582557e9c70 100644 --- a/tsc/internal/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go +++ b/tsc/pkg/fourslash/tests/autoImportBundlerBlockRelativeNodeModulesPaths_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportBundlerBlockRelativeNodeModulesPaths(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportBundlerExports_test.go b/tsc/pkg/fourslash/tests/autoImportBundlerExports_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportBundlerExports_test.go rename to tsc/pkg/fourslash/tests/autoImportBundlerExports_test.go index bfab5dab1e681..542e066e692f8 100644 --- a/tsc/internal/fourslash/tests/autoImportBundlerExports_test.go +++ b/tsc/pkg/fourslash/tests/autoImportBundlerExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportBundlerExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go b/tsc/pkg/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go similarity index 96% rename from tsc/internal/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go rename to tsc/pkg/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go index f5d43dca0da21..fc39180f8d17a 100644 --- a/tsc/internal/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCJSWithNodeModuleKind_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportCJSWithNodeModuleKind verifies that auto-imports use require() diff --git a/tsc/internal/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go index 706f58e225dff..b002494557153 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionAmbientMergedModule1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionAmbientMergedModule1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go index badf7e64fda59..7ec6e1dd7cb97 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionExportEqualsWithDefault1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionExportEqualsWithDefault1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go index 79a617ba9b3a9..0f8b6c648ba47 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionExportListAugmentation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go index e131b8ba5e4c2..2443ef7595e3b 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation2_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionExportListAugmentation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go index a4480175b09f4..35311e2255eb0 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation3_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionExportListAugmentation3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go index dbfe2fa6455e6..a1082f90ca54b 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionExportListAugmentation4_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionExportListAugmentation4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletion_test.go b/tsc/pkg/fourslash/tests/autoImportCompletion_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportCompletion_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletion_test.go index b1cda60538b13..a699ba99dbd99 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletion_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletion_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go b/tsc/pkg/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go rename to tsc/pkg/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go index 3010aba0f28d7..f582bd493e3d7 100644 --- a/tsc/internal/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCompletionsForArbitraryNonIdentifierExports_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - util "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + util "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCompletionsForArbitraryNonIdentifierExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go b/tsc/pkg/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go similarity index 91% rename from tsc/internal/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go index 1a8f398b5b566..a5462a3908a70 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossPackage_pathsAndSymlink_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossPackage_pathsAndSymlink(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProjectNodeModules_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProjectNodeModules_test.go similarity index 94% rename from tsc/internal/fourslash/tests/autoImportCrossProjectNodeModules_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProjectNodeModules_test.go index 5e6cbb656b9f4..88b402a08ee0d 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProjectNodeModules_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProjectNodeModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportCrossProjectNodeModules verifies that when multiple projects share diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go index 9e938e9889ce4..32c0632b37021 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_baseUrl_toDist_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_baseUrl_toDist(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go index 4019155b7d84f..e7256c5901ddf 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_sharedOutDir_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_paths_sharedOutDir(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go similarity index 94% rename from tsc/internal/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go index 89bb980912999..819c577aad955 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_stripSrc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_paths_stripSrc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go index 658fabf79bbde..322dc82df3fb0 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_paths_toDist2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist_test.go similarity index 94% rename from tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist_test.go index c0932166cbe40..dd73925ab7139 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toDist_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toDist_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_paths_toDist(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go similarity index 94% rename from tsc/internal/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go index 5e2b8d866d306..a8fee0fdd595b 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_paths_toSrc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_paths_toSrc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go similarity index 93% rename from tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go index d2789a1c37050..94623c388f54a 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_stripSrc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_symlinks_stripSrc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go similarity index 93% rename from tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go index 166ea82921566..751ea7ffb3798 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toDist_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_symlinks_toDist(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go rename to tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go index 17dd67f781b39..8ff6738ef905a 100644 --- a/tsc/internal/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCrossProject_symlinks_toSrc_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCrossProject_symlinks_toSrc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportCssModule_test.go b/tsc/pkg/fourslash/tests/autoImportCssModule_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportCssModule_test.go rename to tsc/pkg/fourslash/tests/autoImportCssModule_test.go index c5ebd016cc64e..795b324df9d03 100644 --- a/tsc/internal/fourslash/tests/autoImportCssModule_test.go +++ b/tsc/pkg/fourslash/tests/autoImportCssModule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportCssModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportDefaultPascalCase_test.go b/tsc/pkg/fourslash/tests/autoImportDefaultPascalCase_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportDefaultPascalCase_test.go rename to tsc/pkg/fourslash/tests/autoImportDefaultPascalCase_test.go index 0b7b650026527..57706c33f1b6d 100644 --- a/tsc/internal/fourslash/tests/autoImportDefaultPascalCase_test.go +++ b/tsc/pkg/fourslash/tests/autoImportDefaultPascalCase_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportDefaultPascalCase(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportErrorMixedExportKinds_test.go b/tsc/pkg/fourslash/tests/autoImportErrorMixedExportKinds_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportErrorMixedExportKinds_test.go rename to tsc/pkg/fourslash/tests/autoImportErrorMixedExportKinds_test.go index 2841ff9b6cc98..e6079230d6767 100644 --- a/tsc/internal/fourslash/tests/autoImportErrorMixedExportKinds_test.go +++ b/tsc/pkg/fourslash/tests/autoImportErrorMixedExportKinds_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportErrorMixedExportKinds(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportExportEqualsOfImportStar_test.go b/tsc/pkg/fourslash/tests/autoImportExportEqualsOfImportStar_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportExportEqualsOfImportStar_test.go rename to tsc/pkg/fourslash/tests/autoImportExportEqualsOfImportStar_test.go index c738f5f88a90d..65732230965c9 100644 --- a/tsc/internal/fourslash/tests/autoImportExportEqualsOfImportStar_test.go +++ b/tsc/pkg/fourslash/tests/autoImportExportEqualsOfImportStar_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportExportEqualsOfImportStar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns10_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns10_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns10_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns10_test.go index 1c47b6353197e..58777b0e64a21 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns10_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns11_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns11_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns11_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns11_test.go index cff3cf85f4802..e00e79031f010 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns11_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns12_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns12_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns12_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns12_test.go index 5b2acf96d5feb..f4a724163aa0f 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns12_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns13_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns13_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns13_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns13_test.go index 77f0519cfc725..cbf07729824bc 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns13_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns2_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns2_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns2_test.go index 748566b73fa9f..10af01ded04c8 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns2_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns3_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns3_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns3_test.go index 8bfcbfebf77ef..4d907d7b54983 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns3_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns4_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns4_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns4_test.go index 2b2c40ce44c88..330bd2b204043 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns5_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns5_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns5_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns5_test.go index ff804fdd4a687..a75cd7ecade85 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns5_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns6_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns6_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns6_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns6_test.go index 74c647d0eaae9..ffe90d655c066 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns6_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns7_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns7_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns7_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns7_test.go index 7b4ce8d44bd3b..fab5f108ebdd3 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns7_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns8_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns8_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns8_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns8_test.go index 3dbd7d29bf2a6..6e62f3ea9f277 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns8_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns9_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns9_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns9_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns9_test.go index d92a2e7f2bae6..ccf971c411c7b 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns9_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns9_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns_test.go b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportFileExcludePatterns_test.go rename to tsc/pkg/fourslash/tests/autoImportFileExcludePatterns_test.go index aa861ea27fe8d..95964eeebe55a 100644 --- a/tsc/internal/fourslash/tests/autoImportFileExcludePatterns_test.go +++ b/tsc/pkg/fourslash/tests/autoImportFileExcludePatterns_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportFileExcludePatterns(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportIndexReExportPrefix_test.go b/tsc/pkg/fourslash/tests/autoImportIndexReExportPrefix_test.go similarity index 79% rename from tsc/internal/fourslash/tests/autoImportIndexReExportPrefix_test.go rename to tsc/pkg/fourslash/tests/autoImportIndexReExportPrefix_test.go index c0934f80dc42d..a6052d17ec445 100644 --- a/tsc/internal/fourslash/tests/autoImportIndexReExportPrefix_test.go +++ b/tsc/pkg/fourslash/tests/autoImportIndexReExportPrefix_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportIndexReExportPrefix(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportJsDocImport1_test.go b/tsc/pkg/fourslash/tests/autoImportJsDocImport1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportJsDocImport1_test.go rename to tsc/pkg/fourslash/tests/autoImportJsDocImport1_test.go index 4f6dfbab94058..2a9479a459cc3 100644 --- a/tsc/internal/fourslash/tests/autoImportJsDocImport1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportJsDocImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportJsDocImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportModuleAugmentation_test.go b/tsc/pkg/fourslash/tests/autoImportModuleAugmentation_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportModuleAugmentation_test.go rename to tsc/pkg/fourslash/tests/autoImportModuleAugmentation_test.go index 9e41a2058839f..71855412c321f 100644 --- a/tsc/internal/fourslash/tests/autoImportModuleAugmentation_test.go +++ b/tsc/pkg/fourslash/tests/autoImportModuleAugmentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportModuleAugmentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportModuleNone2_test.go b/tsc/pkg/fourslash/tests/autoImportModuleNone2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/autoImportModuleNone2_test.go rename to tsc/pkg/fourslash/tests/autoImportModuleNone2_test.go index 431fea1e5f50b..adb96f7136ce3 100644 --- a/tsc/internal/fourslash/tests/autoImportModuleNone2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportModuleNone2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportModuleNone2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNewLine_test.go b/tsc/pkg/fourslash/tests/autoImportNewLine_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportNewLine_test.go rename to tsc/pkg/fourslash/tests/autoImportNewLine_test.go index b28ea993ccebf..0455cf432b7d7 100644 --- a/tsc/internal/fourslash/tests/autoImportNewLine_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNewLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportNewLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNoPackageJson_commonjs_test.go b/tsc/pkg/fourslash/tests/autoImportNoPackageJson_commonjs_test.go similarity index 73% rename from tsc/internal/fourslash/tests/autoImportNoPackageJson_commonjs_test.go rename to tsc/pkg/fourslash/tests/autoImportNoPackageJson_commonjs_test.go index ce770717ea228..059b61bc99dc2 100644 --- a/tsc/internal/fourslash/tests/autoImportNoPackageJson_commonjs_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNoPackageJson_commonjs_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportNoPackageJson_commonjs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNoPackageJson_nodenext_test.go b/tsc/pkg/fourslash/tests/autoImportNoPackageJson_nodenext_test.go similarity index 73% rename from tsc/internal/fourslash/tests/autoImportNoPackageJson_nodenext_test.go rename to tsc/pkg/fourslash/tests/autoImportNoPackageJson_nodenext_test.go index e73bb1b23612d..5586d891a5e7d 100644 --- a/tsc/internal/fourslash/tests/autoImportNoPackageJson_nodenext_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNoPackageJson_nodenext_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportNoPackageJson_nodenext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNodeBuiltinNodenext_test.go b/tsc/pkg/fourslash/tests/autoImportNodeBuiltinNodenext_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportNodeBuiltinNodenext_test.go rename to tsc/pkg/fourslash/tests/autoImportNodeBuiltinNodenext_test.go index 757f0f4954f13..43f98235e52fc 100644 --- a/tsc/internal/fourslash/tests/autoImportNodeBuiltinNodenext_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNodeBuiltinNodenext_test.go @@ -3,15 +3,15 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportNodeBuiltinNodenext is a regression test for -// https://github.com/microsoft/TypeScript/tsc/issues/2555, where auto-imports +// https://github.com/frida/TypeScript/tsc/issues/2555, where auto-imports // for Node.js built-in modules (e.g. "fs") were not appearing when using // module: nodenext and types: ["node"]. func TestAutoImportNodeBuiltinNodenext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go b/tsc/pkg/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go similarity index 94% rename from tsc/internal/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go rename to tsc/pkg/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go index cee173987caf2..c07f7689868e7 100644 --- a/tsc/internal/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNodeModuleSymlinkRenamed_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportNodeModuleSymlinkRenamed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportNodeNextJSRequire_test.go b/tsc/pkg/fourslash/tests/autoImportNodeNextJSRequire_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportNodeNextJSRequire_test.go rename to tsc/pkg/fourslash/tests/autoImportNodeNextJSRequire_test.go index 5f9cd8f2e86b8..4cbb49eca8535 100644 --- a/tsc/internal/fourslash/tests/autoImportNodeNextJSRequire_test.go +++ b/tsc/pkg/fourslash/tests/autoImportNodeNextJSRequire_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportNodeNextJSRequire(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go index ab20adc2161d7..c81780a5f6b9a 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonExportsSpecifierEndsInTs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonExportsSpecifierEndsInTs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go index 02c7f6a04f1b3..0f24567d1d83f 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonFilterExistingImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go index d9a6efbe1435a..1f980b46cee6a 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonFilterExistingImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonFilterExistingImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go index 4758b8a8125be..2a0669994e28b 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsCaseSensitivity_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsCaseSensitivity(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsConditions_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsConditions_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsConditions_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsConditions_test.go index 9a347a10bcf15..35fbbb13a5307 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsConditions_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsConditions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsConditions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go similarity index 91% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go index 5581ba4b305a9..ae2f38151372f 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsHashSlash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsHashSlashNodenext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength1_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength1_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength1_test.go index 87f80b7aaa539..d1b21b87f0149 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsLength1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength2_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength2_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength2_test.go index 632631715f3ad..ae3bbaff0a9c7 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsLength2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsLength2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsLength2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go index 094d0eee71ecc..2b5fcf836d0c2 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go index 0802dd1b1d91d..10beffb91f558 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_js_ts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern_js_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_test.go index 87ffcb4c02c26..9c8a7b62cbfb6 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go index 1a5de8276d66c..67c7725aad82f 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern_ts_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go index c6d2af5f4b4b7..502eeb814f48d 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go index 4662710a0476b..f2bee4ac093bc 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPattern_ts_ts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPattern_ts_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go index 7ebf3161cd3bc..220f384c9fd22 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPreference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go index 4da57a64f00e6..387000121ce47 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPreference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go index 510b38512a755..066ee495c7812 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImportsPreference3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImportsPreference3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go index 6addccbc8b9dd..a7c3685ad2917 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImports_capsInPath1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go index 689a5c7b2fbc3..978c591991a79 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_capsInPath2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImports_capsInPath2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_js_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImports_js_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImports_js_test.go index a7fe6214c31e0..c9ad29c16eb71 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_js_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImports_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_ts_test.go b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_ts_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPackageJsonImports_ts_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageJsonImports_ts_test.go index 8774294350b13..132d30d5a8e06 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageJsonImports_ts_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageJsonImports_ts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageJsonImports_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageRootPathExtension_test.go b/tsc/pkg/fourslash/tests/autoImportPackageRootPathExtension_test.go similarity index 77% rename from tsc/internal/fourslash/tests/autoImportPackageRootPathExtension_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageRootPathExtension_test.go index e8d9a7b69f6fe..57539b6b84c72 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageRootPathExtension_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageRootPathExtension_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageRootPathExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageRootPathTypeModule_test.go b/tsc/pkg/fourslash/tests/autoImportPackageRootPathTypeModule_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportPackageRootPathTypeModule_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageRootPathTypeModule_test.go index 42c0eafd5acfa..3f809dfae86c1 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageRootPathTypeModule_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageRootPathTypeModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageRootPathTypeModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPackageRootPath_test.go b/tsc/pkg/fourslash/tests/autoImportPackageRootPath_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportPackageRootPath_test.go rename to tsc/pkg/fourslash/tests/autoImportPackageRootPath_test.go index f1f175a208ed1..647d677bc09de 100644 --- a/tsc/internal/fourslash/tests/autoImportPackageRootPath_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPackageRootPath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPackageRootPath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go b/tsc/pkg/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go rename to tsc/pkg/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go index 7410cb7247d39..d2c830ada5780 100644 --- a/tsc/internal/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPathsAliasesAndBarrels_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPathsAliasesAndBarrels(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPathsConfigDir_test.go b/tsc/pkg/fourslash/tests/autoImportPathsConfigDir_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportPathsConfigDir_test.go rename to tsc/pkg/fourslash/tests/autoImportPathsConfigDir_test.go index 2a3f152d1fe73..3754ff124b737 100644 --- a/tsc/internal/fourslash/tests/autoImportPathsConfigDir_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPathsConfigDir_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPathsConfigDir(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPathsNodeModules_test.go b/tsc/pkg/fourslash/tests/autoImportPathsNodeModules_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportPathsNodeModules_test.go rename to tsc/pkg/fourslash/tests/autoImportPathsNodeModules_test.go index 30c23ecd3128f..64555cf9f9c27 100644 --- a/tsc/internal/fourslash/tests/autoImportPathsNodeModules_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPathsNodeModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPathsNodeModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPaths_test.go b/tsc/pkg/fourslash/tests/autoImportPaths_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportPaths_test.go rename to tsc/pkg/fourslash/tests/autoImportPaths_test.go index a544b485c15a8..a13c815ffba70 100644 --- a/tsc/internal/fourslash/tests/autoImportPaths_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPaths_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPaths(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportPatternAmbientModule_test.go b/tsc/pkg/fourslash/tests/autoImportPatternAmbientModule_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportPatternAmbientModule_test.go rename to tsc/pkg/fourslash/tests/autoImportPatternAmbientModule_test.go index 1ac46508c0f30..8252a59345c90 100644 --- a/tsc/internal/fourslash/tests/autoImportPatternAmbientModule_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPatternAmbientModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Auto-imports ignore merged pattern ambient modules. diff --git a/tsc/internal/fourslash/tests/autoImportPnpm_test.go b/tsc/pkg/fourslash/tests/autoImportPnpm_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportPnpm_test.go rename to tsc/pkg/fourslash/tests/autoImportPnpm_test.go index aba670d54803b..8954037cd7f99 100644 --- a/tsc/internal/fourslash/tests/autoImportPnpm_test.go +++ b/tsc/pkg/fourslash/tests/autoImportPnpm_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportPnpm(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider1_test.go b/tsc/pkg/fourslash/tests/autoImportProvider1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportProvider1_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider1_test.go index 5a358abe705d0..a21cfed7675c9 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider2_test.go b/tsc/pkg/fourslash/tests/autoImportProvider2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportProvider2_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider2_test.go index f3200d5d7fba8..d52407feaa2a0 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider4_test.go b/tsc/pkg/fourslash/tests/autoImportProvider4_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportProvider4_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider4_test.go index a461f9e0e59ee..475100d9360a7 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider5_test.go b/tsc/pkg/fourslash/tests/autoImportProvider5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportProvider5_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider5_test.go index 947b5c4e71aa8..4474ea84df583 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider5_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider6_test.go b/tsc/pkg/fourslash/tests/autoImportProvider6_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportProvider6_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider6_test.go index adb74b94cfbc1..e1fe33f27a4ef 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider6_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider7_test.go b/tsc/pkg/fourslash/tests/autoImportProvider7_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportProvider7_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider7_test.go index cc7b993c3ceff..8b111f0219cb5 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider7_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider8_test.go b/tsc/pkg/fourslash/tests/autoImportProvider8_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportProvider8_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider8_test.go index 9cf9f9e94b11d..d19f597b232cb 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider8_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider9_test.go b/tsc/pkg/fourslash/tests/autoImportProvider9_test.go similarity index 96% rename from tsc/internal/fourslash/tests/autoImportProvider9_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider9_test.go index b735d0c73606f..f66c84251c650 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider9_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap1_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap1_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap1_test.go index fea0ea264aa67..c6c305cbf31a3 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap2_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap2_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap2_test.go index d4616f30c04f6..131af59e57f95 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap3_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap3_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap3_test.go index c390beffc1e8e..13e055fb74496 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap4_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap4_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap4_test.go index 0e82b65aefb23..20d50d8802e88 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap5_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap5_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap5_test.go index 25e616f1a89ab..6da54842337cb 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap5_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap6_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap6_test.go similarity index 91% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap6_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap6_test.go index 439bab132ac6b..fc4fb1252046c 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap6_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap7_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap7_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap7_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap7_test.go index 15fc186f65798..17102e8df6043 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap7_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap8_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap8_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap8_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap8_test.go index f400bbb8d46bd..f217a02f87330 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap8_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_exportMap9_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap9_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportProvider_exportMap9_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_exportMap9_test.go index b85df6f8aef14..5fba634c27b1e 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_exportMap9_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_exportMap9_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_exportMap9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_globalTypingsCache_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_globalTypingsCache_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportProvider_globalTypingsCache_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_globalTypingsCache_test.go index 7d0126ac31a39..c24cd861d266f 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_globalTypingsCache_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_globalTypingsCache_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_globalTypingsCache(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_importsMap1_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportProvider_importsMap1_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_importsMap1_test.go index f21d6900efacc..0aa9de3b10166 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_importsMap1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_importsMap1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_importsMap2_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportProvider_importsMap2_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_importsMap2_test.go index e65c78e17819a..c0ae9f85730ef 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_importsMap2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_importsMap2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_importsMap3_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/autoImportProvider_importsMap3_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_importsMap3_test.go index 81badcf584c50..8c1a55ace30e1 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_importsMap3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_importsMap3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_importsMap4_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap4_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportProvider_importsMap4_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_importsMap4_test.go index 793422c4872ed..2bf35d703fd97 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_importsMap4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_importsMap4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_importsMap5_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/autoImportProvider_importsMap5_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_importsMap5_test.go index f6414957c6d5e..8fcc47dabdd41 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_importsMap5_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_importsMap5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_importsMap5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go index b827cd0bec76f..6fc59018ee5c6 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_namespaceSameNameAsIntrinsic_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_namespaceSameNameAsIntrinsic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_pnpm_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_pnpm_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportProvider_pnpm_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_pnpm_test.go index 9d66473026a58..68f30cdd09e83 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_pnpm_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_pnpm_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_pnpm(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_referencesCrash_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_referencesCrash_test.go similarity index 93% rename from tsc/internal/fourslash/tests/autoImportProvider_referencesCrash_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_referencesCrash_test.go index c45a84aec580c..9fe7cdf80f697 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_referencesCrash_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_referencesCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_referencesCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports1_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportProvider_wildcardExports1_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports1_test.go index b1999e2dabdb2..025361b4c907c 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_wildcardExports1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports2_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportProvider_wildcardExports2_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports2_test.go index 8eb9a3b460649..d266a908e895c 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_wildcardExports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports3_test.go b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportProvider_wildcardExports3_test.go rename to tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports3_test.go index 47d00228aaaa7..1577bf7b088eb 100644 --- a/tsc/internal/fourslash/tests/autoImportProvider_wildcardExports3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportProvider_wildcardExports3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportProvider_wildcardExports3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportQuoteDetection_test.go b/tsc/pkg/fourslash/tests/autoImportQuoteDetection_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportQuoteDetection_test.go rename to tsc/pkg/fourslash/tests/autoImportQuoteDetection_test.go index 47e576947ee46..e53b048998778 100644 --- a/tsc/internal/fourslash/tests/autoImportQuoteDetection_test.go +++ b/tsc/pkg/fourslash/tests/autoImportQuoteDetection_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportQuoteDetection(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportReExportFromAmbientModule_test.go b/tsc/pkg/fourslash/tests/autoImportReExportFromAmbientModule_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportReExportFromAmbientModule_test.go rename to tsc/pkg/fourslash/tests/autoImportReExportFromAmbientModule_test.go index ed96a5595c4db..fc0ba5c5f4abb 100644 --- a/tsc/internal/fourslash/tests/autoImportReExportFromAmbientModule_test.go +++ b/tsc/pkg/fourslash/tests/autoImportReExportFromAmbientModule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportReExportFromAmbientModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go b/tsc/pkg/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go rename to tsc/pkg/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go index 4f36359566a69..1e47b026a4c68 100644 --- a/tsc/internal/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go +++ b/tsc/pkg/fourslash/tests/autoImportReexportOfCrossPackageAugmentation_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportReexportOfCrossPackageAugmentation verifies no crash when auto-importing diff --git a/tsc/internal/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go b/tsc/pkg/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go rename to tsc/pkg/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go index de205b3d2f95f..702b555a8b1f8 100644 --- a/tsc/internal/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go +++ b/tsc/pkg/fourslash/tests/autoImportRelativePathToMonorepoPackage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportRelativePathToMonorepoPackage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportRootDirs_test.go b/tsc/pkg/fourslash/tests/autoImportRootDirs_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportRootDirs_test.go rename to tsc/pkg/fourslash/tests/autoImportRootDirs_test.go index 0e6350ad669fb..7821520690ce2 100644 --- a/tsc/internal/fourslash/tests/autoImportRootDirs_test.go +++ b/tsc/pkg/fourslash/tests/autoImportRootDirs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportRootDirs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSameNameDefaultExported_test.go b/tsc/pkg/fourslash/tests/autoImportSameNameDefaultExported_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportSameNameDefaultExported_test.go rename to tsc/pkg/fourslash/tests/autoImportSameNameDefaultExported_test.go index 8556652bd465e..2081dab9f3049 100644 --- a/tsc/internal/fourslash/tests/autoImportSameNameDefaultExported_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSameNameDefaultExported_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSameNameDefaultExported(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSortCaseSensitivity1_test.go b/tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportSortCaseSensitivity1_test.go rename to tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity1_test.go index b2981238aa055..74c1afd66dd5a 100644 --- a/tsc/internal/fourslash/tests/autoImportSortCaseSensitivity1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSortCaseSensitivity1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSortCaseSensitivity2_test.go b/tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportSortCaseSensitivity2_test.go rename to tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity2_test.go index 91b70c5fbf6b5..ae2e57d2d0f22 100644 --- a/tsc/internal/fourslash/tests/autoImportSortCaseSensitivity2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSortCaseSensitivity2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSortCaseSensitivity2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go rename to tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go index 38fc14f7bc5b0..b18ba7079862d 100644 --- a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSpecifierExcludeRegexes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go rename to tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go index ec2773d3162a1..02735b2259ea8 100644 --- a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSpecifierExcludeRegexes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go rename to tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go index d72aa9649c848..e54a1a1548574 100644 --- a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSpecifierExcludeRegexes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go rename to tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go index 503b8bf9f6c22..df6324a3ea596 100644 --- a/tsc/internal/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSpecifierExcludeRegexes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSpecifierExcludeRegexes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkCaseSensitive_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkCaseSensitive_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportSymlinkCaseSensitive_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkCaseSensitive_test.go index 21f46c4d41c02..1447c09247c46 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkCaseSensitive_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkCaseSensitive_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportSymlinkCaseSensitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go similarity index 96% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go index 1697a366f654a..8a25ed0b93bba 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoGranularUpdate_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportSymlinkedMonorepoGranularUpdate verifies that when a file in a symlinked diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go index c4f8c7bc2544b..55c0639335b33 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferencesNoPkgExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportSymlinkedMonorepoProjectReferencesNoPkgExports verifies deduplication diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go index 1316e569fb66a..1cd7c1f387ce4 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoProjectReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportSymlinkedMonorepoProjectReferences verifies that when a monorepo package diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go index d5888e2dd70fd..3a425a7315815 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoReexport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportSymlinkedMonorepoReexport verifies deduplication when a monorepo diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go index 1f6b50bce1496..bfe1c56e9afec 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepoSourceUpdate_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) const TestAutoImportSymlinkedMonorepoSourceUpdateScenario = ` diff --git a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepo_test.go b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepo_test.go similarity index 93% rename from tsc/internal/fourslash/tests/autoImportSymlinkedMonorepo_test.go rename to tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepo_test.go index 003c02fa5c56d..1bb1652345b67 100644 --- a/tsc/internal/fourslash/tests/autoImportSymlinkedMonorepo_test.go +++ b/tsc/pkg/fourslash/tests/autoImportSymlinkedMonorepo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestAutoImportSymlinkedMonorepo verifies that when a monorepo package is symlinked diff --git a/tsc/internal/fourslash/tests/autoImportTransitiveLeak_test.go b/tsc/pkg/fourslash/tests/autoImportTransitiveLeak_test.go similarity index 90% rename from tsc/internal/fourslash/tests/autoImportTransitiveLeak_test.go rename to tsc/pkg/fourslash/tests/autoImportTransitiveLeak_test.go index 46cd3d9906ce7..66a80fefeaae7 100644 --- a/tsc/internal/fourslash/tests/autoImportTransitiveLeak_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTransitiveLeak_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) const TestAutoImportTransitiveLeakScenario = ` diff --git a/tsc/internal/fourslash/tests/autoImportTypeImport1_test.go b/tsc/pkg/fourslash/tests/autoImportTypeImport1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportTypeImport1_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeImport1_test.go index 55a74ab9b6e8c..88ad51fda6728 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeImport1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeImport1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeImport2_test.go b/tsc/pkg/fourslash/tests/autoImportTypeImport2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportTypeImport2_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeImport2_test.go index 63bc993329a56..01d2e6a98520d 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeImport2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeImport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeImport3_test.go b/tsc/pkg/fourslash/tests/autoImportTypeImport3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportTypeImport3_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeImport3_test.go index f9886eafb8711..b0a6f5d7f90d7 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeImport3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeImport3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeImport4_test.go b/tsc/pkg/fourslash/tests/autoImportTypeImport4_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportTypeImport4_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeImport4_test.go index ef3d664ec32f5..09dfc524707a3 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeImport4_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeImport4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeImport5_test.go b/tsc/pkg/fourslash/tests/autoImportTypeImport5_test.go similarity index 95% rename from tsc/internal/fourslash/tests/autoImportTypeImport5_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeImport5_test.go index 37629787af215..3610417b384c2 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeImport5_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeImport5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeImport5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred1_test.go b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred1_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred1_test.go index 94d0b9d97ca47..2c355f303aeea 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeOnlyPreferred1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred2_test.go b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred2_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred2_test.go index 8feb896141734..409cbc9eaa6df 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred2_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeOnlyPreferred2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred3_test.go b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred3_test.go rename to tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred3_test.go index f0679c4183891..3ca39b7c55364 100644 --- a/tsc/internal/fourslash/tests/autoImportTypeOnlyPreferred3_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypeOnlyPreferred3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypeOnlyPreferred3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportTypedefMissingName_test.go b/tsc/pkg/fourslash/tests/autoImportTypedefMissingName_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportTypedefMissingName_test.go rename to tsc/pkg/fourslash/tests/autoImportTypedefMissingName_test.go index 017fb98d76a8b..b22dc2abf4019 100644 --- a/tsc/internal/fourslash/tests/autoImportTypedefMissingName_test.go +++ b/tsc/pkg/fourslash/tests/autoImportTypedefMissingName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportTypedefMissingName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportVerbatimTypeOnly1_test.go b/tsc/pkg/fourslash/tests/autoImportVerbatimTypeOnly1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/autoImportVerbatimTypeOnly1_test.go rename to tsc/pkg/fourslash/tests/autoImportVerbatimTypeOnly1_test.go index 566ead2e5daf6..909c3ccf9a96f 100644 --- a/tsc/internal/fourslash/tests/autoImportVerbatimTypeOnly1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportVerbatimTypeOnly1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportVerbatimTypeOnly1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImport_node12_node_modules1_test.go b/tsc/pkg/fourslash/tests/autoImport_node12_node_modules1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImport_node12_node_modules1_test.go rename to tsc/pkg/fourslash/tests/autoImport_node12_node_modules1_test.go index 63f5c9cac8905..f4f39cbbb488d 100644 --- a/tsc/internal/fourslash/tests/autoImport_node12_node_modules1_test.go +++ b/tsc/pkg/fourslash/tests/autoImport_node12_node_modules1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImport_node12_node_modules1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportsCustomConditions_test.go b/tsc/pkg/fourslash/tests/autoImportsCustomConditions_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportsCustomConditions_test.go rename to tsc/pkg/fourslash/tests/autoImportsCustomConditions_test.go index 790190ea86210..a065b14fc9371 100644 --- a/tsc/internal/fourslash/tests/autoImportsCustomConditions_test.go +++ b/tsc/pkg/fourslash/tests/autoImportsCustomConditions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportsCustomConditions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportsNodeNext1_test.go b/tsc/pkg/fourslash/tests/autoImportsNodeNext1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/autoImportsNodeNext1_test.go rename to tsc/pkg/fourslash/tests/autoImportsNodeNext1_test.go index 75c8f9aaf2af1..6756400b1532d 100644 --- a/tsc/internal/fourslash/tests/autoImportsNodeNext1_test.go +++ b/tsc/pkg/fourslash/tests/autoImportsNodeNext1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportsNodeNext1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go b/tsc/pkg/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go rename to tsc/pkg/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go index c44b0e72d1e90..3e2d14b8103ed 100644 --- a/tsc/internal/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go +++ b/tsc/pkg/fourslash/tests/autoImportsWithRootDirsAndRootedPath01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutoImportsWithRootDirsAndRootedPath01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/automaticConstructorToggling_test.go b/tsc/pkg/fourslash/tests/automaticConstructorToggling_test.go similarity index 93% rename from tsc/internal/fourslash/tests/automaticConstructorToggling_test.go rename to tsc/pkg/fourslash/tests/automaticConstructorToggling_test.go index c4a57837da4e7..5ef4eb9d272c2 100644 --- a/tsc/internal/fourslash/tests/automaticConstructorToggling_test.go +++ b/tsc/pkg/fourslash/tests/automaticConstructorToggling_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAutomaticConstructorToggling(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicBackspace_test.go b/tsc/pkg/fourslash/tests/basicBackspace_test.go similarity index 84% rename from tsc/internal/fourslash/tests/basicBackspace_test.go rename to tsc/pkg/fourslash/tests/basicBackspace_test.go index 3ace9de2c423d..68b0a983242e7 100644 --- a/tsc/internal/fourslash/tests/basicBackspace_test.go +++ b/tsc/pkg/fourslash/tests/basicBackspace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicBackspace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicClassElementKeywords_test.go b/tsc/pkg/fourslash/tests/basicClassElementKeywords_test.go similarity index 75% rename from tsc/internal/fourslash/tests/basicClassElementKeywords_test.go rename to tsc/pkg/fourslash/tests/basicClassElementKeywords_test.go index 7a679e004bca5..a5de49431acf4 100644 --- a/tsc/internal/fourslash/tests/basicClassElementKeywords_test.go +++ b/tsc/pkg/fourslash/tests/basicClassElementKeywords_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicClassElementKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicClassMembers_test.go b/tsc/pkg/fourslash/tests/basicClassMembers_test.go similarity index 81% rename from tsc/internal/fourslash/tests/basicClassMembers_test.go rename to tsc/pkg/fourslash/tests/basicClassMembers_test.go index f88b16e97dc9d..2dff79e136b57 100644 --- a/tsc/internal/fourslash/tests/basicClassMembers_test.go +++ b/tsc/pkg/fourslash/tests/basicClassMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicClassMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicEdit_test.go b/tsc/pkg/fourslash/tests/basicEdit_test.go similarity index 74% rename from tsc/internal/fourslash/tests/basicEdit_test.go rename to tsc/pkg/fourslash/tests/basicEdit_test.go index a52d5713b8325..4c4476a535a2f 100644 --- a/tsc/internal/fourslash/tests/basicEdit_test.go +++ b/tsc/pkg/fourslash/tests/basicEdit_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicGlobalCompletions_test.go b/tsc/pkg/fourslash/tests/basicGlobalCompletions_test.go similarity index 75% rename from tsc/internal/fourslash/tests/basicGlobalCompletions_test.go rename to tsc/pkg/fourslash/tests/basicGlobalCompletions_test.go index b495f09e8082c..c7b037c8cfb7f 100644 --- a/tsc/internal/fourslash/tests/basicGlobalCompletions_test.go +++ b/tsc/pkg/fourslash/tests/basicGlobalCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicGlobalCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicInterfaceMembers_test.go b/tsc/pkg/fourslash/tests/basicInterfaceMembers_test.go similarity index 73% rename from tsc/internal/fourslash/tests/basicInterfaceMembers_test.go rename to tsc/pkg/fourslash/tests/basicInterfaceMembers_test.go index c79005055b707..5f419b6aa1aba 100644 --- a/tsc/internal/fourslash/tests/basicInterfaceMembers_test.go +++ b/tsc/pkg/fourslash/tests/basicInterfaceMembers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicInterfaceMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicJSDocCompletions_test.go b/tsc/pkg/fourslash/tests/basicJSDocCompletions_test.go similarity index 91% rename from tsc/internal/fourslash/tests/basicJSDocCompletions_test.go rename to tsc/pkg/fourslash/tests/basicJSDocCompletions_test.go index 8c9a3eed4de50..bde04428fb353 100644 --- a/tsc/internal/fourslash/tests/basicJSDocCompletions_test.go +++ b/tsc/pkg/fourslash/tests/basicJSDocCompletions_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicJSDocCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicMultifileCompletions_test.go b/tsc/pkg/fourslash/tests/basicMultifileCompletions_test.go similarity index 74% rename from tsc/internal/fourslash/tests/basicMultifileCompletions_test.go rename to tsc/pkg/fourslash/tests/basicMultifileCompletions_test.go index f63f6c4048448..ade7a862352ff 100644 --- a/tsc/internal/fourslash/tests/basicMultifileCompletions_test.go +++ b/tsc/pkg/fourslash/tests/basicMultifileCompletions_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicMultifileCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicQuickInfo_test.go b/tsc/pkg/fourslash/tests/basicQuickInfo_test.go similarity index 83% rename from tsc/internal/fourslash/tests/basicQuickInfo_test.go rename to tsc/pkg/fourslash/tests/basicQuickInfo_test.go index a421ae22f1500..1de9337985170 100644 --- a/tsc/internal/fourslash/tests/basicQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/basicQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/basicReplaceLine_test.go b/tsc/pkg/fourslash/tests/basicReplaceLine_test.go similarity index 85% rename from tsc/internal/fourslash/tests/basicReplaceLine_test.go rename to tsc/pkg/fourslash/tests/basicReplaceLine_test.go index d95c77931df5c..e595483d40a19 100644 --- a/tsc/internal/fourslash/tests/basicReplaceLine_test.go +++ b/tsc/pkg/fourslash/tests/basicReplaceLine_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBasicReplaceLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals1_test.go b/tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals1_test.go rename to tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals1_test.go index 347c59bd434f3..7710aee53902d 100644 --- a/tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals1_test.go +++ b/tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBestCommonTypeObjectLiterals1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals_test.go b/tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals_test.go similarity index 90% rename from tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals_test.go rename to tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals_test.go index 65c74f0e94c85..bf0ef2cd32945 100644 --- a/tsc/internal/fourslash/tests/bestCommonTypeObjectLiterals_test.go +++ b/tsc/pkg/fourslash/tests/bestCommonTypeObjectLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestBestCommonTypeObjectLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAccessor_test.go b/tsc/pkg/fourslash/tests/callHierarchyAccessor_test.go similarity index 79% rename from tsc/internal/fourslash/tests/callHierarchyAccessor_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAccessor_test.go index e234674d640ba..3fdb9fcb71cb6 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAccessor_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAccessor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAccessor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go index 7951f28c449a4..93eb8aae05bd7 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousClassNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go index 760addbc4d618..cae603a55cef8 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousClassNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go index 6cec13ef4bf96..a0ecef0f9245c 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousClassNoCrash3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousClassNoCrash3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go index 5022256c06209..f885a6cb2cc3b 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousFunctionNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go index 2a798fd3c974e..a6ad92cd7b897 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousFunctionNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go rename to tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go index ff70b6889c17d..9ebe4430e5f41 100644 --- a/tsc/internal/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyAnonymousFunctionNoCrash3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAnonymousFunctionNoCrash3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go b/tsc/pkg/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go index 353f82e1f7aa4..df76c465f8f9c 100644 --- a/tsc/internal/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyCallExpressionByConstNamedFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyCallExpressionByConstNamedFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go b/tsc/pkg/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go similarity index 79% rename from tsc/internal/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go rename to tsc/pkg/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go index c202f65f3a1d5..5fe359d89fff3 100644 --- a/tsc/internal/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyClassPropertyArrowFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyClassPropertyArrowFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyClassStaticBlock2_test.go b/tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/callHierarchyClassStaticBlock2_test.go rename to tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock2_test.go index 41ae4a207c2c9..17970b0680060 100644 --- a/tsc/internal/fourslash/tests/callHierarchyClassStaticBlock2_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyClassStaticBlock2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyClassStaticBlock_test.go b/tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock_test.go similarity index 83% rename from tsc/internal/fourslash/tests/callHierarchyClassStaticBlock_test.go rename to tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock_test.go index b7c13d925921d..6aa2a69682bf9 100644 --- a/tsc/internal/fourslash/tests/callHierarchyClassStaticBlock_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyClassStaticBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyClassStaticBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyClass_test.go b/tsc/pkg/fourslash/tests/callHierarchyClass_test.go similarity index 78% rename from tsc/internal/fourslash/tests/callHierarchyClass_test.go rename to tsc/pkg/fourslash/tests/callHierarchyClass_test.go index 304e16939f668..df7de022ff8c2 100644 --- a/tsc/internal/fourslash/tests/callHierarchyClass_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go b/tsc/pkg/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go similarity index 78% rename from tsc/internal/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go rename to tsc/pkg/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go index 4430f9c290b48..efc40e8d9204f 100644 --- a/tsc/internal/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyConstNamedArrowFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyConstNamedArrowFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyConstNamedClassExpression_test.go b/tsc/pkg/fourslash/tests/callHierarchyConstNamedClassExpression_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyConstNamedClassExpression_test.go rename to tsc/pkg/fourslash/tests/callHierarchyConstNamedClassExpression_test.go index 938c8ce93081b..02f3bb17cd001 100644 --- a/tsc/internal/fourslash/tests/callHierarchyConstNamedClassExpression_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyConstNamedClassExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyConstNamedClassExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go b/tsc/pkg/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go similarity index 79% rename from tsc/internal/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go index b5fd9dc3698a4..3edff640fba58 100644 --- a/tsc/internal/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyConstNamedFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyConstNamedFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyContainerNameServer_test.go b/tsc/pkg/fourslash/tests/callHierarchyContainerNameServer_test.go similarity index 87% rename from tsc/internal/fourslash/tests/callHierarchyContainerNameServer_test.go rename to tsc/pkg/fourslash/tests/callHierarchyContainerNameServer_test.go index 3a3247630ee8e..5a0e6808b4aaf 100644 --- a/tsc/internal/fourslash/tests/callHierarchyContainerNameServer_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyContainerNameServer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyContainerNameServer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyContainerName_test.go b/tsc/pkg/fourslash/tests/callHierarchyContainerName_test.go similarity index 86% rename from tsc/internal/fourslash/tests/callHierarchyContainerName_test.go rename to tsc/pkg/fourslash/tests/callHierarchyContainerName_test.go index c4013f7882880..c05c0e5ca822a 100644 --- a/tsc/internal/fourslash/tests/callHierarchyContainerName_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyContainerName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyContainerName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyCrossFile_test.go b/tsc/pkg/fourslash/tests/callHierarchyCrossFile_test.go similarity index 85% rename from tsc/internal/fourslash/tests/callHierarchyCrossFile_test.go rename to tsc/pkg/fourslash/tests/callHierarchyCrossFile_test.go index 5744e74eaa130..dcc06ddca2f47 100644 --- a/tsc/internal/fourslash/tests/callHierarchyCrossFile_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyCrossFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyCrossFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyDecorator_test.go b/tsc/pkg/fourslash/tests/callHierarchyDecorator_test.go similarity index 79% rename from tsc/internal/fourslash/tests/callHierarchyDecorator_test.go rename to tsc/pkg/fourslash/tests/callHierarchyDecorator_test.go index 66b9fafb5af8c..f0432036f3b67 100644 --- a/tsc/internal/fourslash/tests/callHierarchyDecorator_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyDecorator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyDecorator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyExportDefaultClass_test.go b/tsc/pkg/fourslash/tests/callHierarchyExportDefaultClass_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyExportDefaultClass_test.go rename to tsc/pkg/fourslash/tests/callHierarchyExportDefaultClass_test.go index 3a537bbc88e73..193f1a6eb45a0 100644 --- a/tsc/internal/fourslash/tests/callHierarchyExportDefaultClass_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyExportDefaultClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyExportDefaultClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyExportDefaultFunction_test.go b/tsc/pkg/fourslash/tests/callHierarchyExportDefaultFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/callHierarchyExportDefaultFunction_test.go rename to tsc/pkg/fourslash/tests/callHierarchyExportDefaultFunction_test.go index ddc12afb34d17..195e0050352c9 100644 --- a/tsc/internal/fourslash/tests/callHierarchyExportDefaultFunction_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyExportDefaultFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyExportDefaultFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyExportEqualsFunction_test.go b/tsc/pkg/fourslash/tests/callHierarchyExportEqualsFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/callHierarchyExportEqualsFunction_test.go rename to tsc/pkg/fourslash/tests/callHierarchyExportEqualsFunction_test.go index 257bfa9c6ae5b..f8f006677cdd8 100644 --- a/tsc/internal/fourslash/tests/callHierarchyExportEqualsFunction_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyExportEqualsFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyExportEqualsFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFile_test.go b/tsc/pkg/fourslash/tests/callHierarchyFile_test.go similarity index 75% rename from tsc/internal/fourslash/tests/callHierarchyFile_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFile_test.go index b2e6d4a57614d..eee22918548a6 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFile_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go index 657d4f1076cfd..d131408346218 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunctionAmbiguity1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go index 914be087baf20..7f9f1c3784852 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunctionAmbiguity2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go index 3f88ea69faf90..2e5d152db9fbe 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunctionAmbiguity3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go index 2f9c867249788..93828740d8b1a 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunctionAmbiguity4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go index d0e3a4154756d..a7871cfa1cd34 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunctionAmbiguity5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunctionAmbiguity5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyFunction_test.go b/tsc/pkg/fourslash/tests/callHierarchyFunction_test.go similarity index 79% rename from tsc/internal/fourslash/tests/callHierarchyFunction_test.go rename to tsc/pkg/fourslash/tests/callHierarchyFunction_test.go index a49232370daef..5280391eca53e 100644 --- a/tsc/internal/fourslash/tests/callHierarchyFunction_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go b/tsc/pkg/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go rename to tsc/pkg/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go index e0d46aa468e25..de750a6c6bc78 100644 --- a/tsc/internal/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyInPropDeclarationOfExportedDefaultClass1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyInPropDeclarationOfExportedDefaultClass1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go similarity index 85% rename from tsc/internal/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go rename to tsc/pkg/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go index f8d0c6a50e3bd..39ab305236a7c 100644 --- a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsNoCrashArrayPush_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyIncomingCallsNoCrashArrayPush(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go rename to tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go index 5333baad7a637..7b14aa9599381 100644 --- a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyIncomingCallsObjectLiteralMethodInExpressionComputedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go similarity index 81% rename from tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go rename to tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go index 189293ef00907..f4cdf8b7732f4 100644 --- a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyIncomingCallsObjectLiteralMethodInIdentifierComputedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go rename to tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go index 4bd0051525c50..d8d2676b13ce0 100644 --- a/tsc/internal/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyIncomingCallsObjectLiteralMethodInStringLiteralComputedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyInterfaceMethod_test.go b/tsc/pkg/fourslash/tests/callHierarchyInterfaceMethod_test.go similarity index 78% rename from tsc/internal/fourslash/tests/callHierarchyInterfaceMethod_test.go rename to tsc/pkg/fourslash/tests/callHierarchyInterfaceMethod_test.go index 3917092b3507d..854f858303194 100644 --- a/tsc/internal/fourslash/tests/callHierarchyInterfaceMethod_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyInterfaceMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyInterfaceMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyJsxElement_test.go b/tsc/pkg/fourslash/tests/callHierarchyJsxElement_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyJsxElement_test.go rename to tsc/pkg/fourslash/tests/callHierarchyJsxElement_test.go index b0b6597db6921..f00ac19575932 100644 --- a/tsc/internal/fourslash/tests/callHierarchyJsxElement_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyJsxElement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyJsxElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyTaggedTemplate_test.go b/tsc/pkg/fourslash/tests/callHierarchyTaggedTemplate_test.go similarity index 80% rename from tsc/internal/fourslash/tests/callHierarchyTaggedTemplate_test.go rename to tsc/pkg/fourslash/tests/callHierarchyTaggedTemplate_test.go index 59afc427e141d..0c24cc03dd4da 100644 --- a/tsc/internal/fourslash/tests/callHierarchyTaggedTemplate_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyTaggedTemplate_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyTaggedTemplate(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go b/tsc/pkg/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go rename to tsc/pkg/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go index 285ea034747ba..6f072815add94 100644 --- a/tsc/internal/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/callHierarchyUnclosedTemplateExprNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyUnclosedTemplateExprNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/callSignatureHelp_test.go b/tsc/pkg/fourslash/tests/callSignatureHelp_test.go similarity index 78% rename from tsc/internal/fourslash/tests/callSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/callSignatureHelp_test.go index 3f2061c39f8bd..ad6a813848e79 100644 --- a/tsc/internal/fourslash/tests/callSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/callSignatureHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go b/tsc/pkg/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go similarity index 94% rename from tsc/internal/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go rename to tsc/pkg/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go index cf05be6b60cf6..e8f87a6abc246 100644 --- a/tsc/internal/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go +++ b/tsc/pkg/fourslash/tests/calledUnionsOfDissimilarTyeshaveGoodDisplay_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCalledUnionsOfDissimilarTyeshaveGoodDisplay(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/chainedFatArrowFormatting_test.go b/tsc/pkg/fourslash/tests/chainedFatArrowFormatting_test.go similarity index 78% rename from tsc/internal/fourslash/tests/chainedFatArrowFormatting_test.go rename to tsc/pkg/fourslash/tests/chainedFatArrowFormatting_test.go index 9a3128a5ce8ad..22faef3f03ccd 100644 --- a/tsc/internal/fourslash/tests/chainedFatArrowFormatting_test.go +++ b/tsc/pkg/fourslash/tests/chainedFatArrowFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestChainedFatArrowFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/chineseCharacterDisplay_test.go b/tsc/pkg/fourslash/tests/chineseCharacterDisplay_test.go similarity index 93% rename from tsc/internal/fourslash/tests/chineseCharacterDisplay_test.go rename to tsc/pkg/fourslash/tests/chineseCharacterDisplay_test.go index 1f8dd614556cb..994ef4f395478 100644 --- a/tsc/internal/fourslash/tests/chineseCharacterDisplay_test.go +++ b/tsc/pkg/fourslash/tests/chineseCharacterDisplay_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestChineseCharacterDisplayInHover(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/classExtendsInterfaceSigHelp1_test.go b/tsc/pkg/fourslash/tests/classExtendsInterfaceSigHelp1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/classExtendsInterfaceSigHelp1_test.go rename to tsc/pkg/fourslash/tests/classExtendsInterfaceSigHelp1_test.go index bbdcc0dd98a53..1669060b9696a 100644 --- a/tsc/internal/fourslash/tests/classExtendsInterfaceSigHelp1_test.go +++ b/tsc/pkg/fourslash/tests/classExtendsInterfaceSigHelp1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestClassExtendsInterfaceSigHelp1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/classInterfaceInsert_test.go b/tsc/pkg/fourslash/tests/classInterfaceInsert_test.go similarity index 84% rename from tsc/internal/fourslash/tests/classInterfaceInsert_test.go rename to tsc/pkg/fourslash/tests/classInterfaceInsert_test.go index 43d442d090774..be3c48e05101d 100644 --- a/tsc/internal/fourslash/tests/classInterfaceInsert_test.go +++ b/tsc/pkg/fourslash/tests/classInterfaceInsert_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestClassInterfaceInsert(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/classMemberCompletion_test.go b/tsc/pkg/fourslash/tests/classMemberCompletion_test.go similarity index 80% rename from tsc/internal/fourslash/tests/classMemberCompletion_test.go rename to tsc/pkg/fourslash/tests/classMemberCompletion_test.go index b81502989bcab..8d7e33c623f78 100644 --- a/tsc/internal/fourslash/tests/classMemberCompletion_test.go +++ b/tsc/pkg/fourslash/tests/classMemberCompletion_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestClassMemberCompletionKeepsNameFallback(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/cloduleAsBaseClass2_test.go b/tsc/pkg/fourslash/tests/cloduleAsBaseClass2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/cloduleAsBaseClass2_test.go rename to tsc/pkg/fourslash/tests/cloduleAsBaseClass2_test.go index 01da8a34c92c1..f685366732d31 100644 --- a/tsc/internal/fourslash/tests/cloduleAsBaseClass2_test.go +++ b/tsc/pkg/fourslash/tests/cloduleAsBaseClass2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCloduleAsBaseClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/cloduleAsBaseClass_test.go b/tsc/pkg/fourslash/tests/cloduleAsBaseClass_test.go similarity index 87% rename from tsc/internal/fourslash/tests/cloduleAsBaseClass_test.go rename to tsc/pkg/fourslash/tests/cloduleAsBaseClass_test.go index 3bdc677b42485..c2e1dabd11dd0 100644 --- a/tsc/internal/fourslash/tests/cloduleAsBaseClass_test.go +++ b/tsc/pkg/fourslash/tests/cloduleAsBaseClass_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCloduleAsBaseClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/cloduleTypeOf1_test.go b/tsc/pkg/fourslash/tests/cloduleTypeOf1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/cloduleTypeOf1_test.go rename to tsc/pkg/fourslash/tests/cloduleTypeOf1_test.go index 633fcd3e30ef1..7bd7f487ba23f 100644 --- a/tsc/internal/fourslash/tests/cloduleTypeOf1_test.go +++ b/tsc/pkg/fourslash/tests/cloduleTypeOf1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCloduleTypeOf1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/closedCommentsInConstructor_test.go b/tsc/pkg/fourslash/tests/closedCommentsInConstructor_test.go similarity index 75% rename from tsc/internal/fourslash/tests/closedCommentsInConstructor_test.go rename to tsc/pkg/fourslash/tests/closedCommentsInConstructor_test.go index bfa48e62e2c7c..c94b02834af2e 100644 --- a/tsc/internal/fourslash/tests/closedCommentsInConstructor_test.go +++ b/tsc/pkg/fourslash/tests/closedCommentsInConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestClosedCommentsInConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeCompletionEscaping_test.go b/tsc/pkg/fourslash/tests/codeCompletionEscaping_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeCompletionEscaping_test.go rename to tsc/pkg/fourslash/tests/codeCompletionEscaping_test.go index e14c1e42d8576..5d69549c3db8d 100644 --- a/tsc/internal/fourslash/tests/codeCompletionEscaping_test.go +++ b/tsc/pkg/fourslash/tests/codeCompletionEscaping_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeCompletionEscaping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go b/tsc/pkg/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go rename to tsc/pkg/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go index d11dd0edc469a..2f4e71a3d4e00 100644 --- a/tsc/internal/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddConvertToUnknownForNonOverlappingTypes9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddConvertToUnknownForNonOverlappingTypes9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes10_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes10_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixAddMissingAttributes10_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingAttributes10_test.go index a6932a4fd605d..46d9a17b0d061 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes10_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingAttributes10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes5_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixAddMissingAttributes5_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingAttributes5_test.go index 8060af4c7a9b0..769bfc0a26aba 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingAttributes5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes6_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes6_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixAddMissingAttributes6_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingAttributes6_test.go index 3d389911e22e1..9005d9cfb1c7e 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingAttributes6_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingAttributes6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingAttributes6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go index 3a93d4a126a3c..079d4298248b0 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingAwait_notAvailableWithoutPromise_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingAwait_notAvailableWithoutPromise(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go index 02fe7ceb6dda4..93ce2ce45ecd0 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingAwait_topLevel_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingAwait_topLevel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go index 91a33ee0e34a8..35fb9d39f0320 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingConstToArrayDestructuring3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingConstToArrayDestructuring3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go index f3270d234b163..b71df8b80dd56 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingConstToCommaSeparatedInitializer4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingConstToCommaSeparatedInitializer4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingEnumMember13_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingEnumMember13_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixAddMissingEnumMember13_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingEnumMember13_test.go index d2a2c9d290a40..02da64d9a028e 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingEnumMember13_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingEnumMember13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingEnumMember13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go index 96d5608579773..572ce2abd5aa3 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration16_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingFunctionDeclaration16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go index e0a8f3c6e11e5..1900c4c4bc28f 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration19_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingFunctionDeclaration19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go index ded9ebca76c7f..8764f498bcce2 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingFunctionDeclaration20_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingFunctionDeclaration20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go index 4bf432702d380..3c92c6d86b098 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingImportForReactJsx1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go index 8e15208b56b13..227edf5d46a23 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingImportForReactJsx2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingImportForReactJsx2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingMember21_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingMember21_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixAddMissingMember21_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingMember21_test.go index 3e904ad8c8dab..5e6c8f67c71b4 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingMember21_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingMember21_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingMember21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingMember8_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingMember8_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixAddMissingMember8_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingMember8_test.go index 7a476b7b44906..8a8c6568479e9 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingMember8_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingMember8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingMember8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddMissingParam15_test.go b/tsc/pkg/fourslash/tests/codeFixAddMissingParam15_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixAddMissingParam15_test.go rename to tsc/pkg/fourslash/tests/codeFixAddMissingParam15_test.go index feca0daf4fa19..7d834e4c53e24 100644 --- a/tsc/internal/fourslash/tests/codeFixAddMissingParam15_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddMissingParam15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddMissingParam15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddOptionalParam14_test.go b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam14_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixAddOptionalParam14_test.go rename to tsc/pkg/fourslash/tests/codeFixAddOptionalParam14_test.go index a07e218a93069..eac32ce65136a 100644 --- a/tsc/internal/fourslash/tests/codeFixAddOptionalParam14_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddOptionalParam14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddOptionalParam15_test.go b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam15_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixAddOptionalParam15_test.go rename to tsc/pkg/fourslash/tests/codeFixAddOptionalParam15_test.go index dc42361c91f78..3f6552a95a547 100644 --- a/tsc/internal/fourslash/tests/codeFixAddOptionalParam15_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddOptionalParam15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddOptionalParam18_test.go b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam18_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixAddOptionalParam18_test.go rename to tsc/pkg/fourslash/tests/codeFixAddOptionalParam18_test.go index 7287e4f7858f9..3d8003d9863f1 100644 --- a/tsc/internal/fourslash/tests/codeFixAddOptionalParam18_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddOptionalParam18_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddOptionalParam18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddParameterNames1_test.go b/tsc/pkg/fourslash/tests/codeFixAddParameterNames1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixAddParameterNames1_test.go rename to tsc/pkg/fourslash/tests/codeFixAddParameterNames1_test.go index dcb754e7bddff..bd1519af39cd1 100644 --- a/tsc/internal/fourslash/tests/codeFixAddParameterNames1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddParameterNames1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddParameterNames1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddParameterNames2_test.go b/tsc/pkg/fourslash/tests/codeFixAddParameterNames2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixAddParameterNames2_test.go rename to tsc/pkg/fourslash/tests/codeFixAddParameterNames2_test.go index 0c82cc413df54..1af0939333405 100644 --- a/tsc/internal/fourslash/tests/codeFixAddParameterNames2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddParameterNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddParameterNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddParameterNames3_test.go b/tsc/pkg/fourslash/tests/codeFixAddParameterNames3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixAddParameterNames3_test.go rename to tsc/pkg/fourslash/tests/codeFixAddParameterNames3_test.go index 8418bb5f6bc00..667a792ac7664 100644 --- a/tsc/internal/fourslash/tests/codeFixAddParameterNames3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddParameterNames3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddParameterNames3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddVoidToPromise5_test.go b/tsc/pkg/fourslash/tests/codeFixAddVoidToPromise5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixAddVoidToPromise5_test.go rename to tsc/pkg/fourslash/tests/codeFixAddVoidToPromise5_test.go index 4b06f44850ffb..d254d77d4d034 100644 --- a/tsc/internal/fourslash/tests/codeFixAddVoidToPromise5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddVoidToPromise5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddVoidToPromise5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go b/tsc/pkg/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go rename to tsc/pkg/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go index fc07f9eb4fcdc..40e2746331983 100644 --- a/tsc/internal/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAddVoidToPromiseJS5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAddVoidToPromiseJS5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go b/tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go rename to tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go index eaf0d400fc069..4721295efa467 100644 --- a/tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassAbstractGettersAndSetters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAmbientClassImplementClassAbstractGettersAndSetters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go b/tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go rename to tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go index 032f6012d41ad..7bb16d7f0a43a 100644 --- a/tsc/internal/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAmbientClassImplementClassMethodViaHeritage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAmbientClassImplementClassMethodViaHeritage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction3_test.go b/tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction3_test.go rename to tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction3_test.go index 62ff1d3a17259..346863411a8a7 100644 --- a/tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAwaitInSyncFunction3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction4_test.go b/tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction4_test.go rename to tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction4_test.go index 094ab5c48f91f..31f03f47abd4a 100644 --- a/tsc/internal/fourslash/tests/codeFixAwaitInSyncFunction4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAwaitInSyncFunction4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAwaitInSyncFunction4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go b/tsc/pkg/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go rename to tsc/pkg/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go index 34be1c977e727..6863966e351dd 100644 --- a/tsc/internal/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go +++ b/tsc/pkg/fourslash/tests/codeFixAwaitShouldNotCrashIfNotInFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixAwaitShouldNotCrashIfNotInFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go b/tsc/pkg/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go rename to tsc/pkg/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go index 96a4caccc5aff..38d08d9ef660f 100644 --- a/tsc/internal/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCannotFindModule_suggestion_falsePositive_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCannotFindModule_suggestion_falsePositive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go b/tsc/pkg/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go rename to tsc/pkg/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go index d648d77a22bb2..d704503558a98 100644 --- a/tsc/internal/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassExprClassImplementClassFunctionVoidInferred_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassExprClassImplementClassFunctionVoidInferred(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go b/tsc/pkg/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go rename to tsc/pkg/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go index 68f0048d850b1..af1615864783b 100644 --- a/tsc/internal/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassExtendAbstractPrivateProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassExtendAbstractPrivateProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go b/tsc/pkg/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go rename to tsc/pkg/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go index bead59835aa9f..7feea363e9161 100644 --- a/tsc/internal/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassExtendAbstractSomePropertiesPresent_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassExtendAbstractSomePropertiesPresent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go index 613295acdc2bb..97f307ae2e852 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassAbstractGettersAndSetters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassAbstractGettersAndSetters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go index b78a19a1193f2..fa843ff1c37bb 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassFunctionVoidInferred_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassFunctionVoidInferred(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go index fdd8bf7a98eba..64ddfb91d0cb8 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMemberAnonymousClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassMemberAnonymousClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go index b43413fa5b992..bf3124fa26c54 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMethodViaHeritage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassMethodViaHeritage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go index 55087da0f21d5..1cd7cc5106c60 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassMultipleSignatures1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go index 809b6f7aeb550..e13d83e5f5b3b 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassMultipleSignatures2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassMultipleSignatures2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go index eb4fdb1b8bd3a..548d209726af5 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyModifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassPropertyModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go index 865daec9e2a1c..d678fa6819ba5 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementClassPropertyTypeQuery_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementClassPropertyTypeQuery(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementDeepInheritance_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementDeepInheritance_test.go similarity index 93% rename from tsc/internal/fourslash/tests/codeFixClassImplementDeepInheritance_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementDeepInheritance_test.go index 83828aa4d18e0..d5bdc39aae4a8 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementDeepInheritance_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementDeepInheritance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementDeepInheritance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementDefaultClass_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementDefaultClass_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementDefaultClass_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementDefaultClass_test.go index aa2f1a2a039ea..8f3c9faac828f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementDefaultClass_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementDefaultClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementDefaultClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go index bee40b7dfdd35..b91cee9dfa365 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceArrayTuple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceArrayTuple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go index dd1b500dbf131..9601494a34d6a 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImportsReExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceAutoImportsReExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go index 59ed381628e1a..a7d06877ea99b 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceAutoImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go index 8d6701ff0e2d6..2ffbdd8222bea 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceAutoImports_typeOnly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceAutoImports_typeOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go index 99a5c4ef9462f..9d92d9d68b9d0 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceCallSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go similarity index 93% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go index e9d105666c168..5debece742cff 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceCallback_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceCallback(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go index aa40c5e9a612f..add95646046b8 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceClassExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceClassExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComments_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComments_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComments_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComments_test.go index 8d41260ed0af6..1a600bc5e9565 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComments_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go index e2b9401c9bec6..b30e705e6aaaf 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceComputedPropertyLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go index 8cdb3cb4881a3..9d33a9f07dac4 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceComputedPropertyNameWellKnownSymbols(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go index 7984366e1890b..5fa2fbb5d0ae3 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceConstructSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go index 29154f35b7e6c..173abc1516d32 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceConstructorName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go index 4371d9f1c0b14..875c69d0e6006 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceConstructorName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceConstructorName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go index 72e438556c80d..c12e5c96f3f60 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceDuplicateMember1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go index bacbb3f839859..b03e06d1e2276 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceDuplicateMember2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceDuplicateMember2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go index 7834cafc31aed..7c00cf269cb33 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyMultilineBody_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceEmptyMultilineBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go index d7063eb786136..f5e289210cb2c 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceEmptyTypeLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceEmptyTypeLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go index b8b3dff8863f7..0589f197c6dce 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceGlobal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceGlobal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go index be990aaa34fa9..de2a25df35243 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceHeritageClauseAlreadyHaveMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go index e282cdedc330d..852a18d0916ee 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceInNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go index 3ef3df88a8d0d..f4cbcf83a29ee 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesBoth_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceIndexSignaturesBoth(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go index 7ae940e75691c..1298907fe3609 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNoFix_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceIndexSignaturesNoFix(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go index 152e0e17351bc..8c8a3c9e39709 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesNumber_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceIndexSignaturesNumber(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go index 04d553abbfca9..a3d64cc92add1 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexSignaturesString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceIndexSignaturesString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go index f2c9d64bb65f6..4549049aebb11 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceIndexType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceIndexType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go index 0d2cf689c7631..16d49b60f75f7 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceInheritsAbstractMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceInheritsAbstractMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go index 7a9f334f34bc1..51059472a9fa0 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMappedType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go index 22bed95d6eb6d..ba31a1e432249 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMappedType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go index cb3af8049279d..340ec7317f5dc 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMappedTypeIndirectKeys_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMappedTypeIndirectKeys(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go index efe824f693e18..1834b95930dfb 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberNestedTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMemberNestedTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go index d22af6bbcd64b..d8edc55a4003d 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberOrdering_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMemberOrdering(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go index 9a0b52891c5c8..504446d77638d 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMemberTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMemberTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go index 813ca09f61f1d..7cdc8370f2c6f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodThisAndSelfReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMethodThisAndSelfReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go index 192331b32ce9d..58a1b021d64a6 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMethodTypePredicate_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMethodTypePredicate(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go index 8d859f83916b4..1e2056dd06e09 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleImplements1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go index 0fa57858b9859..e3d7b402a2c51 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplements2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleImplements2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go index 7b60e46b0e929..e8ad6eb4dc943 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleImplementsIntersection1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go index 0e98d0c5e8824..530cced3e16b9 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleImplementsIntersection2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleImplementsIntersection2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go index 5cbd1b4ec578e..fb5966c6ff103 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleMembersAndPunctuation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleMembersAndPunctuation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go index b0a00f2e7e94d..54b9f676ce215 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleSignaturesRest1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go index eb90f460a9e24..e9f1940174a22 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignaturesRest2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleSignaturesRest2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go index b60c5ba5e31d8..d0ecd9771c93d 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceMultipleSignatures_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceMultipleSignatures(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go index ddaf41e3cb3fc..050034e663442 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNamespaceConflict_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceNamespaceConflict(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go index 0fdb3358f1057..ab6cf0cf70c2a 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoBody_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceNoBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go similarity index 99% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go index 34a7181ab1a74..29e2f2ba766b6 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncationProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceNoTruncationProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go similarity index 99% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go index 5a901d3dbe251..a9b1adcd4eeb6 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceNoTruncation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceNoTruncation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go index afa11a1824733..e8104c47e51b8 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go index e3b47c8abac19..743c54c508871 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceOptionalProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceOptionalProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go index 8b1548edb5924..ddb4b35f44d50 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertyFromParentConstructorFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfacePropertyFromParentConstructorFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go index fa00ce74ad313..df38da533bb74 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfacePropertySignatures_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfacePropertySignatures(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go index 8e2cc787bce2d..d733923c43002 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go index f68f5fd8609e9..f9f4b33895896 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceQualifiedName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceQualifiedName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go index 4c41bc960d11b..1dd0fc8594cb9 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceSomePropertiesPresent_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceSomePropertiesPresent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go index 3675345efc9fe..4d282b386b0aa 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go index e93bf4a5fc5b7..973810232bc47 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateDeeply_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiateDeeply(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go index e616d3d998a32..c122eff55f529 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiateError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go index d1288442185d1..85eef79c8edea 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateNumber_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiateNumber(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go index 17cbbf658fd9b..7aa5c52d6413f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateT_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiateT(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go index 6f12b12943e08..b4553bbf755ad 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiateU_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiateU(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go index ca5cadb52e53c..62eac1866e51c 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamInstantiation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamInstantiation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go index aea5226f73f11..5513e1953ddc9 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceTypeParamMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceTypeParamMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go index b50437b92f9f4..55e195e8c9f35 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceUndeclaredSymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceUndeclaredSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go index 320addc033074..dce97d8562d18 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceWithAmbientSignatures1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go index 4b7e1efc4886d..62242f70abb73 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceWithAmbientSignatures2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go index 1f73feb271b6f..7d9ac9da2359a 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithAmbientSignatures3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceWithAmbientSignatures3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go index 9d9b269bcfadc..2a7070da93b9f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterfaceWithNegativeNumber_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterfaceWithNegativeNumber(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_all_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_all_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_all_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_all_test.go index e7f0f412d89a9..ad8c8adf92dec 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_all_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_all_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_all(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go index 2a15d3b4bb79c..7bf6f1802ae17 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_noUndefinedOnOptionalParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_noUndefinedOnOptionalParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_order_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_order_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_order_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_order_test.go index 1a6044ed857bd..80f83d197e92f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_order_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_order_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_order(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go index da8f20249c0a9..20d612ab5dc47 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_quotePreferenceAuto1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go index 3c734eb015da7..ae9e1696ca648 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceAuto2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_quotePreferenceAuto2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go index 6ae66b310f1d7..22543abaddb27 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceDouble_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_quotePreferenceDouble(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go index 5911f64c29f03..95d9f02dd92bb 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_quotePreferenceSingle_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_quotePreferenceSingle(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go rename to tsc/pkg/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go index 6dc1a8bf9d5ee..888f0f4fb349f 100644 --- a/tsc/internal/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassImplementInterface_typeInOtherFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassImplementInterface_typeInOtherFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go b/tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go rename to tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go index bde05da86880f..68eb80f7703f0 100644 --- a/tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_callWithThisInside_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassSuperMustPrecedeThisAccess_callWithThisInside(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go b/tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go rename to tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go index c02c874dad472..4ba6b3cad5616 100644 --- a/tsc/internal/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go +++ b/tsc/pkg/fourslash/tests/codeFixClassSuperMustPrecedeThisAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixClassSuperMustPrecedeThisAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType13_test.go b/tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType13_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType13_test.go rename to tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType13_test.go index f4bdaebaab136..70b6b205f72e1 100644 --- a/tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType13_test.go +++ b/tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixConvertToMappedObjectType13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType5_test.go b/tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType5_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType5_test.go rename to tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType5_test.go index 49270cffe5eb1..e07dfa8221202 100644 --- a/tsc/internal/fourslash/tests/codeFixConvertToMappedObjectType5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixConvertToMappedObjectType5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixConvertToMappedObjectType5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go rename to tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go index 286c9cce08ba9..4fc867b1a1e08 100644 --- a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixConvertToTypeOnlyImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go rename to tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go index 1b6fdbc1c584c..570d420ee16db 100644 --- a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixConvertToTypeOnlyImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go rename to tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go index bd514cd96fb78..ee0e5f3817580 100644 --- a/tsc/internal/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixConvertToTypeOnlyImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixConvertToTypeOnlyImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go b/tsc/pkg/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go rename to tsc/pkg/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go index 14dac22415ac0..3982513afe998 100644 --- a/tsc/internal/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCorrectQualifiedNameToIndexedAccessType01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCorrectQualifiedNameToIndexedAccessType01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue27_test.go b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue27_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixCorrectReturnValue27_test.go rename to tsc/pkg/fourslash/tests/codeFixCorrectReturnValue27_test.go index 6216259373773..74c9203796cb1 100644 --- a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue27_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue27_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCorrectReturnValue27(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue4_test.go b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue4_test.go similarity index 74% rename from tsc/internal/fourslash/tests/codeFixCorrectReturnValue4_test.go rename to tsc/pkg/fourslash/tests/codeFixCorrectReturnValue4_test.go index 5eb42de085baa..41a0c4b1b67f7 100644 --- a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCorrectReturnValue4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue5_test.go b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue5_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixCorrectReturnValue5_test.go rename to tsc/pkg/fourslash/tests/codeFixCorrectReturnValue5_test.go index 8acfe5ee05a8b..d8c9f26bc0c5f 100644 --- a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCorrectReturnValue5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue6_test.go b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue6_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixCorrectReturnValue6_test.go rename to tsc/pkg/fourslash/tests/codeFixCorrectReturnValue6_test.go index 07dcddafebd14..a9017816800b9 100644 --- a/tsc/internal/fourslash/tests/codeFixCorrectReturnValue6_test.go +++ b/tsc/pkg/fourslash/tests/codeFixCorrectReturnValue6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixCorrectReturnValue6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixExpectedComma03_test.go b/tsc/pkg/fourslash/tests/codeFixExpectedComma03_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixExpectedComma03_test.go rename to tsc/pkg/fourslash/tests/codeFixExpectedComma03_test.go index 48b5da3fcc841..e6cb8adb44fa7 100644 --- a/tsc/internal/fourslash/tests/codeFixExpectedComma03_test.go +++ b/tsc/pkg/fourslash/tests/codeFixExpectedComma03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixExpectedComma03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go b/tsc/pkg/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go rename to tsc/pkg/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go index feffed06849e5..7d7b6aa843818 100644 --- a/tsc/internal/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go +++ b/tsc/pkg/fourslash/tests/codeFixForgottenThisPropertyAccess04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixForgottenThisPropertyAccess04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixGenerateDefinitions_test.go b/tsc/pkg/fourslash/tests/codeFixGenerateDefinitions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixGenerateDefinitions_test.go rename to tsc/pkg/fourslash/tests/codeFixGenerateDefinitions_test.go index 2d8a8ace505c9..9e82460209d3a 100644 --- a/tsc/internal/fourslash/tests/codeFixGenerateDefinitions_test.go +++ b/tsc/pkg/fourslash/tests/codeFixGenerateDefinitions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixGenerateDefinitions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go b/tsc/pkg/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go similarity index 75% rename from tsc/internal/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go rename to tsc/pkg/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go index 0f3f9aecd62f0..36bf3b31fa410 100644 --- a/tsc/internal/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go +++ b/tsc/pkg/fourslash/tests/codeFixImplicitThis_ts_cantFixNonFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixImplicitThis_ts_cantFixNonFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixImportNonExportedMember4_test.go b/tsc/pkg/fourslash/tests/codeFixImportNonExportedMember4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixImportNonExportedMember4_test.go rename to tsc/pkg/fourslash/tests/codeFixImportNonExportedMember4_test.go index 79298ab5189c0..395e5c8968262 100644 --- a/tsc/internal/fourslash/tests/codeFixImportNonExportedMember4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixImportNonExportedMember4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixImportNonExportedMember4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixImportNonExportedMember5_test.go b/tsc/pkg/fourslash/tests/codeFixImportNonExportedMember5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixImportNonExportedMember5_test.go rename to tsc/pkg/fourslash/tests/codeFixImportNonExportedMember5_test.go index acc2d5d8bd2ae..bbbe230985cf1 100644 --- a/tsc/internal/fourslash/tests/codeFixImportNonExportedMember5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixImportNonExportedMember5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixImportNonExportedMember5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go b/tsc/pkg/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go rename to tsc/pkg/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go index f8f6539fb4767..879dbb151c7cc 100644 --- a/tsc/internal/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go +++ b/tsc/pkg/fourslash/tests/codeFixImportNonTextualSpecifierText_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) -// https://github.com/microsoft/TypeScript/tsc/issues/3944 +// https://github.com/frida/TypeScript/tsc/issues/3944 func TestCodeFixImportNonTextualSpecifierText(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") diff --git a/tsc/internal/fourslash/tests/codeFixInferFromCallInAssignment_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromCallInAssignment_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixInferFromCallInAssignment_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromCallInAssignment_test.go index 00366e045e287..09e99b65625af 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromCallInAssignment_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromCallInAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromCallInAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromExpressionStatement_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromExpressionStatement_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromExpressionStatement_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromExpressionStatement_test.go index 25c2f3a9c5e65..64bfbf3203b5e 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromExpressionStatement_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromExpressionStatement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromExpressionStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go index a3b41fbf74b24..9b52992f110d1 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromFunctionThisUsageObjectPropertyParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go index 5ca212e3e9f5f..79e938c9d2e76 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromFunctionThisUsageObjectPropertyShorthandParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go index 6b98ff7cb613c..7614db1820a65 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectPropertyShorthand_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromFunctionThisUsageObjectPropertyShorthand(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go index 7367a3ca29c90..b81ae4fd6fa53 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionThisUsageObjectProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromFunctionThisUsageObjectProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromFunctionUsage_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionUsage_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixInferFromFunctionUsage_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromFunctionUsage_test.go index 76d0d744a27c9..27ec6ffcac7fb 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromFunctionUsage_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromFunctionUsage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromFunctionUsage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go index 6aab0abc8b125..ff0e04a7b982f 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromPrimitiveUsage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromPrimitiveUsage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageBindingElement_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageBindingElement_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageBindingElement_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageBindingElement_test.go index ef45211d78a9e..34a94a828b0ef 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageBindingElement_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageBindingElement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageBindingElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageCall_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCall_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageCall_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageCall_test.go index 9f6eb275e825a..14be52de76edd 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageCall_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go index 1c3d8960c7d08..7d5324433fa09 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageCallbackParameter6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go index 7e9eab31113f1..891e42a78cc7b 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageCallbackParameter7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageCallbackParameter7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go index 716efe343be51..a1081fce96ba8 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageInaccessibleTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageInaccessibleTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember2_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageMember2_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageMember2_test.go index 3cba77309d59b..7af04e9dfae36 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageMember2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember3_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageMember3_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageMember3_test.go index 495ccdcd7210c..30f203df31bb1 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageMember3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageMember_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageMember_test.go index 246460a6c5168..9792f848266a7 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageMember_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go index b43cacd301c41..8903d0a1b8b99 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageOptionalParam2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go index 3aa4d0f541b97..5e47ab7c5af50 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageOptionalParam_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageOptionalParam(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam2_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam2_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam2_test.go index be04e942740db..849a92ddbe6bd 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageRestParam2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam3_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam3_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam3_test.go index 0f837dd6213d3..d42980163f7c5 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageRestParam3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam_test.go index 46c226a998f1d..c4f9dff0ecf06 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageRestParam_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageRestParam_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageRestParam(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go index 8eae69751d705..5dede79d76c47 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsageVariable3JS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsageVariable3JS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go b/tsc/pkg/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go rename to tsc/pkg/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go index c80b2f0ff2187..6e4acb603bfab 100644 --- a/tsc/internal/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go +++ b/tsc/pkg/fourslash/tests/codeFixInferFromUsage_noCrashOnMissingParens_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixInferFromUsage_noCrashOnMissingParens(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go index 015ae3668c4c5..1509e918e267c 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go index 581f25438322b..73e9f6b7c9354 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go index 9b547e658a3a0..c431a242b6566 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go index 54fde6c995756..7888935fbf0e3 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go index c4d9276e593c8..33ba92d93cc37 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go index dc451faabb146..f961c39f1ca7e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go index 7c0c3aef6dc13..ec0876b9bfab6 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports16_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go index 860aea3fdd586..44e6a0f1505e0 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports17-unique-symbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports17_unique_symbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go index a167f223f8427..0825438804cab 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports18_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go index c851808beebc7..f2fbd5433215f 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports19_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go index 2df06249d2873..cdbd44bddf1d2 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports20_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go index 7f3103f62c5e6..68bad4a0e9d66 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports21-params-and-return_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports21_params_and_return(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go index 5622c0f375dae..cc89a52506cc2 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports22-formatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports22_formatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go index b39662103d9f4..f2c34a3c03b0c 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports23-heritage-formatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports23_heritage_formatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go index 327745f0d1450..baaae7ec12d5a 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports24-heritage-formatting-2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports24_heritage_formatting_2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go index 65c77ff6df54d..5a4bea27e791d 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports25-heritage-formatting-3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports25_heritage_formatting_3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go index 17fa01444cfd0..188b4438381ab 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports26-fn-in-object-literal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports26_fn_in_object_literal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go index fcaf40caf48f9..41ba487af6ecf 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports27-non-exported-bidings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports27_non_exported_bidings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go similarity index 96% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go index 8383fa9985d99..45cf3a3751bff 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports28-long-types_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports28_long_types(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go index b4d7d54e7be87..42df98906bb41 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports29-inline_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports29_inline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go index 2441f38de0eeb..1b545b072c502 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go index fd6771ad0ab78..af50e2eea5114 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports30-inline-import_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports30_inline_import(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go index 81a0f865fddc9..2996ccf054c35 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports31-inline-import-default_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports31_inline_import_default(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go index 9fc9027fc25d1..bf591b215a3c0 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports32-inline-short-hand_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports32_inline_short_hand(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go index a1bbb03f4c9fb..c6eea0e19b62e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports33-methods_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports33_methods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go similarity index 92% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go index c264dbb96c43c..31945f1434a6e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports34-object-spread_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports34_object_spread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go index 9de3d82597c3e..e57c5635cbf61 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports35-variable-releative_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports35_variable_releative(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go index 9f96e3f7f08cf..f14e7514f1990 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports36-conditional-releative_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports36_conditional_releative(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go similarity index 92% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go index 324840ed12fa6..8edf93bc7be99 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports37-array-spread_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports37_array_spread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go index b10ef61bef089..4b64cfaddb6ac 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports38-unique-symbol-return_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports38_unique_symbol_return(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go similarity index 92% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go index 1eea001c8a81d..565f4ca1d98ed 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports39-extract-arr-to-variable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports39_extract_arr_to_variable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go index 86b0c48cc457b..43c53c7bbcd21 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go index 6103b05fe6c25..0442a3f78008e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports40-extract-other-to-variable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports40_extract_other_to_variable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go index 13b712eca514d..3f2f1952c481c 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports41-no-computed-enum-members_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports41_no_computed_enum_members(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go index bae9fd5071d5c..9130e1caf846a 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports42-static-readonly-class-symbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports42_static_readonly_class_symbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go index d841bcb9115f8..9f182f612d44f 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports43_expando_functions_2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go index 781385253bd8f..ac6c52bf5be9d 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports43_expando_functions_3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go index e8a0863e9c5cd..71ccaca78eb9a 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports43_expando_functions_4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go index b1895599cc930..1a666857216c1 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions-5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports43_expando_functions_5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go index 5b7087c33b038..93c63449b57ab 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports43-expando-functions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports43_expando_functions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go index bbdfb8f9c8a17..196cf7a7cef15 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports44-default-export_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports44_default_export(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go index 3cd248dd97403..cca7a5e33ee3a 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports45-decorators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports45_decorators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go index 41812414d5fc0..866a6a980691b 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports46-decorators-experimental_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports46_decorators_experimental(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go similarity index 92% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go index 56244c8e9f84b..88023e635e066 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports47_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports47(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go similarity index 92% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go index 3580627a78b61..ccc9c12f05763 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports48_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports48(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go similarity index 90% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go index 2661229ec52d9..59293aece1ffa 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports49-private-name_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports49_private_name(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go index d0c9276a83820..c46bd74ab50d1 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go index c8257448f3a17..d0ecd8e355acd 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports50-generics-with-default_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports50_generics_with_default(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go index 16649a7abb4de..5d65621da7db5 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports51-slightly-more-complex-generics-with-default_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports51_slightly_more_complex_generics_with_default(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go index aea18b19aaa1f..c973ed6641e3e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports52-generics-oversimplification_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports52_generics_oversimplification(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go index fd1e209a9c62e..b6809aab13ebf 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports53-nested-generic-types_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports53_nested_generic_types(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go index 374dde4a4d79b..bae6ed31c4ed1 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports54-generator-generics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports54_generator_generics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go index f05cc64f718bc..aecd9afd8f32c 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports55-generator-return_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports55_generator_return(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go similarity index 89% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go index 8c319ca759e41..bc2f07b92466e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports56-toplevel-import_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports56_toplevel_import(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go index 25b959f10212c..c75345c3105f1 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports57-generics-doesnt-drop-trailing-unknown_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports57_generics_doesnt_drop_trailing_unknown(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go index 9265ef75ea3e2..7c633a64b6633 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports58-genercs-doesnt-drop-trailing-unknown-2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports58_genercs_doesnt_drop_trailing_unknown_2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go index afd6df63c5902..ec91f9d2d1ef6 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports59-drops-unneeded-after-unknown_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports59_drops_unneeded_after_unknown(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go index 8e871fc638f53..50aab6f2c8be8 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go index eef4c53b6b6e8..6b68c5aeedf00 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports60-drops-unneeded-non-trailing-unknown_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports60_drops_unneeded_non_trailing_unknown(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go index f06bd80d30e2c..2997d2722ae9a 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go index c52d99a021bac..d7a957481576b 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go index 4131fbd0dd436..623fe4a1f5b33 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go index 5b6d9e63fc7b6..d0b37ceb4f79e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go index 90354dec4945f..3058cc0bfa2fc 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExportsTypePredicate1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExportsTypePredicate1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go index 46187af79276c..84256fdf19f01 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParensParamOnly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports_arrowParensParamOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go index ac8d7c6cad27c..c23acba7b8462 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_arrowParens_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports_arrowParens(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go index 7f1b5f219866f..e64dad9b0e29b 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_expandoNoDuplicates_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports_expandoNoDuplicates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go index 8bb864a03fa52..2d242b81c399e 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_jsxWhitespaceText_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports_jsxWhitespaceText(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go rename to tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go index 2d247af8817a5..c0c071e96be71 100644 --- a/tsc/internal/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go +++ b/tsc/pkg/fourslash/tests/codeFixMissingTypeAnnotationOnExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixMissingTypeAnnotationOnExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go b/tsc/pkg/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go rename to tsc/pkg/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go index 9c37c5aa029c4..29d8381ceb514 100644 --- a/tsc/internal/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go +++ b/tsc/pkg/fourslash/tests/codeFixNegativeReplaceQualifiedNameWithIndexedAccessType01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixNegativeReplaceQualifiedNameWithIndexedAccessType01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixOverrideModifier18_test.go b/tsc/pkg/fourslash/tests/codeFixOverrideModifier18_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixOverrideModifier18_test.go rename to tsc/pkg/fourslash/tests/codeFixOverrideModifier18_test.go index bb841b85920d6..7d17d31432ba6 100644 --- a/tsc/internal/fourslash/tests/codeFixOverrideModifier18_test.go +++ b/tsc/pkg/fourslash/tests/codeFixOverrideModifier18_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixOverrideModifier18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go b/tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go similarity index 95% rename from tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go rename to tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go index 0684ad5f80219..368ef382a74f5 100644 --- a/tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go +++ b/tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyImportJsxTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test that auto-imports for JSX tags don't crash when React is type-imported. diff --git a/tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go b/tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go rename to tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go index f1c128a58dd33..7c18d605f5238 100644 --- a/tsc/internal/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go +++ b/tsc/pkg/fourslash/tests/codeFixPromoteTypeOnlyOrderingCrash_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test case for crash when promoting type-only import to value import // when existing type imports precede the new value import -// https://github.com/microsoft/TypeScript/tsc/issues/2559 +// https://github.com/frida/TypeScript/tsc/issues/2559 func TestCodeFixPromoteTypeOnlyOrderingCrash(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") diff --git a/tsc/internal/fourslash/tests/codeFixPropertyOverrideAccess4_test.go b/tsc/pkg/fourslash/tests/codeFixPropertyOverrideAccess4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixPropertyOverrideAccess4_test.go rename to tsc/pkg/fourslash/tests/codeFixPropertyOverrideAccess4_test.go index 9f5535307fc24..13c0be2ecee2e 100644 --- a/tsc/internal/fourslash/tests/codeFixPropertyOverrideAccess4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixPropertyOverrideAccess4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixPropertyOverrideAccess4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go b/tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go rename to tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go index bba12a4c5d3cd..2494f18efb96a 100644 --- a/tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go +++ b/tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_mixedUnion_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixRemoveUnnecessaryAwait_mixedUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go b/tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go rename to tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go index 046ee6921be95..cd53d0db8e0fe 100644 --- a/tsc/internal/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go +++ b/tsc/pkg/fourslash/tests/codeFixRemoveUnnecessaryAwait_notAvailableOnReturn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixRemoveUnnecessaryAwait_notAvailableOnReturn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixRequireInTs3_test.go b/tsc/pkg/fourslash/tests/codeFixRequireInTs3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/codeFixRequireInTs3_test.go rename to tsc/pkg/fourslash/tests/codeFixRequireInTs3_test.go index ce95631c4c3de..a8c598344a3ad 100644 --- a/tsc/internal/fourslash/tests/codeFixRequireInTs3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixRequireInTs3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixRequireInTs3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixRequireInTs5_test.go b/tsc/pkg/fourslash/tests/codeFixRequireInTs5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixRequireInTs5_test.go rename to tsc/pkg/fourslash/tests/codeFixRequireInTs5_test.go index d1ab5a70458af..5d12d2060cb4e 100644 --- a/tsc/internal/fourslash/tests/codeFixRequireInTs5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixRequireInTs5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixRequireInTs5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpelling4_test.go b/tsc/pkg/fourslash/tests/codeFixSpelling4_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixSpelling4_test.go rename to tsc/pkg/fourslash/tests/codeFixSpelling4_test.go index bd389e93b9c1e..6edba59002831 100644 --- a/tsc/internal/fourslash/tests/codeFixSpelling4_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpelling4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpelling4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpelling5_test.go b/tsc/pkg/fourslash/tests/codeFixSpelling5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeFixSpelling5_test.go rename to tsc/pkg/fourslash/tests/codeFixSpelling5_test.go index d618b86caeea6..66e76baa054de 100644 --- a/tsc/internal/fourslash/tests/codeFixSpelling5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpelling5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpelling5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive1_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive1_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive1_test.go index abbe55aee38f3..f5d2eab51d5ec 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingCaseSensitive1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive2_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive2_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive2_test.go index 102b1e6f73484..86f33ff7bb4df 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingCaseSensitive2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive3_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive3_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive3_test.go index 99e9c30b1f6fa..b478582d3a9da 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingCaseSensitive3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingCaseSensitive3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingCaseSensitive3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingCaseWeight1_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixSpellingCaseWeight1_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight1_test.go index 4d994e4dbd5b4..eada9a74408e1 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingCaseWeight1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingCaseWeight1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingCaseWeight2_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixSpellingCaseWeight2_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight2_test.go index c2d35efcd7a0c..fdce2cb47fbb7 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingCaseWeight2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingCaseWeight2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingCaseWeight2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingJs3_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingJs3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixSpellingJs3_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingJs3_test.go index 067c2725ac21a..a314d0dc0bd81 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingJs3_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingJs3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingJs3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingJs5_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingJs5_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codeFixSpellingJs5_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingJs5_test.go index b525f1259a2b8..e15cc70e244a0 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingJs5_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingJs5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingJs5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingJs6_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingJs6_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixSpellingJs6_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingJs6_test.go index 68b5d1932270c..84ea680e4a474 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingJs6_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingJs6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingJs6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingJs7_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingJs7_test.go similarity index 91% rename from tsc/internal/fourslash/tests/codeFixSpellingJs7_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingJs7_test.go index 2ba900efb0705..162756f281351 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingJs7_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingJs7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingJs7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingJs8_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingJs8_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixSpellingJs8_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingJs8_test.go index 3a61726792eb6..e0a4d70f896ca 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingJs8_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingJs8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingJs8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingShortName1_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingShortName1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixSpellingShortName1_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingShortName1_test.go index 171b3823f4dc2..3403548a19c3a 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingShortName1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingShortName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingShortName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixSpellingShortName2_test.go b/tsc/pkg/fourslash/tests/codeFixSpellingShortName2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/codeFixSpellingShortName2_test.go rename to tsc/pkg/fourslash/tests/codeFixSpellingShortName2_test.go index 02f06fcea2b3f..b1caf444dc86c 100644 --- a/tsc/internal/fourslash/tests/codeFixSpellingShortName2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixSpellingShortName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixSpellingShortName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go index 745b3d9000750..5da967eac48ef 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_module_blankCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go index f7d38dc808d39..0ab78847d3656 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_module_compatibleCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go index 19dacec9a7dde..00c63c75393ca 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_module_missingCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go index f68bc5884a433..d91fa78d20a9b 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_noTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_module_noTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go index 06372dcf36e29..b4fa019332828 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_module_targetES2017CompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go index 331ad21d7e902..e58f5ceef8703 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_target_compatibleCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go index 4319573f68774..f06a9f5b1edc6 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelAwait_target_noTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelAwait_target_noTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go index 02ec21a28cd80..21146967e60f5 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_module_blankCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go index 49b58002f7ad4..15c548c0acaa2 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_module_compatibleCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go index 94c88ba8de45e..91ff01bab79c6 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_module_missingCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go index 481ec9cae2812..dde536fd6d12a 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_noTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_module_noTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go similarity index 84% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go index 31cfde1d61b60..5b4ebaf20b298 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_module_targetES2017CompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go index e4b5980255109..83cbc3adb0185 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_target_compatibleCompilerOptionsInTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go rename to tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go index 24e9477a0c80a..de180e96bdc3f 100644 --- a/tsc/internal/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go +++ b/tsc/pkg/fourslash/tests/codeFixTopLevelForAwait_target_noTsConfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixTopLevelForAwait_target_noTsConfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go b/tsc/pkg/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go rename to tsc/pkg/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go index efae44e7747d1..f58f8c2c6f51a 100644 --- a/tsc/internal/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUndeclaredPropertyAccesses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUndeclaredPropertyAccesses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go b/tsc/pkg/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go rename to tsc/pkg/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go index 4b9006a0a5160..8629abd48fa8a 100644 --- a/tsc/internal/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnreachableCode_noSuggestionIfDisabled_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnreachableCode_noSuggestionIfDisabled(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go b/tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go rename to tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go index 490fbdef96845..dfac59a637459 100644 --- a/tsc/internal/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_parameter1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnusedIdentifier_parameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go b/tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go similarity index 88% rename from tsc/internal/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go rename to tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go index a2104ba0ba473..3b6b5a283d80f 100644 --- a/tsc/internal/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnusedIdentifier_suggestion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnusedIdentifier_suggestion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go b/tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go rename to tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go index 0263d8c8f198c..78c26b28be6e7 100644 --- a/tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnusedInterfaceInNamespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go b/tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go rename to tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go index f6a8dd54efd7e..fa26539b4cfde 100644 --- a/tsc/internal/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnusedInterfaceInNamespace2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnusedInterfaceInNamespace2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go b/tsc/pkg/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go rename to tsc/pkg/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go index 07168d1862a1f..d8bc9eb2ed570 100644 --- a/tsc/internal/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUnusedLabel_noSuggestionIfDisabled_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUnusedLabel_noSuggestionIfDisabled(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go b/tsc/pkg/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go similarity index 78% rename from tsc/internal/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go rename to tsc/pkg/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go index b7fc128e88442..3b052adf757c4 100644 --- a/tsc/internal/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go +++ b/tsc/pkg/fourslash/tests/codeFixUseBigIntLiteralWithNumericSeparators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeFixUseBigIntLiteralWithNumericSeparators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensFunctionExpressions01_test.go b/tsc/pkg/fourslash/tests/codeLensFunctionExpressions01_test.go similarity index 85% rename from tsc/internal/fourslash/tests/codeLensFunctionExpressions01_test.go rename to tsc/pkg/fourslash/tests/codeLensFunctionExpressions01_test.go index b2c2d99e276aa..e5b73af76e4d9 100644 --- a/tsc/internal/fourslash/tests/codeLensFunctionExpressions01_test.go +++ b/tsc/pkg/fourslash/tests/codeLensFunctionExpressions01_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensFunctionExpressions01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensFunctionsAndConstants01_test.go b/tsc/pkg/fourslash/tests/codeLensFunctionsAndConstants01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/codeLensFunctionsAndConstants01_test.go rename to tsc/pkg/fourslash/tests/codeLensFunctionsAndConstants01_test.go index d7d7157802f33..f68cf65c92df5 100644 --- a/tsc/internal/fourslash/tests/codeLensFunctionsAndConstants01_test.go +++ b/tsc/pkg/fourslash/tests/codeLensFunctionsAndConstants01_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensFunctionsAndConstants01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensInterface01_test.go b/tsc/pkg/fourslash/tests/codeLensInterface01_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeLensInterface01_test.go rename to tsc/pkg/fourslash/tests/codeLensInterface01_test.go index e71ce9beb6dec..4555d470837b2 100644 --- a/tsc/internal/fourslash/tests/codeLensInterface01_test.go +++ b/tsc/pkg/fourslash/tests/codeLensInterface01_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensInterface01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensOverloads01_test.go b/tsc/pkg/fourslash/tests/codeLensOverloads01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codeLensOverloads01_test.go rename to tsc/pkg/fourslash/tests/codeLensOverloads01_test.go index b05cb8166370a..beb1e2fb94d58 100644 --- a/tsc/internal/fourslash/tests/codeLensOverloads01_test.go +++ b/tsc/pkg/fourslash/tests/codeLensOverloads01_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensOverloads01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensShowOnAllClassMethods_test.go b/tsc/pkg/fourslash/tests/codeLensShowOnAllClassMethods_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeLensShowOnAllClassMethods_test.go rename to tsc/pkg/fourslash/tests/codeLensShowOnAllClassMethods_test.go index 8f2e494d25eaa..35e259690be11 100644 --- a/tsc/internal/fourslash/tests/codeLensShowOnAllClassMethods_test.go +++ b/tsc/pkg/fourslash/tests/codeLensShowOnAllClassMethods_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensReferencesShowOnAllClassMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensShowOnAllFunctions_test.go b/tsc/pkg/fourslash/tests/codeLensShowOnAllFunctions_test.go similarity index 79% rename from tsc/internal/fourslash/tests/codeLensShowOnAllFunctions_test.go rename to tsc/pkg/fourslash/tests/codeLensShowOnAllFunctions_test.go index df45d87594ebb..d7bce3d090c40 100644 --- a/tsc/internal/fourslash/tests/codeLensShowOnAllFunctions_test.go +++ b/tsc/pkg/fourslash/tests/codeLensShowOnAllFunctions_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensReferencesShowOnAllFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codeLensShowOnInterfaceMethods_test.go b/tsc/pkg/fourslash/tests/codeLensShowOnInterfaceMethods_test.go similarity index 83% rename from tsc/internal/fourslash/tests/codeLensShowOnInterfaceMethods_test.go rename to tsc/pkg/fourslash/tests/codeLensShowOnInterfaceMethods_test.go index 7d0d8fb4753b7..8f84284476226 100644 --- a/tsc/internal/fourslash/tests/codeLensShowOnInterfaceMethods_test.go +++ b/tsc/pkg/fourslash/tests/codeLensShowOnInterfaceMethods_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensReferencesShowOnInterfaceMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codefixClassImplementInterface_omit_test.go b/tsc/pkg/fourslash/tests/codefixClassImplementInterface_omit_test.go similarity index 86% rename from tsc/internal/fourslash/tests/codefixClassImplementInterface_omit_test.go rename to tsc/pkg/fourslash/tests/codefixClassImplementInterface_omit_test.go index 6a0fd9ac73fef..1da481c788d20 100644 --- a/tsc/internal/fourslash/tests/codefixClassImplementInterface_omit_test.go +++ b/tsc/pkg/fourslash/tests/codefixClassImplementInterface_omit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodefixClassImplementInterface_omit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codefixCrashExportGlobal_test.go b/tsc/pkg/fourslash/tests/codefixCrashExportGlobal_test.go similarity index 87% rename from tsc/internal/fourslash/tests/codefixCrashExportGlobal_test.go rename to tsc/pkg/fourslash/tests/codefixCrashExportGlobal_test.go index 8a9e8e71e347c..65ec95cac42d5 100644 --- a/tsc/internal/fourslash/tests/codefixCrashExportGlobal_test.go +++ b/tsc/pkg/fourslash/tests/codefixCrashExportGlobal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodefixCrashExportGlobal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go b/tsc/pkg/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go similarity index 77% rename from tsc/internal/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go rename to tsc/pkg/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go index ae0521d37881d..ab65ac0ebfd86 100644 --- a/tsc/internal/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go +++ b/tsc/pkg/fourslash/tests/codefixEnableJsxFlag_noTsconfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodefixEnableJsxFlag_noTsconfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/codefixInferFromUsageNullish_test.go b/tsc/pkg/fourslash/tests/codefixInferFromUsageNullish_test.go similarity index 81% rename from tsc/internal/fourslash/tests/codefixInferFromUsageNullish_test.go rename to tsc/pkg/fourslash/tests/codefixInferFromUsageNullish_test.go index b7d266c32e07b..53eae652ced93 100644 --- a/tsc/internal/fourslash/tests/codefixInferFromUsageNullish_test.go +++ b/tsc/pkg/fourslash/tests/codefixInferFromUsageNullish_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodefixInferFromUsageNullish(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsBlocks_test.go b/tsc/pkg/fourslash/tests/commentsBlocks_test.go similarity index 92% rename from tsc/internal/fourslash/tests/commentsBlocks_test.go rename to tsc/pkg/fourslash/tests/commentsBlocks_test.go index bd0aed26ec0b6..5791c1845eab9 100644 --- a/tsc/internal/fourslash/tests/commentsBlocks_test.go +++ b/tsc/pkg/fourslash/tests/commentsBlocks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsEnumsFourslash_test.go b/tsc/pkg/fourslash/tests/commentsEnumsFourslash_test.go similarity index 91% rename from tsc/internal/fourslash/tests/commentsEnumsFourslash_test.go rename to tsc/pkg/fourslash/tests/commentsEnumsFourslash_test.go index 52f6b1274ae8a..d3cdf9303513d 100644 --- a/tsc/internal/fourslash/tests/commentsEnumsFourslash_test.go +++ b/tsc/pkg/fourslash/tests/commentsEnumsFourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsEnumsFourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsExternalModulesFourslash_test.go b/tsc/pkg/fourslash/tests/commentsExternalModulesFourslash_test.go similarity index 97% rename from tsc/internal/fourslash/tests/commentsExternalModulesFourslash_test.go rename to tsc/pkg/fourslash/tests/commentsExternalModulesFourslash_test.go index ce787227e68a5..f8e07fde5d685 100644 --- a/tsc/internal/fourslash/tests/commentsExternalModulesFourslash_test.go +++ b/tsc/pkg/fourslash/tests/commentsExternalModulesFourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsExternalModulesFourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsImportDeclaration_test.go b/tsc/pkg/fourslash/tests/commentsImportDeclaration_test.go similarity index 94% rename from tsc/internal/fourslash/tests/commentsImportDeclaration_test.go rename to tsc/pkg/fourslash/tests/commentsImportDeclaration_test.go index 57659446bc2e5..02c8d90723885 100644 --- a/tsc/internal/fourslash/tests/commentsImportDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/commentsImportDeclaration_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsImportDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsInheritanceFourslash_test.go b/tsc/pkg/fourslash/tests/commentsInheritanceFourslash_test.go similarity index 99% rename from tsc/internal/fourslash/tests/commentsInheritanceFourslash_test.go rename to tsc/pkg/fourslash/tests/commentsInheritanceFourslash_test.go index cdc94a4cdfa69..4cd1986164c44 100644 --- a/tsc/internal/fourslash/tests/commentsInheritanceFourslash_test.go +++ b/tsc/pkg/fourslash/tests/commentsInheritanceFourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsInheritanceFourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsInterfaceFourslash_test.go b/tsc/pkg/fourslash/tests/commentsInterfaceFourslash_test.go similarity index 98% rename from tsc/internal/fourslash/tests/commentsInterfaceFourslash_test.go rename to tsc/pkg/fourslash/tests/commentsInterfaceFourslash_test.go index 12588d1b32697..4a8c43b49126b 100644 --- a/tsc/internal/fourslash/tests/commentsInterfaceFourslash_test.go +++ b/tsc/pkg/fourslash/tests/commentsInterfaceFourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsInterfaceFourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsLinePreservation_test.go b/tsc/pkg/fourslash/tests/commentsLinePreservation_test.go similarity index 97% rename from tsc/internal/fourslash/tests/commentsLinePreservation_test.go rename to tsc/pkg/fourslash/tests/commentsLinePreservation_test.go index d557e5bfec7df..5c2cf2c79c046 100644 --- a/tsc/internal/fourslash/tests/commentsLinePreservation_test.go +++ b/tsc/pkg/fourslash/tests/commentsLinePreservation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsLinePreservation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsOverloadsFourslash_test.go b/tsc/pkg/fourslash/tests/commentsOverloadsFourslash_test.go similarity index 99% rename from tsc/internal/fourslash/tests/commentsOverloadsFourslash_test.go rename to tsc/pkg/fourslash/tests/commentsOverloadsFourslash_test.go index 43b5eae0e8214..34ec7ff913c2b 100644 --- a/tsc/internal/fourslash/tests/commentsOverloadsFourslash_test.go +++ b/tsc/pkg/fourslash/tests/commentsOverloadsFourslash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsOverloadsFourslash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsUnion_test.go b/tsc/pkg/fourslash/tests/commentsUnion_test.go similarity index 81% rename from tsc/internal/fourslash/tests/commentsUnion_test.go rename to tsc/pkg/fourslash/tests/commentsUnion_test.go index 39a2116662a92..f17380956057d 100644 --- a/tsc/internal/fourslash/tests/commentsUnion_test.go +++ b/tsc/pkg/fourslash/tests/commentsUnion_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/commentsVariables_test.go b/tsc/pkg/fourslash/tests/commentsVariables_test.go similarity index 96% rename from tsc/internal/fourslash/tests/commentsVariables_test.go rename to tsc/pkg/fourslash/tests/commentsVariables_test.go index 2d8f80db4fda4..a35662cec0334 100644 --- a/tsc/internal/fourslash/tests/commentsVariables_test.go +++ b/tsc/pkg/fourslash/tests/commentsVariables_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCommentsVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterAtChar_test.go b/tsc/pkg/fourslash/tests/completionAfterAtChar_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAfterAtChar_test.go rename to tsc/pkg/fourslash/tests/completionAfterAtChar_test.go index 02cf64b95c448..6ebc897d5c277 100644 --- a/tsc/internal/fourslash/tests/completionAfterAtChar_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterAtChar_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterAtChar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterBackslashFollowingString_test.go b/tsc/pkg/fourslash/tests/completionAfterBackslashFollowingString_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionAfterBackslashFollowingString_test.go rename to tsc/pkg/fourslash/tests/completionAfterBackslashFollowingString_test.go index eef5c5a2fcacd..30430ff9187c7 100644 --- a/tsc/internal/fourslash/tests/completionAfterBackslashFollowingString_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterBackslashFollowingString_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterBackslashFollowingString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterBrace_test.go b/tsc/pkg/fourslash/tests/completionAfterBrace_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAfterBrace_test.go rename to tsc/pkg/fourslash/tests/completionAfterBrace_test.go index 953f002a78b68..44a4f83765acd 100644 --- a/tsc/internal/fourslash/tests/completionAfterBrace_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterBrace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterBrace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterCallExpression_test.go b/tsc/pkg/fourslash/tests/completionAfterCallExpression_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionAfterCallExpression_test.go rename to tsc/pkg/fourslash/tests/completionAfterCallExpression_test.go index 56c52efb4ee6d..fc471a181af09 100644 --- a/tsc/internal/fourslash/tests/completionAfterCallExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterCallExpression_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterCallExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterDotDotDot_test.go b/tsc/pkg/fourslash/tests/completionAfterDotDotDot_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAfterDotDotDot_test.go rename to tsc/pkg/fourslash/tests/completionAfterDotDotDot_test.go index e3123abc2c676..45b8db148c4d9 100644 --- a/tsc/internal/fourslash/tests/completionAfterDotDotDot_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterDotDotDot_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterDotDotDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterExtendsL10nInJs_test.go b/tsc/pkg/fourslash/tests/completionAfterExtendsL10nInJs_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionAfterExtendsL10nInJs_test.go rename to tsc/pkg/fourslash/tests/completionAfterExtendsL10nInJs_test.go index 4cc6e0ffcead8..320085fc86a55 100644 --- a/tsc/internal/fourslash/tests/completionAfterExtendsL10nInJs_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterExtendsL10nInJs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterExtendsL10nInJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterImportWithJSDoc_test.go b/tsc/pkg/fourslash/tests/completionAfterImportWithJSDoc_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionAfterImportWithJSDoc_test.go rename to tsc/pkg/fourslash/tests/completionAfterImportWithJSDoc_test.go index 52025300e81ce..7195aadf8bfbf 100644 --- a/tsc/internal/fourslash/tests/completionAfterImportWithJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterImportWithJSDoc_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test for issue: Completions crash after `import` when statement is preceded by JSDoc. diff --git a/tsc/internal/fourslash/tests/completionAfterNewline2_test.go b/tsc/pkg/fourslash/tests/completionAfterNewline2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAfterNewline2_test.go rename to tsc/pkg/fourslash/tests/completionAfterNewline2_test.go index 3527cc6050ad7..e5145cf291986 100644 --- a/tsc/internal/fourslash/tests/completionAfterNewline2_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterNewline2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterNewline2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterNewline_test.go b/tsc/pkg/fourslash/tests/completionAfterNewline_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAfterNewline_test.go rename to tsc/pkg/fourslash/tests/completionAfterNewline_test.go index 91392e5c16fbf..e717fca0020f8 100644 --- a/tsc/internal/fourslash/tests/completionAfterNewline_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterNewline_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterQuestionDot_test.go b/tsc/pkg/fourslash/tests/completionAfterQuestionDot_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionAfterQuestionDot_test.go rename to tsc/pkg/fourslash/tests/completionAfterQuestionDot_test.go index 4045e162458ab..eb1fd6e318e98 100644 --- a/tsc/internal/fourslash/tests/completionAfterQuestionDot_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterQuestionDot_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterQuestionDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go b/tsc/pkg/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go rename to tsc/pkg/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go index fd2c97262288b..11a448335e823 100644 --- a/tsc/internal/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go +++ b/tsc/pkg/fourslash/tests/completionAfterTrailingAtInJSDoc1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAfterTrailingAtInJSDoc1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAmbientPropertyDeclaration_test.go b/tsc/pkg/fourslash/tests/completionAmbientPropertyDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionAmbientPropertyDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionAmbientPropertyDeclaration_test.go index 4e05bcc1a1f33..dc4c74d231d10 100644 --- a/tsc/internal/fourslash/tests/completionAmbientPropertyDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionAmbientPropertyDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAmbientPropertyDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAsKeyword_test.go b/tsc/pkg/fourslash/tests/completionAsKeyword_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionAsKeyword_test.go rename to tsc/pkg/fourslash/tests/completionAsKeyword_test.go index 17ab6a1aa7aa8..fd29b47d52231 100644 --- a/tsc/internal/fourslash/tests/completionAsKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionAsKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAsKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAtCaseClause_test.go b/tsc/pkg/fourslash/tests/completionAtCaseClause_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAtCaseClause_test.go rename to tsc/pkg/fourslash/tests/completionAtCaseClause_test.go index 10a490f581390..71882c9dc4cf9 100644 --- a/tsc/internal/fourslash/tests/completionAtCaseClause_test.go +++ b/tsc/pkg/fourslash/tests/completionAtCaseClause_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAtCaseClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAtDottedNamespace_test.go b/tsc/pkg/fourslash/tests/completionAtDottedNamespace_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionAtDottedNamespace_test.go rename to tsc/pkg/fourslash/tests/completionAtDottedNamespace_test.go index 4e7c4ccab2ceb..63b6fd8845802 100644 --- a/tsc/internal/fourslash/tests/completionAtDottedNamespace_test.go +++ b/tsc/pkg/fourslash/tests/completionAtDottedNamespace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAtDottedNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionAutoInsertQuestionDot_test.go b/tsc/pkg/fourslash/tests/completionAutoInsertQuestionDot_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionAutoInsertQuestionDot_test.go rename to tsc/pkg/fourslash/tests/completionAutoInsertQuestionDot_test.go index 41bbaec887e49..2b695eb2ca8eb 100644 --- a/tsc/internal/fourslash/tests/completionAutoInsertQuestionDot_test.go +++ b/tsc/pkg/fourslash/tests/completionAutoInsertQuestionDot_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionAutoInsertQuestionDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go b/tsc/pkg/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go rename to tsc/pkg/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go index 276867686cd8f..5e5697572999f 100644 --- a/tsc/internal/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go +++ b/tsc/pkg/fourslash/tests/completionBeforeSemanticDiagnosticsInArrowFunction1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionBeforeSemanticDiagnosticsInArrowFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go b/tsc/pkg/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go rename to tsc/pkg/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go index f314317708972..ac12dcd8181d7 100644 --- a/tsc/internal/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go +++ b/tsc/pkg/fourslash/tests/completionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionClassMemberAfterJSDocWithInvalidJSDocTagInTheComment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go b/tsc/pkg/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go rename to tsc/pkg/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go index f5fb2031a1f33..ea55f37493570 100644 --- a/tsc/internal/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go +++ b/tsc/pkg/fourslash/tests/completionClassMemberSnippetCrossFileNodeReuse1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionClassMemberSnippetCrossFileNodeReuse1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go b/tsc/pkg/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go rename to tsc/pkg/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go index 07f0c4667b855..7693b5e841a48 100644 --- a/tsc/internal/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go +++ b/tsc/pkg/fourslash/tests/completionClassMembersAfterConstAssertionInitializer_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestClassMembersAfterConstAssertionInitializer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionCloneQuestionToken_test.go b/tsc/pkg/fourslash/tests/completionCloneQuestionToken_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionCloneQuestionToken_test.go rename to tsc/pkg/fourslash/tests/completionCloneQuestionToken_test.go index 9053a2ee26f94..9fc6cb09e6aec 100644 --- a/tsc/internal/fourslash/tests/completionCloneQuestionToken_test.go +++ b/tsc/pkg/fourslash/tests/completionCloneQuestionToken_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionCloneQuestionToken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionColonToken_test.go b/tsc/pkg/fourslash/tests/completionColonToken_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionColonToken_test.go rename to tsc/pkg/fourslash/tests/completionColonToken_test.go index 5766f364fdda6..c22821a8a32e3 100644 --- a/tsc/internal/fourslash/tests/completionColonToken_test.go +++ b/tsc/pkg/fourslash/tests/completionColonToken_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionColonToken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionDetailSignature_test.go b/tsc/pkg/fourslash/tests/completionDetailSignature_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionDetailSignature_test.go rename to tsc/pkg/fourslash/tests/completionDetailSignature_test.go index 09328e8e07b45..3e35489598191 100644 --- a/tsc/internal/fourslash/tests/completionDetailSignature_test.go +++ b/tsc/pkg/fourslash/tests/completionDetailSignature_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionDetailSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go b/tsc/pkg/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go similarity index 96% rename from tsc/internal/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go rename to tsc/pkg/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go index 342d2ee9427fb..c0427dbc20797 100644 --- a/tsc/internal/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/completionDetailsOfContextSensitiveParameterNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionDetailsOfContextSensitiveParameterNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go b/tsc/pkg/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go rename to tsc/pkg/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go index 65d66be5175e7..53db93d14b3a1 100644 --- a/tsc/internal/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryAfterASIExpressionInClass_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryAfterASIExpressionInClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go b/tsc/pkg/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go rename to tsc/pkg/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go index b797c4a581598..2847f76c70d0c 100644 --- a/tsc/internal/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryClassMembersWithInferredFunctionReturnType1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryClassMembersWithInferredFunctionReturnType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go b/tsc/pkg/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go rename to tsc/pkg/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go index 80b4339fc722a..82318579e882c 100644 --- a/tsc/internal/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForArgumentConstrainedToString_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForArgumentConstrainedToString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go b/tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go rename to tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go index b7dfb21ea4604..dea25537343b7 100644 --- a/tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForArrayElementConstrainedToString2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go b/tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go rename to tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go index 0c1dad81b1615..0a193227240df 100644 --- a/tsc/internal/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForArrayElementConstrainedToString_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForArrayElementConstrainedToString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go b/tsc/pkg/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go rename to tsc/pkg/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go index b1c2069a2b234..8a237e2e1d025 100644 --- a/tsc/internal/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForClassMembers_StaticWhenBaseTypeIsNotResolved(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForConst_test.go b/tsc/pkg/fourslash/tests/completionEntryForConst_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionEntryForConst_test.go rename to tsc/pkg/fourslash/tests/completionEntryForConst_test.go index 2d927317fb7d6..5769a3b12af67 100644 --- a/tsc/internal/fourslash/tests/completionEntryForConst_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForConst_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForConst(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go b/tsc/pkg/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go rename to tsc/pkg/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go index 6f550aad382e1..cf9587bbc7c27 100644 --- a/tsc/internal/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForDeferredMappedTypeMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForDeferredMappedTypeMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go b/tsc/pkg/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go rename to tsc/pkg/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go index 840145762ea93..222a0966317d6 100644 --- a/tsc/internal/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForPropertyConstrainedToString_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForPropertyConstrainedToString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go b/tsc/pkg/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go rename to tsc/pkg/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go index f5fe6eb7bc029..6a96ee11b0d26 100644 --- a/tsc/internal/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForPropertyFromUnionOfModuleType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForPropertyFromUnionOfModuleType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go index b42810c12eb21..fb0bb018446a7 100644 --- a/tsc/internal/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForShorthandPropertyAssignment_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForShorthandPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForUnionProperty2_test.go b/tsc/pkg/fourslash/tests/completionEntryForUnionProperty2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionEntryForUnionProperty2_test.go rename to tsc/pkg/fourslash/tests/completionEntryForUnionProperty2_test.go index 3b88b24e08220..17041255c444d 100644 --- a/tsc/internal/fourslash/tests/completionEntryForUnionProperty2_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForUnionProperty2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForUnionProperty2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryForUnionProperty_test.go b/tsc/pkg/fourslash/tests/completionEntryForUnionProperty_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionEntryForUnionProperty_test.go rename to tsc/pkg/fourslash/tests/completionEntryForUnionProperty_test.go index 3df1384a79ed7..7482477c9c533 100644 --- a/tsc/internal/fourslash/tests/completionEntryForUnionProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryForUnionProperty_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryForUnionProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionEntryOnNarrowedType_test.go b/tsc/pkg/fourslash/tests/completionEntryOnNarrowedType_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionEntryOnNarrowedType_test.go rename to tsc/pkg/fourslash/tests/completionEntryOnNarrowedType_test.go index c637be578b700..6c01a6b369651 100644 --- a/tsc/internal/fourslash/tests/completionEntryOnNarrowedType_test.go +++ b/tsc/pkg/fourslash/tests/completionEntryOnNarrowedType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionEntryOnNarrowedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionExportFrom_test.go b/tsc/pkg/fourslash/tests/completionExportFrom_test.go similarity index 72% rename from tsc/internal/fourslash/tests/completionExportFrom_test.go rename to tsc/pkg/fourslash/tests/completionExportFrom_test.go index 0f04e96d98fb8..3ef14f4061581 100644 --- a/tsc/internal/fourslash/tests/completionExportFrom_test.go +++ b/tsc/pkg/fourslash/tests/completionExportFrom_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionExportFrom(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionFilterText1_test.go b/tsc/pkg/fourslash/tests/completionFilterText1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionFilterText1_test.go rename to tsc/pkg/fourslash/tests/completionFilterText1_test.go index 825ccc00d437e..7129750b41db2 100644 --- a/tsc/internal/fourslash/tests/completionFilterText1_test.go +++ b/tsc/pkg/fourslash/tests/completionFilterText1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionFilterText1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionFilterText2_test.go b/tsc/pkg/fourslash/tests/completionFilterText2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionFilterText2_test.go rename to tsc/pkg/fourslash/tests/completionFilterText2_test.go index ee2531fb2f63b..2ed400a5a24f6 100644 --- a/tsc/internal/fourslash/tests/completionFilterText2_test.go +++ b/tsc/pkg/fourslash/tests/completionFilterText2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionFilterText2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionFilterText3_test.go b/tsc/pkg/fourslash/tests/completionFilterText3_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionFilterText3_test.go rename to tsc/pkg/fourslash/tests/completionFilterText3_test.go index 38f5d894e718d..71cded68043ce 100644 --- a/tsc/internal/fourslash/tests/completionFilterText3_test.go +++ b/tsc/pkg/fourslash/tests/completionFilterText3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionFilterText3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionFilterText4_test.go b/tsc/pkg/fourslash/tests/completionFilterText4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionFilterText4_test.go rename to tsc/pkg/fourslash/tests/completionFilterText4_test.go index a43afce8eda56..3a7e9343717b7 100644 --- a/tsc/internal/fourslash/tests/completionFilterText4_test.go +++ b/tsc/pkg/fourslash/tests/completionFilterText4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionFilterText4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForComputedStringProperties_test.go b/tsc/pkg/fourslash/tests/completionForComputedStringProperties_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionForComputedStringProperties_test.go rename to tsc/pkg/fourslash/tests/completionForComputedStringProperties_test.go index 4244211ac14ff..2caacc60e83a8 100644 --- a/tsc/internal/fourslash/tests/completionForComputedStringProperties_test.go +++ b/tsc/pkg/fourslash/tests/completionForComputedStringProperties_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForComputedStringProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForMetaProperty_test.go b/tsc/pkg/fourslash/tests/completionForMetaProperty_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForMetaProperty_test.go rename to tsc/pkg/fourslash/tests/completionForMetaProperty_test.go index 76f584564aca2..49afbd3e3f6e6 100644 --- a/tsc/internal/fourslash/tests/completionForMetaProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionForMetaProperty_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForMetaProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForObjectProperty_test.go b/tsc/pkg/fourslash/tests/completionForObjectProperty_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionForObjectProperty_test.go rename to tsc/pkg/fourslash/tests/completionForObjectProperty_test.go index 9bb801997dd52..bec26aa7ab43c 100644 --- a/tsc/internal/fourslash/tests/completionForObjectProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionForObjectProperty_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForObjectProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go rename to tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go index 5d8ee72617c08..374e15c008586 100644 --- a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go +++ b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForQuotedPropertyInPropertyAssignment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go index 6abd4336f165a..60c2e5af3ea44 100644 --- a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForQuotedPropertyInPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go rename to tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go index 75b6157a847e1..191ae6a6f2bfe 100644 --- a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go +++ b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForQuotedPropertyInPropertyAssignment3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go rename to tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go index 08e792b0f6302..dcbcd1972eabc 100644 --- a/tsc/internal/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go +++ b/tsc/pkg/fourslash/tests/completionForQuotedPropertyInPropertyAssignment4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForQuotedPropertyInPropertyAssignment4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral11_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionForStringLiteral11_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral11_test.go index 9a86ab427acee..2fbaf72186a2e 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral11_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral12_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral12_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionForStringLiteral12_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral12_test.go index 60717ca0a5b69..818775c84cf41 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral12_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral12_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral13_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral13_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionForStringLiteral13_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral13_test.go index 15dcce5fb6ec7..3db3ddaa3e5da 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral13_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral14_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral14_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionForStringLiteral14_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral14_test.go index a2a6a860bce87..5bd99672c9040 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral14_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral14_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral15_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral15_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionForStringLiteral15_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral15_test.go index 6c35cddd73923..e9acf42dc1f0e 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral15_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral15_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral16_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral16_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionForStringLiteral16_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral16_test.go index 0aaa9dc039422..955eec6663080 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral16_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral16_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionForStringLiteral2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral2_test.go index 16f5b435b8b6c..a2806bc8f355e 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral3_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionForStringLiteral3_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral3_test.go index 9c8b38700ef58..890f9fc564c06 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral3_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral4_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral4_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionForStringLiteral4_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral4_test.go index 6737016898d07..aa6e5bdf3d821 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral4_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral5_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionForStringLiteral5_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral5_test.go index 08d984a78bc3b..5b78bb0fb731b 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral5_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral8_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral8_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionForStringLiteral8_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral8_test.go index 8bb9a36b1ea67..75ebcc5a10cf2 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral8_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralExport_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralExport_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionForStringLiteralExport_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralExport_test.go index 627f39452daec..110da63a13150 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralExport_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralExport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralFromSignature2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionForStringLiteralFromSignature2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature2_test.go index e0120efa0e45c..44834f144af7b 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralFromSignature2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralFromSignature2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralFromSignature_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionForStringLiteralFromSignature_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature_test.go index 2fadc684ffa2f..7698282c82753 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralFromSignature_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralFromSignature_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralFromSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralImport1_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralImport1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionForStringLiteralImport1_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralImport1_test.go index 2850e4bda20cd..c7540ee096815 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralImport1_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralImport1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralImport2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralImport2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionForStringLiteralImport2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralImport2_test.go index c1f536841f053..863d63a3a8a91 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralImport2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralImport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go index 5e319e0673cf4..f78bdf0728b3d 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralInIndexedAccess01_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralInIndexedAccess01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go index 8de969872d6e6..fc48b9d5031d6 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go index dc693d0f81343..3176dbeef955c 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go index 63ad4baf05123..0c621626e7695 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport17_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go index 8f27f7c0fe21b..2cbd66ff55725 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go index fa6ab1c34d1e2..7f401a96feaf1 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go index 4620d65e94d63..e782c6d09c447 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go index eebf80866c300..291e5061610cd 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go index 79367c5a860a8..7804362b6117b 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go index 24f04e5e06b89..77cc655be2c3e 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImport9_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImport9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go index e425e996f8655..22eb4c7aa958c 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImportTypings1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go index 3bdad641f0a07..574088ae0efb6 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImportTypings2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go index 268f0b91653bf..f16f3d74ba5ad 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralNonrelativeImportTypings3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralNonrelativeImportTypings3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport4_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport4_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport4_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport4_test.go index 183514f45f275..6d2a575c831ba 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport4_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralRelativeImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport5_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport5_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport5_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport5_test.go index d173d523170e5..1b38f08fa91c8 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport5_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralRelativeImport5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport6_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport6_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport6_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport6_test.go index 34b146698f1f5..c6ef1aea428c3 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImport6_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImport6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralRelativeImport6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go index 9130b1e38b654..38832cb8e5a4d 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralRelativeImportAllowJSTrue_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralRelativeImportAllowJSTrue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go index 08290449ab40e..b51589a71156c 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteralWithDynamicImport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteralWithDynamicImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_details_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_details_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionForStringLiteral_details_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_details_test.go index 7676a0ea3e67e..175bcbc22c4ff 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_details_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_details_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_details(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go index 012d7a705a08a..00d0def4d7b7d 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_mappedTypeMembers_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_mappedTypeMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference1_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference1_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference1_test.go index f03d9651e7df9..b1bd3c2282922 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference1_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference2_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference2_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference2_test.go index ba54957eb3190..a58be16130a7c 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference2_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference3_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference3_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference3_test.go index 6934038fb97ac..e6d6108d7f26f 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference3_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference4_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference4_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference4_test.go index 95f6b0e53c416..ce4bd01c9dab0 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference4_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference5_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference5_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference5_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference5_test.go index 0a870e4b251c7..1be030835dbd1 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference5_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference6_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference6_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference6_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference6_test.go index 6883184b7feba..23347e3694760 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference6_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference7_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference7_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference7_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference7_test.go index 9fab8e37eb98c..30ed6ff47724b 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference7_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference8_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference8_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference8_test.go index 531a18f777c4e..0b3189a6be7a6 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference8_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference_test.go index a5b3e1fba6fb2..4334b44c8506c 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_quotePreference_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_quotePreference_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral_quotePreference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionForStringLiteral_test.go b/tsc/pkg/fourslash/tests/completionForStringLiteral_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionForStringLiteral_test.go rename to tsc/pkg/fourslash/tests/completionForStringLiteral_test.go index ee1c02db33b23..b4519fe02927f 100644 --- a/tsc/internal/fourslash/tests/completionForStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionForStringLiteral_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionForStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportAttributes_test.go b/tsc/pkg/fourslash/tests/completionImportAttributes_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionImportAttributes_test.go rename to tsc/pkg/fourslash/tests/completionImportAttributes_test.go index 9040676285b12..bef9096b80dc7 100644 --- a/tsc/internal/fourslash/tests/completionImportAttributes_test.go +++ b/tsc/pkg/fourslash/tests/completionImportAttributes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // !!! can delete, there are similar tests that haven't been ported yet. diff --git a/tsc/internal/fourslash/tests/completionImportKeywordNoCrash_test.go b/tsc/pkg/fourslash/tests/completionImportKeywordNoCrash_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionImportKeywordNoCrash_test.go rename to tsc/pkg/fourslash/tests/completionImportKeywordNoCrash_test.go index 2b4f2f8163562..32aa015614d4f 100644 --- a/tsc/internal/fourslash/tests/completionImportKeywordNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/completionImportKeywordNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test that requesting completions after a keyword in an import statement diff --git a/tsc/internal/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go b/tsc/pkg/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go index 74763682b60b3..0fe1f847c8816 100644 --- a/tsc/internal/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionImportMetaWithGlobalDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportMetaWithGlobalDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportMeta_test.go b/tsc/pkg/fourslash/tests/completionImportMeta_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionImportMeta_test.go rename to tsc/pkg/fourslash/tests/completionImportMeta_test.go index d07bb87787016..b3746786fdad9 100644 --- a/tsc/internal/fourslash/tests/completionImportMeta_test.go +++ b/tsc/pkg/fourslash/tests/completionImportMeta_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportMeta(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go index f2cc16480ce59..46009033072b8 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingDts_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingDts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go index af7c3650ae480..804c0a6844db9 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJs_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go index 58a76244b961d..3fc835d9f2d3c 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingJsx_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingJsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go index fc736bf9548ec..8dd9796a80bb6 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTs_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingTs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go index 452052aa7154f..8e11886b74d82 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxPreserve_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingTsxPreserve(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go index 2c7d892005ffe..f839168654d72 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingTsxReact_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingTsxReact(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go rename to tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go index f726735fbd284..844b1e9f3dfe3 100644 --- a/tsc/internal/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go +++ b/tsc/pkg/fourslash/tests/completionImportModuleSpecifierEndingUnsupportedExtension_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionImportModuleSpecifierEndingUnsupportedExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go b/tsc/pkg/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go rename to tsc/pkg/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go index 057a6cbe75dcd..ddb6bd58367ae 100644 --- a/tsc/internal/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go +++ b/tsc/pkg/fourslash/tests/completionInArrayLiteralAfterInvalidToken1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInArrayLiteralAfterInvalidToken1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInAugmentedClassModule_test.go b/tsc/pkg/fourslash/tests/completionInAugmentedClassModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionInAugmentedClassModule_test.go rename to tsc/pkg/fourslash/tests/completionInAugmentedClassModule_test.go index 5b2e6e62e488f..35b8f691af4df 100644 --- a/tsc/internal/fourslash/tests/completionInAugmentedClassModule_test.go +++ b/tsc/pkg/fourslash/tests/completionInAugmentedClassModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInAugmentedClassModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInChecks1_test.go b/tsc/pkg/fourslash/tests/completionInChecks1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionInChecks1_test.go rename to tsc/pkg/fourslash/tests/completionInChecks1_test.go index 341d618a76958..0bcf287ebd456 100644 --- a/tsc/internal/fourslash/tests/completionInChecks1_test.go +++ b/tsc/pkg/fourslash/tests/completionInChecks1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInChecks1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go b/tsc/pkg/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go rename to tsc/pkg/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go index d92c7d811229f..fb2dd835d9c48 100644 --- a/tsc/internal/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go +++ b/tsc/pkg/fourslash/tests/completionInFunctionLikeBody_includesPrimitiveTypes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInFunctionLikeBody_includesPrimitiveTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInIncompleteCallExpression_test.go b/tsc/pkg/fourslash/tests/completionInIncompleteCallExpression_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionInIncompleteCallExpression_test.go rename to tsc/pkg/fourslash/tests/completionInIncompleteCallExpression_test.go index 1f224787d11db..a37d3af0af02a 100644 --- a/tsc/internal/fourslash/tests/completionInIncompleteCallExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionInIncompleteCallExpression_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInIncompleteCallExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInJSDocFunctionNew_test.go b/tsc/pkg/fourslash/tests/completionInJSDocFunctionNew_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionInJSDocFunctionNew_test.go rename to tsc/pkg/fourslash/tests/completionInJSDocFunctionNew_test.go index ff5a78bf69504..7fa819fae3f17 100644 --- a/tsc/internal/fourslash/tests/completionInJSDocFunctionNew_test.go +++ b/tsc/pkg/fourslash/tests/completionInJSDocFunctionNew_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInJSDocFunctionNew(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInJSDocFunctionThis_test.go b/tsc/pkg/fourslash/tests/completionInJSDocFunctionThis_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionInJSDocFunctionThis_test.go rename to tsc/pkg/fourslash/tests/completionInJSDocFunctionThis_test.go index 4d2807476a523..3de27bdf0810f 100644 --- a/tsc/internal/fourslash/tests/completionInJSDocFunctionThis_test.go +++ b/tsc/pkg/fourslash/tests/completionInJSDocFunctionThis_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInJSDocFunctionThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go b/tsc/pkg/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go rename to tsc/pkg/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go index c2cb5bb32a35a..baf3f86ecbbfa 100644 --- a/tsc/internal/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionInJSDocPropertyWithLinkNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInJSDocPropertyWithLinkNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInJsDocQualifiedNames_test.go b/tsc/pkg/fourslash/tests/completionInJsDocQualifiedNames_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionInJsDocQualifiedNames_test.go rename to tsc/pkg/fourslash/tests/completionInJsDocQualifiedNames_test.go index bc302b6fb9279..c68ff52094e85 100644 --- a/tsc/internal/fourslash/tests/completionInJsDocQualifiedNames_test.go +++ b/tsc/pkg/fourslash/tests/completionInJsDocQualifiedNames_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInJsDocQualifiedNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInJsDoc_test.go b/tsc/pkg/fourslash/tests/completionInJsDoc_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionInJsDoc_test.go rename to tsc/pkg/fourslash/tests/completionInJsDoc_test.go index 94784bba6d9a5..6daec0398cfd8 100644 --- a/tsc/internal/fourslash/tests/completionInJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/completionInJsDoc_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInNamedImportLocation_test.go b/tsc/pkg/fourslash/tests/completionInNamedImportLocation_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionInNamedImportLocation_test.go rename to tsc/pkg/fourslash/tests/completionInNamedImportLocation_test.go index 835aa33b1641d..6df6617b44e18 100644 --- a/tsc/internal/fourslash/tests/completionInNamedImportLocation_test.go +++ b/tsc/pkg/fourslash/tests/completionInNamedImportLocation_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInNamedImportLocation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInTernaryConditional_test.go b/tsc/pkg/fourslash/tests/completionInTernaryConditional_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionInTernaryConditional_test.go rename to tsc/pkg/fourslash/tests/completionInTernaryConditional_test.go index 0b3e6df5669a1..e30bdb35d727b 100644 --- a/tsc/internal/fourslash/tests/completionInTernaryConditional_test.go +++ b/tsc/pkg/fourslash/tests/completionInTernaryConditional_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInTernaryConditional(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInTypeOf1_test.go b/tsc/pkg/fourslash/tests/completionInTypeOf1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionInTypeOf1_test.go rename to tsc/pkg/fourslash/tests/completionInTypeOf1_test.go index d842a8b687532..233e85551e734 100644 --- a/tsc/internal/fourslash/tests/completionInTypeOf1_test.go +++ b/tsc/pkg/fourslash/tests/completionInTypeOf1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInTypeOf1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInTypeOf2_test.go b/tsc/pkg/fourslash/tests/completionInTypeOf2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionInTypeOf2_test.go rename to tsc/pkg/fourslash/tests/completionInTypeOf2_test.go index bd792d1ec39bb..1b63d1e78d631 100644 --- a/tsc/internal/fourslash/tests/completionInTypeOf2_test.go +++ b/tsc/pkg/fourslash/tests/completionInTypeOf2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInTypeOf2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInUncheckedJSFile_test.go b/tsc/pkg/fourslash/tests/completionInUncheckedJSFile_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionInUncheckedJSFile_test.go rename to tsc/pkg/fourslash/tests/completionInUncheckedJSFile_test.go index 79d62bafc5926..d6b3684fdf86f 100644 --- a/tsc/internal/fourslash/tests/completionInUncheckedJSFile_test.go +++ b/tsc/pkg/fourslash/tests/completionInUncheckedJSFile_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInUncheckedJSFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go b/tsc/pkg/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go rename to tsc/pkg/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go index a91ebb2e3bd28..943dca828f68a 100644 --- a/tsc/internal/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/completionInfoWithExplicitTypeArguments_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInfoWithExplicitTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInsideFunctionContainsArguments_test.go b/tsc/pkg/fourslash/tests/completionInsideFunctionContainsArguments_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionInsideFunctionContainsArguments_test.go rename to tsc/pkg/fourslash/tests/completionInsideFunctionContainsArguments_test.go index 4c63271056ed6..93219f18df63b 100644 --- a/tsc/internal/fourslash/tests/completionInsideFunctionContainsArguments_test.go +++ b/tsc/pkg/fourslash/tests/completionInsideFunctionContainsArguments_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInsideFunctionContainsArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go b/tsc/pkg/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go rename to tsc/pkg/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go index 8d9ff01a08945..8769d1336825e 100644 --- a/tsc/internal/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go +++ b/tsc/pkg/fourslash/tests/completionInsideObjectLiteralExpressionWithInstantiatedClassType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionInsideObjectLiteralExpressionWithInstantiatedClassType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionJSDocNamePath_test.go b/tsc/pkg/fourslash/tests/completionJSDocNamePath_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionJSDocNamePath_test.go rename to tsc/pkg/fourslash/tests/completionJSDocNamePath_test.go index 750b946d73371..51e0d25a7657d 100644 --- a/tsc/internal/fourslash/tests/completionJSDocNamePath_test.go +++ b/tsc/pkg/fourslash/tests/completionJSDocNamePath_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionJSDocNamePath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionJSDocNoCrash2_test.go b/tsc/pkg/fourslash/tests/completionJSDocNoCrash2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionJSDocNoCrash2_test.go rename to tsc/pkg/fourslash/tests/completionJSDocNoCrash2_test.go index 599d218a169c7..48d76f16e22a4 100644 --- a/tsc/internal/fourslash/tests/completionJSDocNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/completionJSDocNoCrash2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionJSDocNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionJSDocNoCrash_test.go b/tsc/pkg/fourslash/tests/completionJSDocNoCrash_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionJSDocNoCrash_test.go rename to tsc/pkg/fourslash/tests/completionJSDocNoCrash_test.go index bbfe86b9846fc..143e0b70e7c26 100644 --- a/tsc/internal/fourslash/tests/completionJSDocNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/completionJSDocNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionJSDocNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionJsxNoCrash_test.go b/tsc/pkg/fourslash/tests/completionJsxNoCrash_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionJsxNoCrash_test.go rename to tsc/pkg/fourslash/tests/completionJsxNoCrash_test.go index bafb2d067d14a..0cac8b4fc814c 100644 --- a/tsc/internal/fourslash/tests/completionJsxNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/completionJsxNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionJsxNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterAnyType_test.go b/tsc/pkg/fourslash/tests/completionListAfterAnyType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAfterAnyType_test.go rename to tsc/pkg/fourslash/tests/completionListAfterAnyType_test.go index cf77c02d676e3..c23f5dfda3db0 100644 --- a/tsc/internal/fourslash/tests/completionListAfterAnyType_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterAnyType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterAnyType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterClassExtends_test.go b/tsc/pkg/fourslash/tests/completionListAfterClassExtends_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAfterClassExtends_test.go rename to tsc/pkg/fourslash/tests/completionListAfterClassExtends_test.go index d78905a3c8a4a..ac585a41839b8 100644 --- a/tsc/internal/fourslash/tests/completionListAfterClassExtends_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterClassExtends_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterClassExtends(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterFunction2_test.go b/tsc/pkg/fourslash/tests/completionListAfterFunction2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListAfterFunction2_test.go rename to tsc/pkg/fourslash/tests/completionListAfterFunction2_test.go index 2a39574edd9e3..422ce27bbd14d 100644 --- a/tsc/internal/fourslash/tests/completionListAfterFunction2_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterFunction2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterFunction2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterFunction3_test.go b/tsc/pkg/fourslash/tests/completionListAfterFunction3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListAfterFunction3_test.go rename to tsc/pkg/fourslash/tests/completionListAfterFunction3_test.go index 0be4e089807f4..abd5893869b15 100644 --- a/tsc/internal/fourslash/tests/completionListAfterFunction3_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterFunction3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterFunction3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterFunction_test.go b/tsc/pkg/fourslash/tests/completionListAfterFunction_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionListAfterFunction_test.go rename to tsc/pkg/fourslash/tests/completionListAfterFunction_test.go index 1b87066750154..3370926610e9f 100644 --- a/tsc/internal/fourslash/tests/completionListAfterFunction_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterFunction_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterInvalidCharacter_test.go b/tsc/pkg/fourslash/tests/completionListAfterInvalidCharacter_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListAfterInvalidCharacter_test.go rename to tsc/pkg/fourslash/tests/completionListAfterInvalidCharacter_test.go index aaa6de147fa80..1f5cd3f47b28b 100644 --- a/tsc/internal/fourslash/tests/completionListAfterInvalidCharacter_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterInvalidCharacter_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterInvalidCharacter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterNumericLiteral1_test.go b/tsc/pkg/fourslash/tests/completionListAfterNumericLiteral1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListAfterNumericLiteral1_test.go rename to tsc/pkg/fourslash/tests/completionListAfterNumericLiteral1_test.go index 426402b7834fd..f70cd520e9925 100644 --- a/tsc/internal/fourslash/tests/completionListAfterNumericLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterNumericLiteral1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterNumericLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterNumericLiteral_test.go b/tsc/pkg/fourslash/tests/completionListAfterNumericLiteral_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListAfterNumericLiteral_test.go rename to tsc/pkg/fourslash/tests/completionListAfterNumericLiteral_test.go index 559b2c0e99f74..113cb22d5ca75 100644 --- a/tsc/internal/fourslash/tests/completionListAfterNumericLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterNumericLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterNumericLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterObjectLiteral1_test.go b/tsc/pkg/fourslash/tests/completionListAfterObjectLiteral1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAfterObjectLiteral1_test.go rename to tsc/pkg/fourslash/tests/completionListAfterObjectLiteral1_test.go index 413daca0339b7..181691fd755a2 100644 --- a/tsc/internal/fourslash/tests/completionListAfterObjectLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterObjectLiteral1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterObjectLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterPropertyName_test.go b/tsc/pkg/fourslash/tests/completionListAfterPropertyName_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListAfterPropertyName_test.go rename to tsc/pkg/fourslash/tests/completionListAfterPropertyName_test.go index 309d8a21bd23b..245842f154455 100644 --- a/tsc/internal/fourslash/tests/completionListAfterPropertyName_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterPropertyName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterPropertyName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go index d401ef97039dd..9b3ce6d0401c4 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral01_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go index 392c7ca2ed612..d785e647d0fd8 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go index 96e0dc9426a24..fdd835b2e00a6 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go index 580e1700fe80d..e542cfe5a9d5f 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral04_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go index 9788fad6132d8..a9e8e93f2f365 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go rename to tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go index 4487fa142536e..c21779ff7b25d 100644 --- a/tsc/internal/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterRegularExpressionLiteral1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterRegularExpressionLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterSlash_test.go b/tsc/pkg/fourslash/tests/completionListAfterSlash_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListAfterSlash_test.go rename to tsc/pkg/fourslash/tests/completionListAfterSlash_test.go index b7e454d6e2ad6..3314e88f8ea6f 100644 --- a/tsc/internal/fourslash/tests/completionListAfterSlash_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterSlash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterSlash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterSpreadOperator01_test.go b/tsc/pkg/fourslash/tests/completionListAfterSpreadOperator01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAfterSpreadOperator01_test.go rename to tsc/pkg/fourslash/tests/completionListAfterSpreadOperator01_test.go index 9758b8f8ee87a..662fbc3127f9d 100644 --- a/tsc/internal/fourslash/tests/completionListAfterSpreadOperator01_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterSpreadOperator01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterSpreadOperator01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterStringLiteral1_test.go b/tsc/pkg/fourslash/tests/completionListAfterStringLiteral1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAfterStringLiteral1_test.go rename to tsc/pkg/fourslash/tests/completionListAfterStringLiteral1_test.go index 1f1b8df78f37c..ca9702c8ac6bc 100644 --- a/tsc/internal/fourslash/tests/completionListAfterStringLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterStringLiteral1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterStringLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go b/tsc/pkg/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go rename to tsc/pkg/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go index 73e7bf12e3ec9..5d8f851c039bf 100644 --- a/tsc/internal/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAfterStringLiteralTypeWithNoSubstitutionTemplateLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go b/tsc/pkg/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go rename to tsc/pkg/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go index 3652fea39c1ff..a167186e50489 100644 --- a/tsc/internal/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go +++ b/tsc/pkg/fourslash/tests/completionListAlreadyImportedNamespaceExportAlias_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAlreadyImportedNamespaceExportAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go rename to tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go index d0b0d37deea12..76b3179dff2b3 100644 --- a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go +++ b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedDot_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAndMemberListOnCommentedDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go rename to tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go index 6aa21019be02d..c125c8051227a 100644 --- a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go +++ b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAndMemberListOnCommentedLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go rename to tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go index f3c2fda9ac0af..c28480778d29b 100644 --- a/tsc/internal/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go +++ b/tsc/pkg/fourslash/tests/completionListAndMemberListOnCommentedWhiteSpace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAndMemberListOnCommentedWhiteSpace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtBeginningOfFile01_test.go b/tsc/pkg/fourslash/tests/completionListAtBeginningOfFile01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListAtBeginningOfFile01_test.go rename to tsc/pkg/fourslash/tests/completionListAtBeginningOfFile01_test.go index 2b25d8d429250..b89b5e79bc7e9 100644 --- a/tsc/internal/fourslash/tests/completionListAtBeginningOfFile01_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtBeginningOfFile01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtBeginningOfFile01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go b/tsc/pkg/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go index 384febdc6b1a6..6c0ec6aeeba30 100644 --- a/tsc/internal/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtBeginningOfIdentifierInArrowFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtBeginningOfIdentifierInArrowFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtDeclarationOfParameterType_test.go b/tsc/pkg/fourslash/tests/completionListAtDeclarationOfParameterType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAtDeclarationOfParameterType_test.go rename to tsc/pkg/fourslash/tests/completionListAtDeclarationOfParameterType_test.go index f32e69928037e..4e3c8b291f048 100644 --- a/tsc/internal/fourslash/tests/completionListAtDeclarationOfParameterType_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtDeclarationOfParameterType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtDeclarationOfParameterType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEOF1_test.go b/tsc/pkg/fourslash/tests/completionListAtEOF1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListAtEOF1_test.go rename to tsc/pkg/fourslash/tests/completionListAtEOF1_test.go index 2e50b0016924a..b9d998b4624b0 100644 --- a/tsc/internal/fourslash/tests/completionListAtEOF1_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEOF1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEOF1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEOF2_test.go b/tsc/pkg/fourslash/tests/completionListAtEOF2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAtEOF2_test.go rename to tsc/pkg/fourslash/tests/completionListAtEOF2_test.go index a8f3c3c454a90..4044691ec10f6 100644 --- a/tsc/internal/fourslash/tests/completionListAtEOF2_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEOF2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEOF2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEOF_test.go b/tsc/pkg/fourslash/tests/completionListAtEOF_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListAtEOF_test.go rename to tsc/pkg/fourslash/tests/completionListAtEOF_test.go index 161155a955a05..3fde2af4c888b 100644 --- a/tsc/internal/fourslash/tests/completionListAtEOF_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEOF_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEOF(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go index d714d8013d95d..36314ab36ee0c 100644 --- a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEndOfWordInArrowFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go rename to tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go index 2fae5ecd0a713..818bd511ac943 100644 --- a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction02_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEndOfWordInArrowFunction02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go rename to tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go index af44cb2d39cff..c459e1c2d8041 100644 --- a/tsc/internal/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtEndOfWordInArrowFunction03_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtEndOfWordInArrowFunction03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go index 524589e565be9..8f36c15fa1246 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_Generics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_Generics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go index 1f6068b8b1d4c..5639e0569d2a7 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_catch_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_catch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go index 93f0abe0c4838..eb646f9b8b086 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_classes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_classes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go index d55b6d44b4db1..611ffdf53ee3a 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_destructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_destructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go index db49ca8a4b882..3f056059161fb 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_enumMembers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go index 4c2694c0a7c88..56afd57e043f3 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enumMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_enumMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go index b6cd6e261fdf6..97dc35deeb416 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_enums_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_enums(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go index ed863da1d16cf..3daa809ecb7d4 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_functions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_functions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go index 6520c18b27a89..e67a0889c9f73 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_infers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_infers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go index c894d375c7ccd..b0c073a7e2c87 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_interfaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_interfaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go index 03720870a228b..b7c399a25cc7d 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_properties_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_properties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go rename to tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go index b4f088c73180c..6aa826f626c26 100644 --- a/tsc/internal/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtIdentifierDefinitionLocations_varDeclarations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtIdentifierDefinitionLocations_varDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtInvalidLocations_test.go b/tsc/pkg/fourslash/tests/completionListAtInvalidLocations_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListAtInvalidLocations_test.go rename to tsc/pkg/fourslash/tests/completionListAtInvalidLocations_test.go index 31b9d3556bc60..7a07bce4843c1 100644 --- a/tsc/internal/fourslash/tests/completionListAtInvalidLocations_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtInvalidLocations_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtInvalidLocations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtNodeBoundary_test.go b/tsc/pkg/fourslash/tests/completionListAtNodeBoundary_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListAtNodeBoundary_test.go rename to tsc/pkg/fourslash/tests/completionListAtNodeBoundary_test.go index ed079260dc40c..05ec8b72fa052 100644 --- a/tsc/internal/fourslash/tests/completionListAtNodeBoundary_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtNodeBoundary_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtNodeBoundary(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListAtThisType_test.go b/tsc/pkg/fourslash/tests/completionListAtThisType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListAtThisType_test.go rename to tsc/pkg/fourslash/tests/completionListAtThisType_test.go index 9a081e3868c2f..80a2805dd865e 100644 --- a/tsc/internal/fourslash/tests/completionListAtThisType_test.go +++ b/tsc/pkg/fourslash/tests/completionListAtThisType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListAtThisType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBeforeKeyword_test.go b/tsc/pkg/fourslash/tests/completionListBeforeKeyword_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListBeforeKeyword_test.go rename to tsc/pkg/fourslash/tests/completionListBeforeKeyword_test.go index fba31c0e2c673..0afd392b2e730 100644 --- a/tsc/internal/fourslash/tests/completionListBeforeKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionListBeforeKeyword_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBeforeKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBeforeNewScope01_test.go b/tsc/pkg/fourslash/tests/completionListBeforeNewScope01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListBeforeNewScope01_test.go rename to tsc/pkg/fourslash/tests/completionListBeforeNewScope01_test.go index bd20825f63d58..68d6407c27b77 100644 --- a/tsc/internal/fourslash/tests/completionListBeforeNewScope01_test.go +++ b/tsc/pkg/fourslash/tests/completionListBeforeNewScope01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBeforeNewScope01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBeforeNewScope02_test.go b/tsc/pkg/fourslash/tests/completionListBeforeNewScope02_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListBeforeNewScope02_test.go rename to tsc/pkg/fourslash/tests/completionListBeforeNewScope02_test.go index d3b86a142ac83..dcee1aaa6207a 100644 --- a/tsc/internal/fourslash/tests/completionListBeforeNewScope02_test.go +++ b/tsc/pkg/fourslash/tests/completionListBeforeNewScope02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBeforeNewScope02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBuilderLocations_Modules_test.go b/tsc/pkg/fourslash/tests/completionListBuilderLocations_Modules_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListBuilderLocations_Modules_test.go rename to tsc/pkg/fourslash/tests/completionListBuilderLocations_Modules_test.go index a4a75401a0978..a72a5f68cadbc 100644 --- a/tsc/internal/fourslash/tests/completionListBuilderLocations_Modules_test.go +++ b/tsc/pkg/fourslash/tests/completionListBuilderLocations_Modules_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBuilderLocations_Modules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go b/tsc/pkg/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go rename to tsc/pkg/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go index dd982ba1802eb..eba3c296d4ceb 100644 --- a/tsc/internal/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/completionListBuilderLocations_VariableDeclarations_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBuilderLocations_VariableDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBuilderLocations_parameters_test.go b/tsc/pkg/fourslash/tests/completionListBuilderLocations_parameters_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListBuilderLocations_parameters_test.go rename to tsc/pkg/fourslash/tests/completionListBuilderLocations_parameters_test.go index 0d83100ccb849..c3a52e5a4ef07 100644 --- a/tsc/internal/fourslash/tests/completionListBuilderLocations_parameters_test.go +++ b/tsc/pkg/fourslash/tests/completionListBuilderLocations_parameters_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBuilderLocations_parameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListBuilderLocations_properties_test.go b/tsc/pkg/fourslash/tests/completionListBuilderLocations_properties_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListBuilderLocations_properties_test.go rename to tsc/pkg/fourslash/tests/completionListBuilderLocations_properties_test.go index 3a28e4dbab851..4126c44692dae 100644 --- a/tsc/internal/fourslash/tests/completionListBuilderLocations_properties_test.go +++ b/tsc/pkg/fourslash/tests/completionListBuilderLocations_properties_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListBuilderLocations_properties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListCladule_test.go b/tsc/pkg/fourslash/tests/completionListCladule_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListCladule_test.go rename to tsc/pkg/fourslash/tests/completionListCladule_test.go index 256109e05ef69..96528a516e3e2 100644 --- a/tsc/internal/fourslash/tests/completionListCladule_test.go +++ b/tsc/pkg/fourslash/tests/completionListCladule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListCladule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go b/tsc/pkg/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go rename to tsc/pkg/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go index 4fbe010fdab18..f2ac78eec0c7c 100644 --- a/tsc/internal/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go +++ b/tsc/pkg/fourslash/tests/completionListClassMembersWithSuperClassFromUnknownNamespace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListClassMembersWithSuperClassFromUnknownNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListClassMembers_test.go b/tsc/pkg/fourslash/tests/completionListClassMembers_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListClassMembers_test.go rename to tsc/pkg/fourslash/tests/completionListClassMembers_test.go index 5b12e11ff8b16..6463e20737112 100644 --- a/tsc/internal/fourslash/tests/completionListClassMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListClassMembers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListClassMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListClassPrivateFields_test.go b/tsc/pkg/fourslash/tests/completionListClassPrivateFields_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListClassPrivateFields_test.go rename to tsc/pkg/fourslash/tests/completionListClassPrivateFields_test.go index 2673ad97669ec..c4722ebc61bc0 100644 --- a/tsc/internal/fourslash/tests/completionListClassPrivateFields_test.go +++ b/tsc/pkg/fourslash/tests/completionListClassPrivateFields_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListClassPrivateFields(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListClassThisJS_test.go b/tsc/pkg/fourslash/tests/completionListClassThisJS_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListClassThisJS_test.go rename to tsc/pkg/fourslash/tests/completionListClassThisJS_test.go index 900ec7cc9239a..874f40eb01415 100644 --- a/tsc/internal/fourslash/tests/completionListClassThisJS_test.go +++ b/tsc/pkg/fourslash/tests/completionListClassThisJS_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListClassThisJS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go b/tsc/pkg/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go rename to tsc/pkg/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go index e0bcbf4003566..bb611378b6e15 100644 --- a/tsc/internal/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go +++ b/tsc/pkg/fourslash/tests/completionListDefaultTypeArgumentPositionTypeOnly_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListDefaultTypeArgumentPositionTypeOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListEnumMembers_test.go b/tsc/pkg/fourslash/tests/completionListEnumMembers_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListEnumMembers_test.go rename to tsc/pkg/fourslash/tests/completionListEnumMembers_test.go index d19b74d33936a..2e2baafc426cf 100644 --- a/tsc/internal/fourslash/tests/completionListEnumMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListEnumMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListEnumMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListEnumValues_test.go b/tsc/pkg/fourslash/tests/completionListEnumValues_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListEnumValues_test.go rename to tsc/pkg/fourslash/tests/completionListEnumValues_test.go index 80c140fbc0bd2..780f8c3746e22 100644 --- a/tsc/internal/fourslash/tests/completionListEnumValues_test.go +++ b/tsc/pkg/fourslash/tests/completionListEnumValues_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListEnumValues(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForDerivedType1_test.go b/tsc/pkg/fourslash/tests/completionListForDerivedType1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListForDerivedType1_test.go rename to tsc/pkg/fourslash/tests/completionListForDerivedType1_test.go index 61c43813ab2ad..a04110fcef1c8 100644 --- a/tsc/internal/fourslash/tests/completionListForDerivedType1_test.go +++ b/tsc/pkg/fourslash/tests/completionListForDerivedType1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForDerivedType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForExportEquals2_test.go b/tsc/pkg/fourslash/tests/completionListForExportEquals2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListForExportEquals2_test.go rename to tsc/pkg/fourslash/tests/completionListForExportEquals2_test.go index f98611ad44d5d..4bd0b1ff1ec0f 100644 --- a/tsc/internal/fourslash/tests/completionListForExportEquals2_test.go +++ b/tsc/pkg/fourslash/tests/completionListForExportEquals2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForExportEquals2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForExportEquals_test.go b/tsc/pkg/fourslash/tests/completionListForExportEquals_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListForExportEquals_test.go rename to tsc/pkg/fourslash/tests/completionListForExportEquals_test.go index 78f19abe3c5c7..167f7cac93bdb 100644 --- a/tsc/internal/fourslash/tests/completionListForExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/completionListForExportEquals_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForGenericInstance1_test.go b/tsc/pkg/fourslash/tests/completionListForGenericInstance1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListForGenericInstance1_test.go rename to tsc/pkg/fourslash/tests/completionListForGenericInstance1_test.go index 767d6a6059a1c..22976ba5a7829 100644 --- a/tsc/internal/fourslash/tests/completionListForGenericInstance1_test.go +++ b/tsc/pkg/fourslash/tests/completionListForGenericInstance1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForGenericInstance1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go b/tsc/pkg/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go rename to tsc/pkg/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go index 6210b9f52ec26..71274909bacd1 100644 --- a/tsc/internal/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go +++ b/tsc/pkg/fourslash/tests/completionListForNonExportedMemberInAmbientModuleWithExportAssignment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForNonExportedMemberInAmbientModuleWithExportAssignment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForObjectSpread_test.go b/tsc/pkg/fourslash/tests/completionListForObjectSpread_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListForObjectSpread_test.go rename to tsc/pkg/fourslash/tests/completionListForObjectSpread_test.go index af62ce4224557..c2c7e60f6d66c 100644 --- a/tsc/internal/fourslash/tests/completionListForObjectSpread_test.go +++ b/tsc/pkg/fourslash/tests/completionListForObjectSpread_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForObjectSpread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForRest_test.go b/tsc/pkg/fourslash/tests/completionListForRest_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListForRest_test.go rename to tsc/pkg/fourslash/tests/completionListForRest_test.go index 9eeb687a340fd..72469fd7f4968 100644 --- a/tsc/internal/fourslash/tests/completionListForRest_test.go +++ b/tsc/pkg/fourslash/tests/completionListForRest_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForRest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go index 1f767a7c7022d..2ad70a7fb870b 100644 --- a/tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForShorthandPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment_test.go index ca85c3de92afd..cab8182a64354 100644 --- a/tsc/internal/fourslash/tests/completionListForShorthandPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/completionListForShorthandPropertyAssignment_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForShorthandPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go rename to tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go index 5ec1a9643f2af..6e411c6c34395 100644 --- a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go +++ b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForTransitivelyExportedMembers01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go rename to tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go index 300da35df58dd..0c38153682231 100644 --- a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go +++ b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForTransitivelyExportedMembers02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go rename to tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go index 6d5507f116b57..4dd09f99d86a3 100644 --- a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go +++ b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForTransitivelyExportedMembers03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go rename to tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go index 56e28c2d050ec..230b93addd6af 100644 --- a/tsc/internal/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go +++ b/tsc/pkg/fourslash/tests/completionListForTransitivelyExportedMembers04_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForTransitivelyExportedMembers04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListForUnicodeEscapeName_test.go b/tsc/pkg/fourslash/tests/completionListForUnicodeEscapeName_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListForUnicodeEscapeName_test.go rename to tsc/pkg/fourslash/tests/completionListForUnicodeEscapeName_test.go index 435f86aabf84c..dbf7bd15337e4 100644 --- a/tsc/internal/fourslash/tests/completionListForUnicodeEscapeName_test.go +++ b/tsc/pkg/fourslash/tests/completionListForUnicodeEscapeName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListForUnicodeEscapeName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListFunctionExpression_test.go b/tsc/pkg/fourslash/tests/completionListFunctionExpression_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/completionListFunctionExpression_test.go index 5a7dbc4f7c47c..af97617a5bba2 100644 --- a/tsc/internal/fourslash/tests/completionListFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionListFunctionExpression_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListFunctionMembers_test.go b/tsc/pkg/fourslash/tests/completionListFunctionMembers_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListFunctionMembers_test.go rename to tsc/pkg/fourslash/tests/completionListFunctionMembers_test.go index 8cb4c220efe64..1318ae648f843 100644 --- a/tsc/internal/fourslash/tests/completionListFunctionMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListFunctionMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListFunctionMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListImplementingInterfaceFunctions_test.go b/tsc/pkg/fourslash/tests/completionListImplementingInterfaceFunctions_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListImplementingInterfaceFunctions_test.go rename to tsc/pkg/fourslash/tests/completionListImplementingInterfaceFunctions_test.go index b4a0d9609f72d..9c9a7061e3a01 100644 --- a/tsc/internal/fourslash/tests/completionListImplementingInterfaceFunctions_test.go +++ b/tsc/pkg/fourslash/tests/completionListImplementingInterfaceFunctions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListImplementingInterfaceFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go b/tsc/pkg/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go rename to tsc/pkg/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go index 0851c1e9e912e..b16d22cbf03f2 100644 --- a/tsc/internal/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInArrowFunctionInUnclosedCallSite01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInArrowFunctionInUnclosedCallSite01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go b/tsc/pkg/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go rename to tsc/pkg/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go index 794d620eb99dc..6660ba2d461be 100644 --- a/tsc/internal/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClassExpressionWithTypeParameter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClassExpressionWithTypeParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClassStaticBlocks_test.go b/tsc/pkg/fourslash/tests/completionListInClassStaticBlocks_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInClassStaticBlocks_test.go rename to tsc/pkg/fourslash/tests/completionListInClassStaticBlocks_test.go index caf27e91d03ac..4cd336df4c1f7 100644 --- a/tsc/internal/fourslash/tests/completionListInClassStaticBlocks_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClassStaticBlocks_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClassStaticBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction01_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInClosedFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction01_test.go index 6c260c05eaee8..f0a633d4410a9 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction02_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction02_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInClosedFunction02_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction02_test.go index fe8e754fdcb48..72ccfeb900d7f 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction03_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInClosedFunction03_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction03_test.go index dfcc676b3fa57..f77bf19ead601 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction04_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction04_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInClosedFunction04_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction04_test.go index 00e9a311af43c..0f1ab0c3889e5 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction04_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction05_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction05_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInClosedFunction05_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction05_test.go index ea05996804de0..6f672e749fb84 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction05_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction05_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction06_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction06_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInClosedFunction06_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction06_test.go index 77b637b549680..baa8a7631ac87 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction06_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction06_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedFunction07_test.go b/tsc/pkg/fourslash/tests/completionListInClosedFunction07_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInClosedFunction07_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedFunction07_test.go index 75ba5495e8c12..901f5bb7d6c9a 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedFunction07_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedFunction07_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedFunction07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go index eab884b135158..ea36d1dfd27e3 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedObjectTypeLiteralInSignature01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go index 3910949f45ca3..562914fa25e61 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedObjectTypeLiteralInSignature02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go index 837142e761e6c..e17073ccf17a3 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedObjectTypeLiteralInSignature03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go rename to tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go index f6111e41c88e0..385d9efb841ad 100644 --- a/tsc/internal/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInClosedObjectTypeLiteralInSignature04_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInClosedObjectTypeLiteralInSignature04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInComments2_test.go b/tsc/pkg/fourslash/tests/completionListInComments2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListInComments2_test.go rename to tsc/pkg/fourslash/tests/completionListInComments2_test.go index 4821ce35927ef..12e3bdce5ea95 100644 --- a/tsc/internal/fourslash/tests/completionListInComments2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInComments2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInComments2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInComments3_test.go b/tsc/pkg/fourslash/tests/completionListInComments3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInComments3_test.go rename to tsc/pkg/fourslash/tests/completionListInComments3_test.go index c5f55f7afaadc..b467ddfb31bc6 100644 --- a/tsc/internal/fourslash/tests/completionListInComments3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInComments3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInComments3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInComments_test.go b/tsc/pkg/fourslash/tests/completionListInComments_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListInComments_test.go rename to tsc/pkg/fourslash/tests/completionListInComments_test.go index 402b5453385a3..805f49d7b8c61 100644 --- a/tsc/internal/fourslash/tests/completionListInComments_test.go +++ b/tsc/pkg/fourslash/tests/completionListInComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInContextuallyTypedArgument_test.go b/tsc/pkg/fourslash/tests/completionListInContextuallyTypedArgument_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInContextuallyTypedArgument_test.go rename to tsc/pkg/fourslash/tests/completionListInContextuallyTypedArgument_test.go index bc02bc0c6ecd0..6fa028e160216 100644 --- a/tsc/internal/fourslash/tests/completionListInContextuallyTypedArgument_test.go +++ b/tsc/pkg/fourslash/tests/completionListInContextuallyTypedArgument_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInContextuallyTypedArgument(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInEmptyFile_test.go b/tsc/pkg/fourslash/tests/completionListInEmptyFile_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInEmptyFile_test.go rename to tsc/pkg/fourslash/tests/completionListInEmptyFile_test.go index 4a3a76632b5a8..bfcd3654488b6 100644 --- a/tsc/internal/fourslash/tests/completionListInEmptyFile_test.go +++ b/tsc/pkg/fourslash/tests/completionListInEmptyFile_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInEmptyFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInExportClause01_test.go b/tsc/pkg/fourslash/tests/completionListInExportClause01_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListInExportClause01_test.go rename to tsc/pkg/fourslash/tests/completionListInExportClause01_test.go index fc15762cb1ecf..58b3a04ea1211 100644 --- a/tsc/internal/fourslash/tests/completionListInExportClause01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInExportClause01_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInExportClause01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInExportClause02_test.go b/tsc/pkg/fourslash/tests/completionListInExportClause02_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListInExportClause02_test.go rename to tsc/pkg/fourslash/tests/completionListInExportClause02_test.go index 9c3493ab7c110..3306668c1e97b 100644 --- a/tsc/internal/fourslash/tests/completionListInExportClause02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInExportClause02_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInExportClause02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInExportClause03_test.go b/tsc/pkg/fourslash/tests/completionListInExportClause03_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListInExportClause03_test.go rename to tsc/pkg/fourslash/tests/completionListInExportClause03_test.go index e99c4f58c27e3..1ec57c9ad7c0c 100644 --- a/tsc/internal/fourslash/tests/completionListInExportClause03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInExportClause03_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInExportClause03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInExtendsClauseAtEOF_test.go b/tsc/pkg/fourslash/tests/completionListInExtendsClauseAtEOF_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInExtendsClauseAtEOF_test.go rename to tsc/pkg/fourslash/tests/completionListInExtendsClauseAtEOF_test.go index 846d522478e52..5f2e56e484a0c 100644 --- a/tsc/internal/fourslash/tests/completionListInExtendsClauseAtEOF_test.go +++ b/tsc/pkg/fourslash/tests/completionListInExtendsClauseAtEOF_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInExtendsClauseAtEOF(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInExtendsClause_test.go b/tsc/pkg/fourslash/tests/completionListInExtendsClause_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInExtendsClause_test.go rename to tsc/pkg/fourslash/tests/completionListInExtendsClause_test.go index 2b3ef7d120bf7..72bef0d488891 100644 --- a/tsc/internal/fourslash/tests/completionListInExtendsClause_test.go +++ b/tsc/pkg/fourslash/tests/completionListInExtendsClause_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInExtendsClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInFatArrow_test.go b/tsc/pkg/fourslash/tests/completionListInFatArrow_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInFatArrow_test.go rename to tsc/pkg/fourslash/tests/completionListInFatArrow_test.go index 8f78a92b36f04..5928160504e01 100644 --- a/tsc/internal/fourslash/tests/completionListInFatArrow_test.go +++ b/tsc/pkg/fourslash/tests/completionListInFatArrow_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInFatArrow(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/completionListInFunctionDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionListInFunctionDeclaration_test.go index 3a14b802207d3..d1c8c7b3e3610 100644 --- a/tsc/internal/fourslash/tests/completionListInFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionListInFunctionDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause01_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause01_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListInImportClause01_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause01_test.go index c830f48d3f9de..8884f7e143341 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause02_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause02_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionListInImportClause02_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause02_test.go index 2d079fc1eafc6..7e185c4334365 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause02_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause03_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause03_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListInImportClause03_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause03_test.go index 647f4cd4157dd..a68c06ffa89bb 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause03_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause04_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause04_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInImportClause04_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause04_test.go index 293f57a86d8e4..05781d4dbf30d 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause04_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause05_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause05_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInImportClause05_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause05_test.go index dea8a69998169..704d0e0ae0a7b 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause05_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause05_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInImportClause06_test.go b/tsc/pkg/fourslash/tests/completionListInImportClause06_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInImportClause06_test.go rename to tsc/pkg/fourslash/tests/completionListInImportClause06_test.go index d1807a69f25aa..25684d4cb2c56 100644 --- a/tsc/internal/fourslash/tests/completionListInImportClause06_test.go +++ b/tsc/pkg/fourslash/tests/completionListInImportClause06_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInImportClause06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go b/tsc/pkg/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go index d322ca42575cd..fdc72ba25e82d 100644 --- a/tsc/internal/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInMiddleOfIdentifierInArrowFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInMiddleOfIdentifierInArrowFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go b/tsc/pkg/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go rename to tsc/pkg/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go index 0f1817435d8ed..157f8d68b8764 100644 --- a/tsc/internal/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamedClassExpressionWithShadowing_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamedClassExpressionWithShadowing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamedClassExpression_test.go b/tsc/pkg/fourslash/tests/completionListInNamedClassExpression_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInNamedClassExpression_test.go rename to tsc/pkg/fourslash/tests/completionListInNamedClassExpression_test.go index 8f0fd9da03552..dd4d0f06b2fe9 100644 --- a/tsc/internal/fourslash/tests/completionListInNamedClassExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamedClassExpression_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamedClassExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpression1_test.go b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInNamedFunctionExpression1_test.go rename to tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression1_test.go index d02abb04a1539..dd2a4a3a85381 100644 --- a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpression1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamedFunctionExpression1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go rename to tsc/pkg/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go index c6c30f85c43dc..a8059dd737a9d 100644 --- a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpressionWithShadowing_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamedFunctionExpressionWithShadowing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpression_test.go b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInNamedFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression_test.go index 0dbc787032d69..1c50c4adc290e 100644 --- a/tsc/internal/fourslash/tests/completionListInNamedFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamedFunctionExpression_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamedFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInNamespaceImportName01_test.go b/tsc/pkg/fourslash/tests/completionListInNamespaceImportName01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInNamespaceImportName01_test.go rename to tsc/pkg/fourslash/tests/completionListInNamespaceImportName01_test.go index fffdf8af027c8..9f8b86d457060 100644 --- a/tsc/internal/fourslash/tests/completionListInNamespaceImportName01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInNamespaceImportName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInNamespaceImportName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern01_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern01_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern01_test.go index 97b4f76e0c40a..4d06efab59422 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern02_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern02_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern02_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern02_test.go index 059cc3838a2fa..381a5716bed5d 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern03_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern03_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern03_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern03_test.go index b267d187c255d..fd7a816fc83eb 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern04_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern04_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern04_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern04_test.go index 0fd4d1d3e2fb0..0be190c523214 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern04_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern05_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern05_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern05_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern05_test.go index 7d76bd5ab5871..a79ac5efa8584 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern05_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern05_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern06_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern06_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern06_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern06_test.go index a27bdb205122c..977dff8083a03 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern06_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern07_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern07_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern07_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern07_test.go index 9dd00c8887df7..eae4926475342 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern07_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern07_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern08_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern08_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern08_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern08_test.go index 5584241dac2d2..bf7ad8c194937 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern08_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern08_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern09_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern09_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern09_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern09_test.go index f7b6077fd8562..d15671e6d96f6 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern09_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern09_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern10_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern10_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern10_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern10_test.go index a812e815508a1..35357916700ec 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern10_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern11_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern11_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern11_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern11_test.go index a3c70b84b248d..15ad4a33a7bb1 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern11_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern12_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern12_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern12_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern12_test.go index 7072687cbf408..1142644792012 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern12_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern13_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern13_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern13_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern13_test.go index 627484d5d4c86..39c6fade2cfab 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern13_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern14_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern14_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern14_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern14_test.go index 45147d252ce8d..1cf58e33a52cd 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern14_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern15_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern15_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern15_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern15_test.go index a9100c925047d..06629fd6b1ffe 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern15_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern16_test.go b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern16_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectBindingPattern16_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectBindingPattern16_test.go index b3a5d496934fc..89033f21771d5 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectBindingPattern16_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectBindingPattern16_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectBindingPattern16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral2_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral2_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral2_test.go index 832bb6d46bb0e..b751f30e100e0 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral3_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral3_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral3_test.go index 91225d6014b3e..b97dcb458cdc4 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral4_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral4_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral4_test.go index 077c5a8bfef8f..6d7998fde2bc2 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral4_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral5_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral5_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral5_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral5_test.go index 1e2f10e1798aa..0c996f1e56cdf 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral5_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral6_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral6_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral6_test.go index 96aeeaf32228a..43b86f7ffa922 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral6_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral7_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral7_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral7_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral7_test.go index a9263e6de9d0e..c4f459fe2245e 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral7_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral8_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral8_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral8_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral8_test.go index 484e1b10b35d6..7ab2374da13d8 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral8_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go index 9b048b26a8350..7c55ef56a54ac 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteralAssignmentPattern1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go index 4db638da85f0b..ff07b56728f69 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteralAssignmentPattern2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteralAssignmentPattern2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go index 6bd4b95a5723a..4bae4636e8865 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteralPropertyAssignment_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteralPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go index df467321ed6d1..97ee0691b940d 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteralThatIsParameterOfFunctionCall_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteralThatIsParameterOfFunctionCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/completionListInObjectLiteral_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/completionListInObjectLiteral_test.go index d24b005f03fcf..774137e259984 100644 --- a/tsc/internal/fourslash/tests/completionListInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionListInObjectLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInReturnWithContextualThis_test.go b/tsc/pkg/fourslash/tests/completionListInReturnWithContextualThis_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListInReturnWithContextualThis_test.go rename to tsc/pkg/fourslash/tests/completionListInReturnWithContextualThis_test.go index 3e979516e8d1b..1109fd798f7a5 100644 --- a/tsc/internal/fourslash/tests/completionListInReturnWithContextualThis_test.go +++ b/tsc/pkg/fourslash/tests/completionListInReturnWithContextualThis_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInReturnWithContextualThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go b/tsc/pkg/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go rename to tsc/pkg/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go index 9a53fd2628b07..90d186d82685a 100644 --- a/tsc/internal/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go +++ b/tsc/pkg/fourslash/tests/completionListInScope_doesNotIncludeAugmentations_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInScope_doesNotIncludeAugmentations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInScope_test.go b/tsc/pkg/fourslash/tests/completionListInScope_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInScope_test.go rename to tsc/pkg/fourslash/tests/completionListInScope_test.go index b3be78081aab8..a5cd11b824a46 100644 --- a/tsc/internal/fourslash/tests/completionListInScope_test.go +++ b/tsc/pkg/fourslash/tests/completionListInScope_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInScope(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInStringLiterals1_test.go b/tsc/pkg/fourslash/tests/completionListInStringLiterals1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInStringLiterals1_test.go rename to tsc/pkg/fourslash/tests/completionListInStringLiterals1_test.go index 67a927660219a..17626a1e5904e 100644 --- a/tsc/internal/fourslash/tests/completionListInStringLiterals1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInStringLiterals1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInStringLiterals1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInStringLiterals2_test.go b/tsc/pkg/fourslash/tests/completionListInStringLiterals2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInStringLiterals2_test.go rename to tsc/pkg/fourslash/tests/completionListInStringLiterals2_test.go index 20adc0a9d343f..72d713eb1c98f 100644 --- a/tsc/internal/fourslash/tests/completionListInStringLiterals2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInStringLiterals2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInStringLiterals2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTemplateLiteralParts1_test.go b/tsc/pkg/fourslash/tests/completionListInTemplateLiteralParts1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListInTemplateLiteralParts1_test.go rename to tsc/pkg/fourslash/tests/completionListInTemplateLiteralParts1_test.go index f6d1fee16b0db..f81ab99616a68 100644 --- a/tsc/internal/fourslash/tests/completionListInTemplateLiteralParts1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTemplateLiteralParts1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTemplateLiteralParts1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go b/tsc/pkg/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go rename to tsc/pkg/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go index 392b46e099f51..6f17d86358145 100644 --- a/tsc/internal/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTemplateLiteralPartsNegatives1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTemplateLiteralPartsNegatives1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go index 3401bb6947135..489739164d27a 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go index f4d1a5d203eb7..2c75483b13f07 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go index 77dfc939511ad..b397ea2198a97 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go index 88283244d3405..a504fe30c65fe 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go index 74e3e79634386..ac2f03d131707 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter14_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go index 38b94273931aa..97b89dfe53f3e 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go index ce5ce8bd0d1a4..933fb770a9f2a 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter16_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go index d911b0146ece4..968ecf9960fd4 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter17_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go index 23e12b6e9870f..3f1eb1a3c5f25 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go index 3ba457fa8a644..a6a4108321aaa 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter19_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go index 5f2c997913779..c1142e634a326 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go index 75b91b21930c1..99281f3a5c103 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter20_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go index e3c6d31bfdb47..4fcbcd11900b1 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter21_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go index db29e41c64d52..d78bd2bc0a1b2 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go index 121bc84b2a2dd..54e66f05e13a6 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go index 405df870334e4..04775cb20b465 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go index 7452104a6f64f..3fb8b81497768 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go index 3ec858fd9415a..fe5acbe43c5f8 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go index fe6e85b294d50..8180ebcdc0a45 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go index 0c4779c6cef5b..18d834581920d 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeLiteralInTypeParameter8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeLiteralInTypeParameter8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go index 4a7afbf0fb119..edc4825664cce 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfClassExpression1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeParameterOfClassExpression1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go index 862dedaa5f97e..91d6424583f0f 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeParameterOfTypeAlias1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go index fd52b88c8828e..6745fbec7f5b8 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeParameterOfTypeAlias2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go rename to tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go index 420c6e3f66c01..330f273c26869 100644 --- a/tsc/internal/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypeParameterOfTypeAlias3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypeParameterOfTypeAlias3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals2_test.go b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInTypedObjectLiterals2_test.go rename to tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals2_test.go index 20a88bf66397e..700efcd03c8a9 100644 --- a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypedObjectLiterals2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals3_test.go b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInTypedObjectLiterals3_test.go rename to tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals3_test.go index 6a88a8d7dcbb5..5bcb005d56743 100644 --- a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypedObjectLiterals3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals4_test.go b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInTypedObjectLiterals4_test.go rename to tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals4_test.go index 0ebc0a4896d68..ab54d1ca8a78c 100644 --- a/tsc/internal/fourslash/tests/completionListInTypedObjectLiterals4_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiterals4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypedObjectLiterals4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go rename to tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go index b407b1c5e572a..b85e27c02c922 100644 --- a/tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypedObjectLiteralsWithPartialPropertyNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go rename to tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go index 5e3445d7b76ad..25bf00821372e 100644 --- a/tsc/internal/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go +++ b/tsc/pkg/fourslash/tests/completionListInTypedObjectLiteralsWithPartialPropertyNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInTypedObjectLiteralsWithPartialPropertyNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression01_test.go index 865dec6ef4f4e..cefdf2b1d7140 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedCommaExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression02_test.go index 5fb287d1885bd..aeb937075d347 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedCommaExpression02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedCommaExpression02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedCommaExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go index 6a3712ff49a71..36588aae750c2 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedDeleteExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go index 90a45bc26e606..28da286b861c5 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedDeleteExpression02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedDeleteExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go index d8393eff35d5c..a60f2afe54b15 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedElementAccessExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go index fd91b26979e37..fdcc722730e3b 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedElementAccessExpression02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedElementAccessExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedForLoop01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedForLoop01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInUnclosedForLoop01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedForLoop01_test.go index c802099190607..c5a3a9f6139f0 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedForLoop01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedForLoop01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedForLoop01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedForLoop02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedForLoop02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedForLoop02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedForLoop02_test.go index 3bab36d208c6b..b113fbe9cfc18 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedForLoop02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedForLoop02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedForLoop02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction01_test.go index c8b6da35ae586..74301fffebd07 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction02_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction02_test.go index be1fdc1a64187..ec9a824e8d1fa 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction03_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction03_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction03_test.go index 89edd5a1abc05..011a1fa58a073 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction04_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction04_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction04_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction04_test.go index ae9a37b946f52..4e567a8c1cae5 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction04_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction05_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction05_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction05_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction05_test.go index 608a2ab8e3bed..cde9136c69a65 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction05_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction05_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction06_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction06_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction06_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction06_test.go index 08f94819c8134..431988779ed6d 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction06_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction06_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction07_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction07_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction07_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction07_test.go index 4e2b4f66c43b7..747435486122c 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction07_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction07_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction08_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction08_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction08_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction08_test.go index dc3798b7e88a1..6bb76b89ca4c9 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction08_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction08_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction09_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction09_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction09_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction09_test.go index f598b28991b5d..18a75ede092dc 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction09_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction09_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction10_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction10_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction10_test.go index 6596c40d46bc5..7a3769e2518d4 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction10_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction11_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction11_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction11_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction11_test.go index 75915e2d4dcc3..490b4d984cf71 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction11_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction12_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction12_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction12_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction12_test.go index 746cc70fc4c0f..fd541e979015b 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction12_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction13_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction13_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction13_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction13_test.go index cc8df33f44c93..04aaa4d1f212b 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction13_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction14_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction14_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction14_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction14_test.go index ac77da1d3bfb6..a22bcd80ed923 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction14_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction14_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction15_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction15_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction15_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction15_test.go index 11009b3eaa7d1..c147053b8202e 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction15_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction16_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction16_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction16_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction16_test.go index 6141370c6fd1c..180fcf6635c9f 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction16_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction16_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction17_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction17_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction17_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction17_test.go index 2eb939735f449..a7e42d5721077 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction17_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction17_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction18_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction18_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction18_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction18_test.go index 8c9fb796f151f..15cda4a495240 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction18_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedFunction19_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction19_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInUnclosedFunction19_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedFunction19_test.go index bc30e01a17afd..1e767c4a455c3 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedFunction19_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedFunction19_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedFunction19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature01_test.go index 08fdc49562149..d66e6f3d07e37 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedIndexSignature01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature02_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature02_test.go index 18e2508b90a36..c09ac861a4a32 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedIndexSignature02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature03_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature03_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature03_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature03_test.go index 9444a0a758a05..6ed5e977d1cac 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedIndexSignature03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedIndexSignature03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedIndexSignature03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go index f0634a135ca91..d8f7e9feef139 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedObjectTypeLiteralInSignature01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go index ea100a767e737..120a94fc3ebb2 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedObjectTypeLiteralInSignature02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go index 113b9e6854bb5..ca905136c3de4 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedObjectTypeLiteralInSignature03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go index f5776ab2be1c0..34b0c67080edf 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedObjectTypeLiteralInSignature04_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedObjectTypeLiteralInSignature04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go index 8854f72def250..ea0e1fcdcf4cd 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedSpreadExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go index e3d15f25ddb5a..44de5f6e3222c 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedSpreadExpression02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedSpreadExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go index e46ad5b8bbd41..78ec6960fd020 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTaggedTemplate01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go index c552de09ab8d9..252cfa10cf36d 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTaggedTemplate02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTaggedTemplate02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTemplate01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTemplate01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedTemplate01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTemplate01_test.go index 305a44846bdab..cd7e9d4f1723d 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTemplate01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTemplate01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTemplate01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTemplate02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTemplate02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInUnclosedTemplate02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTemplate02_test.go index 75d8520c4da0d..65c9581cd7e68 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTemplate02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTemplate02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTemplate02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTypeArguments_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeArguments_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListInUnclosedTypeArguments_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTypeArguments_test.go index a9ad05176291a..a42440aac9532 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeArguments_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go index caa53a5f0fa08..76af80926eb14 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTypeOfExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go index e283badcf6985..2e48fe726331c 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedTypeOfExpression02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedTypeOfExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInUnclosedVoidExpression01_test.go b/tsc/pkg/fourslash/tests/completionListInUnclosedVoidExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListInUnclosedVoidExpression01_test.go rename to tsc/pkg/fourslash/tests/completionListInUnclosedVoidExpression01_test.go index d3bc058d36569..2ca475ff4b0f0 100644 --- a/tsc/internal/fourslash/tests/completionListInUnclosedVoidExpression01_test.go +++ b/tsc/pkg/fourslash/tests/completionListInUnclosedVoidExpression01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInUnclosedVoidExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInferKeyword_test.go b/tsc/pkg/fourslash/tests/completionListInferKeyword_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionListInferKeyword_test.go rename to tsc/pkg/fourslash/tests/completionListInferKeyword_test.go index 9a060ac6ef53a..a64122cbc2e22 100644 --- a/tsc/internal/fourslash/tests/completionListInferKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionListInferKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInferKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInsideTargetTypedFunction_test.go b/tsc/pkg/fourslash/tests/completionListInsideTargetTypedFunction_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListInsideTargetTypedFunction_test.go rename to tsc/pkg/fourslash/tests/completionListInsideTargetTypedFunction_test.go index 724a063706a7c..3c58212c1f2e2 100644 --- a/tsc/internal/fourslash/tests/completionListInsideTargetTypedFunction_test.go +++ b/tsc/pkg/fourslash/tests/completionListInsideTargetTypedFunction_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInsideTargetTypedFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers2_test.go b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers2_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInstanceProtectedMembers2_test.go rename to tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers2_test.go index 07e98460794b6..ecb7d044f9039 100644 --- a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInstanceProtectedMembers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers3_test.go b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInstanceProtectedMembers3_test.go rename to tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers3_test.go index d202971e712b1..85ab291867cde 100644 --- a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers3_test.go +++ b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInstanceProtectedMembers3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers4_test.go b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListInstanceProtectedMembers4_test.go rename to tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers4_test.go index 77cde5080c2d0..c67815678b186 100644 --- a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers4_test.go +++ b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInstanceProtectedMembers4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers_test.go b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionListInstanceProtectedMembers_test.go rename to tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers_test.go index b411290ea5188..8390009e0510d 100644 --- a/tsc/internal/fourslash/tests/completionListInstanceProtectedMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListInstanceProtectedMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInstanceProtectedMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInvalidMemberNames2_test.go b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionListInvalidMemberNames2_test.go rename to tsc/pkg/fourslash/tests/completionListInvalidMemberNames2_test.go index f29817599900e..d9dcfd2a98507 100644 --- a/tsc/internal/fourslash/tests/completionListInvalidMemberNames2_test.go +++ b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInvalidMemberNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go rename to tsc/pkg/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go index 63510a2b85ed2..a052483f36572 100644 --- a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go +++ b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_escapeQuote_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInvalidMemberNames_escapeQuote(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go rename to tsc/pkg/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go index abd5465295870..6ff8a6b2501b7 100644 --- a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go +++ b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_startWithSpace_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInvalidMemberNames_startWithSpace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_test.go b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListInvalidMemberNames_test.go rename to tsc/pkg/fourslash/tests/completionListInvalidMemberNames_test.go index d7d6aef88efee..fef5d68d00d5b 100644 --- a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_test.go +++ b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInvalidMemberNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go rename to tsc/pkg/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go index 82d4367698460..b2385e5e777f8 100644 --- a/tsc/internal/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/completionListInvalidMemberNames_withExistingIdentifier_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListInvalidMemberNames_withExistingIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListKeywords_test.go b/tsc/pkg/fourslash/tests/completionListKeywords_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListKeywords_test.go rename to tsc/pkg/fourslash/tests/completionListKeywords_test.go index f559aa2c63732..1d4e11df49945 100644 --- a/tsc/internal/fourslash/tests/completionListKeywords_test.go +++ b/tsc/pkg/fourslash/tests/completionListKeywords_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListModuleMembers_test.go b/tsc/pkg/fourslash/tests/completionListModuleMembers_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionListModuleMembers_test.go rename to tsc/pkg/fourslash/tests/completionListModuleMembers_test.go index 9f62311dbc0bc..7bff34748b549 100644 --- a/tsc/internal/fourslash/tests/completionListModuleMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListModuleMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListModuleMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListNewIdentifierBindingElement_test.go b/tsc/pkg/fourslash/tests/completionListNewIdentifierBindingElement_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListNewIdentifierBindingElement_test.go rename to tsc/pkg/fourslash/tests/completionListNewIdentifierBindingElement_test.go index 647b40b5447b6..c6ba2872044ce 100644 --- a/tsc/internal/fourslash/tests/completionListNewIdentifierBindingElement_test.go +++ b/tsc/pkg/fourslash/tests/completionListNewIdentifierBindingElement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListNewIdentifierBindingElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go index 0a29cb796dea7..86b3ba7bb5065 100644 --- a/tsc/internal/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionListNewIdentifierFunctionDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListNewIdentifierFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go b/tsc/pkg/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go index a862deae5ef3f..3765351386560 100644 --- a/tsc/internal/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionListNewIdentifierVariableDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListNewIdentifierVariableDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go b/tsc/pkg/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go rename to tsc/pkg/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go index 9f2073387b5b9..293e7394b3845 100644 --- a/tsc/internal/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go +++ b/tsc/pkg/fourslash/tests/completionListObjectMembersInTypeLocationWithTypeof_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListObjectMembersInTypeLocationWithTypeof(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListObjectMembers_test.go b/tsc/pkg/fourslash/tests/completionListObjectMembers_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListObjectMembers_test.go rename to tsc/pkg/fourslash/tests/completionListObjectMembers_test.go index 20e733d3f08f8..93870c060447b 100644 --- a/tsc/internal/fourslash/tests/completionListObjectMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListObjectMembers_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListObjectMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOfGenericSymbol_test.go b/tsc/pkg/fourslash/tests/completionListOfGenericSymbol_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListOfGenericSymbol_test.go rename to tsc/pkg/fourslash/tests/completionListOfGenericSymbol_test.go index 04a81b057afd8..3d8b51b6b8eb9 100644 --- a/tsc/internal/fourslash/tests/completionListOfGenericSymbol_test.go +++ b/tsc/pkg/fourslash/tests/completionListOfGenericSymbol_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOfGenericSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOfSplitInterface_test.go b/tsc/pkg/fourslash/tests/completionListOfSplitInterface_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListOfSplitInterface_test.go rename to tsc/pkg/fourslash/tests/completionListOfSplitInterface_test.go index 95cd0ca9d0df3..6029869da73b7 100644 --- a/tsc/internal/fourslash/tests/completionListOfSplitInterface_test.go +++ b/tsc/pkg/fourslash/tests/completionListOfSplitInterface_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOfSplitInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOfUnion_test.go b/tsc/pkg/fourslash/tests/completionListOfUnion_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionListOfUnion_test.go rename to tsc/pkg/fourslash/tests/completionListOfUnion_test.go index 5e4cdc6321971..4c634e745f45f 100644 --- a/tsc/internal/fourslash/tests/completionListOfUnion_test.go +++ b/tsc/pkg/fourslash/tests/completionListOfUnion_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOfUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnAliasedModule_test.go b/tsc/pkg/fourslash/tests/completionListOnAliasedModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListOnAliasedModule_test.go rename to tsc/pkg/fourslash/tests/completionListOnAliasedModule_test.go index 2ae1a34fe666b..7827dc582aec6 100644 --- a/tsc/internal/fourslash/tests/completionListOnAliasedModule_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnAliasedModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnAliasedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnAliases2_test.go b/tsc/pkg/fourslash/tests/completionListOnAliases2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListOnAliases2_test.go rename to tsc/pkg/fourslash/tests/completionListOnAliases2_test.go index 6487283368358..3aeb33b84d100 100644 --- a/tsc/internal/fourslash/tests/completionListOnAliases2_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnAliases2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnAliases2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnAliases3_test.go b/tsc/pkg/fourslash/tests/completionListOnAliases3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListOnAliases3_test.go rename to tsc/pkg/fourslash/tests/completionListOnAliases3_test.go index df749541dffef..f20161911d0aa 100644 --- a/tsc/internal/fourslash/tests/completionListOnAliases3_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnAliases3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnAliases3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnAliases_test.go b/tsc/pkg/fourslash/tests/completionListOnAliases_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListOnAliases_test.go rename to tsc/pkg/fourslash/tests/completionListOnAliases_test.go index 0dcf36de33e38..128565db41ec7 100644 --- a/tsc/internal/fourslash/tests/completionListOnAliases_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnAliases_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnAliases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go b/tsc/pkg/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go rename to tsc/pkg/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go index 6c4f223acb921..5031627b6cfea 100644 --- a/tsc/internal/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnFunctionCallWithOptionalArgument_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnFunctionCallWithOptionalArgument(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnMethodParameterName_test.go b/tsc/pkg/fourslash/tests/completionListOnMethodParameterName_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListOnMethodParameterName_test.go rename to tsc/pkg/fourslash/tests/completionListOnMethodParameterName_test.go index 0faf2ddcc9ebd..f3c024ff5af31 100644 --- a/tsc/internal/fourslash/tests/completionListOnMethodParameterName_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnMethodParameterName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnMethodParameterName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnParamInClass_test.go b/tsc/pkg/fourslash/tests/completionListOnParamInClass_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListOnParamInClass_test.go rename to tsc/pkg/fourslash/tests/completionListOnParamInClass_test.go index 561d65854b0f0..923c1f74175f7 100644 --- a/tsc/internal/fourslash/tests/completionListOnParamInClass_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnParamInClass_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnParamInClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnParam_test.go b/tsc/pkg/fourslash/tests/completionListOnParam_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionListOnParam_test.go rename to tsc/pkg/fourslash/tests/completionListOnParam_test.go index 87762cb0bbc7d..9711ac7ed65e8 100644 --- a/tsc/internal/fourslash/tests/completionListOnParam_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnParam_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnParam(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnPrivateVariableInModule_test.go b/tsc/pkg/fourslash/tests/completionListOnPrivateVariableInModule_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionListOnPrivateVariableInModule_test.go rename to tsc/pkg/fourslash/tests/completionListOnPrivateVariableInModule_test.go index c3bad6619f5a1..3f6941889839d 100644 --- a/tsc/internal/fourslash/tests/completionListOnPrivateVariableInModule_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnPrivateVariableInModule_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnPrivateVariableInModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnSuper_test.go b/tsc/pkg/fourslash/tests/completionListOnSuper_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionListOnSuper_test.go rename to tsc/pkg/fourslash/tests/completionListOnSuper_test.go index da3affa0bceca..7b73dde277623 100644 --- a/tsc/internal/fourslash/tests/completionListOnSuper_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnSuper_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnSuper(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOnVarBetweenModules_test.go b/tsc/pkg/fourslash/tests/completionListOnVarBetweenModules_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListOnVarBetweenModules_test.go rename to tsc/pkg/fourslash/tests/completionListOnVarBetweenModules_test.go index 35bc064e837d7..0eabb241bd272 100644 --- a/tsc/internal/fourslash/tests/completionListOnVarBetweenModules_test.go +++ b/tsc/pkg/fourslash/tests/completionListOnVarBetweenModules_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOnVarBetweenModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go rename to tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go index 25a088f1810ef..7154aa618c6e0 100644 --- a/tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go +++ b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOutsideOfClosedArrowFunction01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go rename to tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go index 93a0fad00a68c..50642211121af 100644 --- a/tsc/internal/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go +++ b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedArrowFunction02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOutsideOfClosedArrowFunction02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go rename to tsc/pkg/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go index bea93e059f525..315391021558c 100644 --- a/tsc/internal/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go +++ b/tsc/pkg/fourslash/tests/completionListOutsideOfClosedFunctionDeclaration01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOutsideOfClosedFunctionDeclaration01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOutsideOfForLoop01_test.go b/tsc/pkg/fourslash/tests/completionListOutsideOfForLoop01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListOutsideOfForLoop01_test.go rename to tsc/pkg/fourslash/tests/completionListOutsideOfForLoop01_test.go index ad7f8b9a7b794..1ccf14f393529 100644 --- a/tsc/internal/fourslash/tests/completionListOutsideOfForLoop01_test.go +++ b/tsc/pkg/fourslash/tests/completionListOutsideOfForLoop01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOutsideOfForLoop01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListOutsideOfForLoop02_test.go b/tsc/pkg/fourslash/tests/completionListOutsideOfForLoop02_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionListOutsideOfForLoop02_test.go rename to tsc/pkg/fourslash/tests/completionListOutsideOfForLoop02_test.go index e36d54b18f8c9..5d9af2ee43048 100644 --- a/tsc/internal/fourslash/tests/completionListOutsideOfForLoop02_test.go +++ b/tsc/pkg/fourslash/tests/completionListOutsideOfForLoop02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListOutsideOfForLoop02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateMembers2_test.go b/tsc/pkg/fourslash/tests/completionListPrivateMembers2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListPrivateMembers2_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateMembers2_test.go index 616479fd04051..eed2108eed927 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateMembers2_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateMembers2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateMembers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateMembers3_test.go b/tsc/pkg/fourslash/tests/completionListPrivateMembers3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionListPrivateMembers3_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateMembers3_test.go index 2c267cfab8a03..806dc8fb624bd 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateMembers3_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateMembers3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateMembers3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateMembers_test.go b/tsc/pkg/fourslash/tests/completionListPrivateMembers_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionListPrivateMembers_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateMembers_test.go index e24646197e6e0..bc6814aabb8e3 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateNamesAccessors_test.go b/tsc/pkg/fourslash/tests/completionListPrivateNamesAccessors_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListPrivateNamesAccessors_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateNamesAccessors_test.go index bcb8ed15082ff..c79031a3a5493 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateNamesAccessors_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateNamesAccessors_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateNamesAccessors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateNamesMethods_test.go b/tsc/pkg/fourslash/tests/completionListPrivateNamesMethods_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListPrivateNamesMethods_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateNamesMethods_test.go index 2782aa69a161f..ec9a1fa8235be 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateNamesMethods_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateNamesMethods_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateNamesMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListPrivateNames_test.go b/tsc/pkg/fourslash/tests/completionListPrivateNames_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionListPrivateNames_test.go rename to tsc/pkg/fourslash/tests/completionListPrivateNames_test.go index d4331d9c078df..fa54af75d9a4e 100644 --- a/tsc/internal/fourslash/tests/completionListPrivateNames_test.go +++ b/tsc/pkg/fourslash/tests/completionListPrivateNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListPrivateNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListProtectedMembers_test.go b/tsc/pkg/fourslash/tests/completionListProtectedMembers_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListProtectedMembers_test.go rename to tsc/pkg/fourslash/tests/completionListProtectedMembers_test.go index 848938a0cbd83..94a582553a681 100644 --- a/tsc/internal/fourslash/tests/completionListProtectedMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListProtectedMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListProtectedMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStaticMembers_test.go b/tsc/pkg/fourslash/tests/completionListStaticMembers_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionListStaticMembers_test.go rename to tsc/pkg/fourslash/tests/completionListStaticMembers_test.go index 5e881ed3ae6fe..42519025167ab 100644 --- a/tsc/internal/fourslash/tests/completionListStaticMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListStaticMembers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStaticMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers2_test.go b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers2_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionListStaticProtectedMembers2_test.go rename to tsc/pkg/fourslash/tests/completionListStaticProtectedMembers2_test.go index d8b5737d7d288..de0d258eb0cd5 100644 --- a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers2_test.go +++ b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStaticProtectedMembers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers3_test.go b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListStaticProtectedMembers3_test.go rename to tsc/pkg/fourslash/tests/completionListStaticProtectedMembers3_test.go index 0687cb28773f0..2eaf982fe8932 100644 --- a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers3_test.go +++ b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStaticProtectedMembers3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers_test.go b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionListStaticProtectedMembers_test.go rename to tsc/pkg/fourslash/tests/completionListStaticProtectedMembers_test.go index e5598b3c30f55..4249874e8f021 100644 --- a/tsc/internal/fourslash/tests/completionListStaticProtectedMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListStaticProtectedMembers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStaticProtectedMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStringParenthesizedExpression_test.go b/tsc/pkg/fourslash/tests/completionListStringParenthesizedExpression_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListStringParenthesizedExpression_test.go rename to tsc/pkg/fourslash/tests/completionListStringParenthesizedExpression_test.go index e88c341357782..ffe92276e982d 100644 --- a/tsc/internal/fourslash/tests/completionListStringParenthesizedExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionListStringParenthesizedExpression_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStringParenthesizedExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListStringParenthesizedType_test.go b/tsc/pkg/fourslash/tests/completionListStringParenthesizedType_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionListStringParenthesizedType_test.go rename to tsc/pkg/fourslash/tests/completionListStringParenthesizedType_test.go index 3fe86840f5f20..49958596f8a5a 100644 --- a/tsc/internal/fourslash/tests/completionListStringParenthesizedType_test.go +++ b/tsc/pkg/fourslash/tests/completionListStringParenthesizedType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListStringParenthesizedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListSuperMembers_test.go b/tsc/pkg/fourslash/tests/completionListSuperMembers_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionListSuperMembers_test.go rename to tsc/pkg/fourslash/tests/completionListSuperMembers_test.go index cc49ae4de0dea..8e03bcfa044d3 100644 --- a/tsc/internal/fourslash/tests/completionListSuperMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionListSuperMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListSuperMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListWithAmbientDeclaration_test.go b/tsc/pkg/fourslash/tests/completionListWithAmbientDeclaration_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionListWithAmbientDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionListWithAmbientDeclaration_test.go index bd2ed39f40275..323fbefdf8ae0 100644 --- a/tsc/internal/fourslash/tests/completionListWithAmbientDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionListWithAmbientDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListWithAmbientDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListWithLabel_test.go b/tsc/pkg/fourslash/tests/completionListWithLabel_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionListWithLabel_test.go rename to tsc/pkg/fourslash/tests/completionListWithLabel_test.go index 6600bdeba490a..1f18b771d2b7e 100644 --- a/tsc/internal/fourslash/tests/completionListWithLabel_test.go +++ b/tsc/pkg/fourslash/tests/completionListWithLabel_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListWithLabel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListWithUnresolvedModule_test.go b/tsc/pkg/fourslash/tests/completionListWithUnresolvedModule_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionListWithUnresolvedModule_test.go rename to tsc/pkg/fourslash/tests/completionListWithUnresolvedModule_test.go index e5877a8caee2c..3d9d4896b4430 100644 --- a/tsc/internal/fourslash/tests/completionListWithUnresolvedModule_test.go +++ b/tsc/pkg/fourslash/tests/completionListWithUnresolvedModule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListWithUnresolvedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListWithoutVariableinitializer_test.go b/tsc/pkg/fourslash/tests/completionListWithoutVariableinitializer_test.go similarity index 96% rename from tsc/internal/fourslash/tests/completionListWithoutVariableinitializer_test.go rename to tsc/pkg/fourslash/tests/completionListWithoutVariableinitializer_test.go index 22363ec164151..df1ac07d92590 100644 --- a/tsc/internal/fourslash/tests/completionListWithoutVariableinitializer_test.go +++ b/tsc/pkg/fourslash/tests/completionListWithoutVariableinitializer_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListWithoutVariableinitializer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionList_getExportsOfModule_test.go b/tsc/pkg/fourslash/tests/completionList_getExportsOfModule_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionList_getExportsOfModule_test.go rename to tsc/pkg/fourslash/tests/completionList_getExportsOfModule_test.go index 601e9d61b3a2b..0a0eab5a1facb 100644 --- a/tsc/internal/fourslash/tests/completionList_getExportsOfModule_test.go +++ b/tsc/pkg/fourslash/tests/completionList_getExportsOfModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionList_getExportsOfModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go b/tsc/pkg/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go rename to tsc/pkg/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go index 4b7b1b736fe91..fd32e925290f1 100644 --- a/tsc/internal/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go +++ b/tsc/pkg/fourslash/tests/completionListsStringLiteralTypeAsIndexedAccessTypeObject_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionListsStringLiteralTypeAsIndexedAccessTypeObject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go rename to tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go index 3c955ceb87721..cc781acd805e2 100644 --- a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go +++ b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForThis_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionNoAutoInsertQuestionDotForThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go rename to tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go index db38173c0f23c..4ab71f7b71f6d 100644 --- a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go +++ b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotForTypeParameter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionNoAutoInsertQuestionDotForTypeParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go rename to tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go index 25b0bdc698321..750527857a8fe 100644 --- a/tsc/internal/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go +++ b/tsc/pkg/fourslash/tests/completionNoAutoInsertQuestionDotWithUserPreferencesOff_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionNoAutoInsertQuestionDotWithUserPreferencesOff(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise1_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise1_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise1_test.go index 16213f1ccf35c..a361b52118ed7 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise1_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise2_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise2_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise2_test.go index 6e78256c5620a..7ae8fc46e3a06 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise2_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise3_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise3_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise3_test.go index 3ab0f5e6cf49d..781e439690936 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise3_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise4_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise4_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise4_test.go index a170353519ffc..26171e7ca46b2 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise4_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise5_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise5_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise5_test.go index f3d11ed8ee816..e678cb5ba17a4 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise5_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise6_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise6_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise6_test.go index cb887daec3a69..bfee0f0b2060a 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise6_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfAwaitPromise7_test.go b/tsc/pkg/fourslash/tests/completionOfAwaitPromise7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfAwaitPromise7_test.go rename to tsc/pkg/fourslash/tests/completionOfAwaitPromise7_test.go index bc4a20f0fcdb5..852ad781e375c 100644 --- a/tsc/internal/fourslash/tests/completionOfAwaitPromise7_test.go +++ b/tsc/pkg/fourslash/tests/completionOfAwaitPromise7_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfAwaitPromise7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionOfInterfaceAndVar_test.go b/tsc/pkg/fourslash/tests/completionOfInterfaceAndVar_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionOfInterfaceAndVar_test.go rename to tsc/pkg/fourslash/tests/completionOfInterfaceAndVar_test.go index 0216c22deab79..a5846d1555b37 100644 --- a/tsc/internal/fourslash/tests/completionOfInterfaceAndVar_test.go +++ b/tsc/pkg/fourslash/tests/completionOfInterfaceAndVar_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionOfInterfaceAndVar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionPreferredSuggestions1_test.go b/tsc/pkg/fourslash/tests/completionPreferredSuggestions1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionPreferredSuggestions1_test.go rename to tsc/pkg/fourslash/tests/completionPreferredSuggestions1_test.go index e5de8427d1d18..946444fec5a7d 100644 --- a/tsc/internal/fourslash/tests/completionPreferredSuggestions1_test.go +++ b/tsc/pkg/fourslash/tests/completionPreferredSuggestions1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionPreferredSuggestions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go rename to tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go index f2460c11bb4b1..a30d807fdec5f 100644 --- a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go +++ b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionPropertyShorthandForObjectLiteral2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go rename to tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go index b694f5bef3bfd..dc2a5f23757ea 100644 --- a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go +++ b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionPropertyShorthandForObjectLiteral3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go rename to tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go index 4c557b7891eaf..100889bc2fdf6 100644 --- a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go +++ b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionPropertyShorthandForObjectLiteral4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go rename to tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go index 22f6aac69567a..d54f4044d4525 100644 --- a/tsc/internal/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go +++ b/tsc/pkg/fourslash/tests/completionPropertyShorthandForObjectLiteral5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionPropertyShorthandForObjectLiteral5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionResolveAfterEdit_test.go b/tsc/pkg/fourslash/tests/completionResolveAfterEdit_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionResolveAfterEdit_test.go rename to tsc/pkg/fourslash/tests/completionResolveAfterEdit_test.go index 4302a9b5cff13..cf6988bc17aff 100644 --- a/tsc/internal/fourslash/tests/completionResolveAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/completionResolveAfterEdit_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionResolveAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionResolveKeyword_test.go b/tsc/pkg/fourslash/tests/completionResolveKeyword_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionResolveKeyword_test.go rename to tsc/pkg/fourslash/tests/completionResolveKeyword_test.go index ec9f3fa633b21..cefe9477b07ce 100644 --- a/tsc/internal/fourslash/tests/completionResolveKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionResolveKeyword_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionResolveKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionReturnConstAssertion_test.go b/tsc/pkg/fourslash/tests/completionReturnConstAssertion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionReturnConstAssertion_test.go rename to tsc/pkg/fourslash/tests/completionReturnConstAssertion_test.go index 77c45592a6611..c3c8c6aeb797b 100644 --- a/tsc/internal/fourslash/tests/completionReturnConstAssertion_test.go +++ b/tsc/pkg/fourslash/tests/completionReturnConstAssertion_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionReturnConstAssertion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionSatisfiesKeyword_test.go b/tsc/pkg/fourslash/tests/completionSatisfiesKeyword_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionSatisfiesKeyword_test.go rename to tsc/pkg/fourslash/tests/completionSatisfiesKeyword_test.go index 0e9ed363c712f..cd15a43ed1549 100644 --- a/tsc/internal/fourslash/tests/completionSatisfiesKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionSatisfiesKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionSatisfiesKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionTypeAssertion_test.go b/tsc/pkg/fourslash/tests/completionTypeAssertion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionTypeAssertion_test.go rename to tsc/pkg/fourslash/tests/completionTypeAssertion_test.go index d6c8d5bfe05fe..84a82d923a4dc 100644 --- a/tsc/internal/fourslash/tests/completionTypeAssertion_test.go +++ b/tsc/pkg/fourslash/tests/completionTypeAssertion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionTypeAssertion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionTypeGuard_test.go b/tsc/pkg/fourslash/tests/completionTypeGuard_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionTypeGuard_test.go rename to tsc/pkg/fourslash/tests/completionTypeGuard_test.go index b1af57af09c68..daebe091a4c5a 100644 --- a/tsc/internal/fourslash/tests/completionTypeGuard_test.go +++ b/tsc/pkg/fourslash/tests/completionTypeGuard_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionTypeGuard(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionTypeofExpressions_test.go b/tsc/pkg/fourslash/tests/completionTypeofExpressions_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionTypeofExpressions_test.go rename to tsc/pkg/fourslash/tests/completionTypeofExpressions_test.go index e455321b61334..d86da343643d7 100644 --- a/tsc/internal/fourslash/tests/completionTypeofExpressions_test.go +++ b/tsc/pkg/fourslash/tests/completionTypeofExpressions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionTypeofExpressions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionUsingKeyword_test.go b/tsc/pkg/fourslash/tests/completionUsingKeyword_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionUsingKeyword_test.go rename to tsc/pkg/fourslash/tests/completionUsingKeyword_test.go index e129c20910962..cdb3451a09ece 100644 --- a/tsc/internal/fourslash/tests/completionUsingKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionUsingKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionUsingKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go b/tsc/pkg/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go rename to tsc/pkg/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go index 670fc70b7666d..14315c4fd1ccb 100644 --- a/tsc/internal/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go +++ b/tsc/pkg/fourslash/tests/completionWithConditionalOperatorMissingColon_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionWithConditionalOperatorMissingColon(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go b/tsc/pkg/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go rename to tsc/pkg/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go index 0ed0d68702846..64743a24d5e38 100644 --- a/tsc/internal/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionWithDotFollowedByNamespaceKeyword_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionWithDotFollowedByNamespaceKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionWithNamespaceInsideFunction_test.go b/tsc/pkg/fourslash/tests/completionWithNamespaceInsideFunction_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionWithNamespaceInsideFunction_test.go rename to tsc/pkg/fourslash/tests/completionWithNamespaceInsideFunction_test.go index 8416838e77e1f..19a7065c261c4 100644 --- a/tsc/internal/fourslash/tests/completionWithNamespaceInsideFunction_test.go +++ b/tsc/pkg/fourslash/tests/completionWithNamespaceInsideFunction_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionWithNamespaceInsideFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go b/tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go rename to tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go index 07f07f6f4d31b..5ea5d184fe790 100644 --- a/tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go +++ b/tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionWithUnterminatedJSDocEndingWithAt1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go b/tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go rename to tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go index 483f6391eb33d..6a0f974abe2b1 100644 --- a/tsc/internal/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go +++ b/tsc/pkg/fourslash/tests/completionWithUnterminatedJSDocEndingWithAt2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionWithUnterminatedJSDocEndingWithAt2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completions01_test.go b/tsc/pkg/fourslash/tests/completions01_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completions01_test.go rename to tsc/pkg/fourslash/tests/completions01_test.go index 68c4a451b8710..26d494375903f 100644 --- a/tsc/internal/fourslash/tests/completions01_test.go +++ b/tsc/pkg/fourslash/tests/completions01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletions01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completions03_test.go b/tsc/pkg/fourslash/tests/completions03_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completions03_test.go rename to tsc/pkg/fourslash/tests/completions03_test.go index 709226127916c..fb28b9056b47e 100644 --- a/tsc/internal/fourslash/tests/completions03_test.go +++ b/tsc/pkg/fourslash/tests/completions03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletions03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go index 5da4828bb5810..ab775b89545da 100644 --- a/tsc/internal/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionsAfterAsyncInObjectLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAfterAsyncInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAfterJSDoc_test.go b/tsc/pkg/fourslash/tests/completionsAfterJSDoc_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionsAfterJSDoc_test.go rename to tsc/pkg/fourslash/tests/completionsAfterJSDoc_test.go index a6ad09cabd9c1..83e5c3e70b6f4 100644 --- a/tsc/internal/fourslash/tests/completionsAfterJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/completionsAfterJSDoc_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAfterJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAfterKeywordsInBlock_test.go b/tsc/pkg/fourslash/tests/completionsAfterKeywordsInBlock_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsAfterKeywordsInBlock_test.go rename to tsc/pkg/fourslash/tests/completionsAfterKeywordsInBlock_test.go index cc9577ce56489..34e3623ed6106 100644 --- a/tsc/internal/fourslash/tests/completionsAfterKeywordsInBlock_test.go +++ b/tsc/pkg/fourslash/tests/completionsAfterKeywordsInBlock_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAfterKeywordsInBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAfterLessThanToken_test.go b/tsc/pkg/fourslash/tests/completionsAfterLessThanToken_test.go similarity index 72% rename from tsc/internal/fourslash/tests/completionsAfterLessThanToken_test.go rename to tsc/pkg/fourslash/tests/completionsAfterLessThanToken_test.go index 4e95c14c96a48..f19a1b3d757ac 100644 --- a/tsc/internal/fourslash/tests/completionsAfterLessThanToken_test.go +++ b/tsc/pkg/fourslash/tests/completionsAfterLessThanToken_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAfterLessThanToken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAssertKeyword_test.go b/tsc/pkg/fourslash/tests/completionsAssertKeyword_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsAssertKeyword_test.go rename to tsc/pkg/fourslash/tests/completionsAssertKeyword_test.go index 5a3b7c69ba992..fef225b2c89fe 100644 --- a/tsc/internal/fourslash/tests/completionsAssertKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionsAssertKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAssertKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAsserts_test.go b/tsc/pkg/fourslash/tests/completionsAsserts_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsAsserts_test.go rename to tsc/pkg/fourslash/tests/completionsAsserts_test.go index 9df966020ec4d..5aab482eb8f9e 100644 --- a/tsc/internal/fourslash/tests/completionsAsserts_test.go +++ b/tsc/pkg/fourslash/tests/completionsAsserts_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAsserts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAtGenericTypeArguments_test.go b/tsc/pkg/fourslash/tests/completionsAtGenericTypeArguments_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionsAtGenericTypeArguments_test.go rename to tsc/pkg/fourslash/tests/completionsAtGenericTypeArguments_test.go index 59c040216c7fd..a14fe86924b39 100644 --- a/tsc/internal/fourslash/tests/completionsAtGenericTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/completionsAtGenericTypeArguments_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAtGenericTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go b/tsc/pkg/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go rename to tsc/pkg/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go index 3fd1f0295edbc..2b9bd42a3a3b3 100644 --- a/tsc/internal/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionsAtIncompleteObjectLiteralProperty_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAtIncompleteObjectLiteralProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go b/tsc/pkg/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go rename to tsc/pkg/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go index f08f1198ed9b3..edc3a1ecede55 100644 --- a/tsc/internal/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionsAtTopLevelImportAssignmentNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAtTopLevelImportAssignmentNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAtTypeArguments_test.go b/tsc/pkg/fourslash/tests/completionsAtTypeArguments_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsAtTypeArguments_test.go rename to tsc/pkg/fourslash/tests/completionsAtTypeArguments_test.go index ed026dc82b10d..23e1ee90eb361 100644 --- a/tsc/internal/fourslash/tests/completionsAtTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/completionsAtTypeArguments_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAtTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsAugmentedTypesClass2_test.go b/tsc/pkg/fourslash/tests/completionsAugmentedTypesClass2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsAugmentedTypesClass2_test.go rename to tsc/pkg/fourslash/tests/completionsAugmentedTypesClass2_test.go index f60c768a6a334..964f612261976 100644 --- a/tsc/internal/fourslash/tests/completionsAugmentedTypesClass2_test.go +++ b/tsc/pkg/fourslash/tests/completionsAugmentedTypesClass2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsAugmentedTypesClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsBeforeRestArg1_test.go b/tsc/pkg/fourslash/tests/completionsBeforeRestArg1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsBeforeRestArg1_test.go rename to tsc/pkg/fourslash/tests/completionsBeforeRestArg1_test.go index 503c7279ad0fd..c8703cc4a8433 100644 --- a/tsc/internal/fourslash/tests/completionsBeforeRestArg1_test.go +++ b/tsc/pkg/fourslash/tests/completionsBeforeRestArg1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsBeforeRestArg1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsBigIntShowNoCompletions_test.go b/tsc/pkg/fourslash/tests/completionsBigIntShowNoCompletions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsBigIntShowNoCompletions_test.go rename to tsc/pkg/fourslash/tests/completionsBigIntShowNoCompletions_test.go index 89371753cca05..6dc74d9e67a5e 100644 --- a/tsc/internal/fourslash/tests/completionsBigIntShowNoCompletions_test.go +++ b/tsc/pkg/fourslash/tests/completionsBigIntShowNoCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsBigIntShowNoCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go rename to tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go index 2550ba293372f..e39052773f8ff 100644 --- a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go +++ b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter1_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsClassMemberImportTypeNodeParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go rename to tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go index f4186b951b166..cece3e279615f 100644 --- a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go +++ b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter2_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsClassMemberImportTypeNodeParameter2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go rename to tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go index d942924e13fdc..479dab34c6a0d 100644 --- a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go +++ b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter3_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsClassMemberImportTypeNodeParameter3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go rename to tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go index f715206507b9d..25c6d4d2d8279 100644 --- a/tsc/internal/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go +++ b/tsc/pkg/fourslash/tests/completionsClassMemberImportTypeNodeParameter4_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsClassMemberImportTypeNodeParameter4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go b/tsc/pkg/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go rename to tsc/pkg/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go index 3538b9026b380..caa2d8e251a96 100644 --- a/tsc/internal/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionsClassPropertiesAfterPrivateProperty_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsClassPropertiesAfterPrivateProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsCombineOverloads_restParameter_test.go b/tsc/pkg/fourslash/tests/completionsCombineOverloads_restParameter_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsCombineOverloads_restParameter_test.go rename to tsc/pkg/fourslash/tests/completionsCombineOverloads_restParameter_test.go index f491a308b4602..cd2609463279f 100644 --- a/tsc/internal/fourslash/tests/completionsCombineOverloads_restParameter_test.go +++ b/tsc/pkg/fourslash/tests/completionsCombineOverloads_restParameter_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsCombineOverloads_restParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsCombineOverloads_returnType_test.go b/tsc/pkg/fourslash/tests/completionsCombineOverloads_returnType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsCombineOverloads_returnType_test.go rename to tsc/pkg/fourslash/tests/completionsCombineOverloads_returnType_test.go index 77966afa4ac92..85175dc0b692f 100644 --- a/tsc/internal/fourslash/tests/completionsCombineOverloads_returnType_test.go +++ b/tsc/pkg/fourslash/tests/completionsCombineOverloads_returnType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsCombineOverloads_returnType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsCombineOverloads_test.go b/tsc/pkg/fourslash/tests/completionsCombineOverloads_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsCombineOverloads_test.go rename to tsc/pkg/fourslash/tests/completionsCombineOverloads_test.go index a414b45dcfb99..1a983fce98b76 100644 --- a/tsc/internal/fourslash/tests/completionsCombineOverloads_test.go +++ b/tsc/pkg/fourslash/tests/completionsCombineOverloads_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsCombineOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsConditionalMember_test.go b/tsc/pkg/fourslash/tests/completionsConditionalMember_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsConditionalMember_test.go rename to tsc/pkg/fourslash/tests/completionsConditionalMember_test.go index 28b9b07573db7..d0992305b76fb 100644 --- a/tsc/internal/fourslash/tests/completionsConditionalMember_test.go +++ b/tsc/pkg/fourslash/tests/completionsConditionalMember_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsConditionalMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDefaultExport_test.go b/tsc/pkg/fourslash/tests/completionsDefaultExport_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsDefaultExport_test.go rename to tsc/pkg/fourslash/tests/completionsDefaultExport_test.go index aa7eda0c44a8f..7eb7ce9cea948 100644 --- a/tsc/internal/fourslash/tests/completionsDefaultExport_test.go +++ b/tsc/pkg/fourslash/tests/completionsDefaultExport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDefaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go b/tsc/pkg/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go rename to tsc/pkg/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go index 4c6e3fbbc576b..35f95a7af9783 100644 --- a/tsc/internal/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go +++ b/tsc/pkg/fourslash/tests/completionsDefaultKeywordWhenDefaultExportAvailable_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDefaultKeywordWhenDefaultExportAvailable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDeprecatedTags_test.go b/tsc/pkg/fourslash/tests/completionsDeprecatedTags_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsDeprecatedTags_test.go rename to tsc/pkg/fourslash/tests/completionsDeprecatedTags_test.go index ca360826d9d00..2bacb49fab016 100644 --- a/tsc/internal/fourslash/tests/completionsDeprecatedTags_test.go +++ b/tsc/pkg/fourslash/tests/completionsDeprecatedTags_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDeprecatedTags(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDestructuring_test.go b/tsc/pkg/fourslash/tests/completionsDestructuring_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsDestructuring_test.go rename to tsc/pkg/fourslash/tests/completionsDestructuring_test.go index 576187aff7ae3..826d0812c47b3 100644 --- a/tsc/internal/fourslash/tests/completionsDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/completionsDestructuring_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDiscriminatedUnion_test.go b/tsc/pkg/fourslash/tests/completionsDiscriminatedUnion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsDiscriminatedUnion_test.go rename to tsc/pkg/fourslash/tests/completionsDiscriminatedUnion_test.go index abe28708b5eb2..fdd428dbf99af 100644 --- a/tsc/internal/fourslash/tests/completionsDiscriminatedUnion_test.go +++ b/tsc/pkg/fourslash/tests/completionsDiscriminatedUnion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDiscriminatedUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go b/tsc/pkg/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go rename to tsc/pkg/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go index f4dcaa14bf4f1..835fba24b4db8 100644 --- a/tsc/internal/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/completionsDotDotDotInObjectLiteral1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDotDotDotInObjectLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go index 923c9ee770e79..a63431334d9d4 100644 --- a/tsc/internal/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionsDotInArrayLiteralInObjectLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsDotInArrayLiteralInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go b/tsc/pkg/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go rename to tsc/pkg/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go index 44e629abd176e..460fda1f1b041 100644 --- a/tsc/internal/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go +++ b/tsc/pkg/fourslash/tests/completionsECMAPrivateMemberTriggerCharacter_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsECMAPrivateMemberTriggerCharacter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsECMAPrivateMember_test.go b/tsc/pkg/fourslash/tests/completionsECMAPrivateMember_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsECMAPrivateMember_test.go rename to tsc/pkg/fourslash/tests/completionsECMAPrivateMember_test.go index a71ad84aa0d70..4f4116b5d5646 100644 --- a/tsc/internal/fourslash/tests/completionsECMAPrivateMember_test.go +++ b/tsc/pkg/fourslash/tests/completionsECMAPrivateMember_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsECMAPrivateMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsElementAccessNumeric_test.go b/tsc/pkg/fourslash/tests/completionsElementAccessNumeric_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsElementAccessNumeric_test.go rename to tsc/pkg/fourslash/tests/completionsElementAccessNumeric_test.go index b1482ed44d801..0ef4194510b8d 100644 --- a/tsc/internal/fourslash/tests/completionsElementAccessNumeric_test.go +++ b/tsc/pkg/fourslash/tests/completionsElementAccessNumeric_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsElementAccessNumeric(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsExportImport_test.go b/tsc/pkg/fourslash/tests/completionsExportImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsExportImport_test.go rename to tsc/pkg/fourslash/tests/completionsExportImport_test.go index bf15215a47ef2..74cb78cb1678b 100644 --- a/tsc/internal/fourslash/tests/completionsExportImport_test.go +++ b/tsc/pkg/fourslash/tests/completionsExportImport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsExportImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go b/tsc/pkg/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go rename to tsc/pkg/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go index 3c889bd9599ba..c726c16384917 100644 --- a/tsc/internal/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/completionsExternalModuleReferenceResolutionOrderInImportDeclaration_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsExternalModuleReferenceResolutionOrderInImportDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsExternalModuleRenamedExports_test.go b/tsc/pkg/fourslash/tests/completionsExternalModuleRenamedExports_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsExternalModuleRenamedExports_test.go rename to tsc/pkg/fourslash/tests/completionsExternalModuleRenamedExports_test.go index d1d58660e9b36..88c83ee9c5a9f 100644 --- a/tsc/internal/fourslash/tests/completionsExternalModuleRenamedExports_test.go +++ b/tsc/pkg/fourslash/tests/completionsExternalModuleRenamedExports_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsExternalModuleRenamedExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go b/tsc/pkg/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go rename to tsc/pkg/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go index f80e60b3526f9..631a1d587be3b 100644 --- a/tsc/internal/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/completionsForContextualConstraintTypeInJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsForContextualConstraintTypeInJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go b/tsc/pkg/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go rename to tsc/pkg/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go index 905c1f1865f9f..23a2bcc180bfc 100644 --- a/tsc/internal/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go +++ b/tsc/pkg/fourslash/tests/completionsForLatterTypeParametersInConstraints1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsForLatterTypeParametersInConstraints1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go b/tsc/pkg/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go rename to tsc/pkg/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go index 496afa080048a..d0a2dc790d8d6 100644 --- a/tsc/internal/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go +++ b/tsc/pkg/fourslash/tests/completionsForMultilineDefaultImportWithFromOnNextLine_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - fourslashUtil "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + fourslashUtil "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOnImportIdentifierWithFromOnNextLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go b/tsc/pkg/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go rename to tsc/pkg/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go index 63d9a1b9fafc5..7b43ab0d29567 100644 --- a/tsc/internal/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go +++ b/tsc/pkg/fourslash/tests/completionsForRecursiveGenericTypesMember_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsForRecursiveGenericTypesMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go b/tsc/pkg/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go rename to tsc/pkg/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go index 621b8f2668d0b..960a2c6461edc 100644 --- a/tsc/internal/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go +++ b/tsc/pkg/fourslash/tests/completionsForSelfTypeParameterInConstraint1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsForSelfTypeParameterInConstraint1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go b/tsc/pkg/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go rename to tsc/pkg/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go index 4fbbe3bb6778d..3d63945ccd3fc 100644 --- a/tsc/internal/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go +++ b/tsc/pkg/fourslash/tests/completionsForStringDependingOnContexSensitiveSignature_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsForStringDependingOnContexSensitiveSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsFromUntitledFile_test.go b/tsc/pkg/fourslash/tests/completionsFromUntitledFile_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsFromUntitledFile_test.go rename to tsc/pkg/fourslash/tests/completionsFromUntitledFile_test.go index 9f3f386cc2651..bd5b83c394fbe 100644 --- a/tsc/internal/fourslash/tests/completionsFromUntitledFile_test.go +++ b/tsc/pkg/fourslash/tests/completionsFromUntitledFile_test.go @@ -3,16 +3,16 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsFromUntitledFile(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") // Test that completions work in untitled files without crashing. - // Regression test for https://github.com/microsoft/TypeScript/tsc/issues/2550 + // Regression test for https://github.com/frida/TypeScript/tsc/issues/2550 const content = `// @filename: /home/src/project/utils.ts export function helper() {} diff --git a/tsc/internal/fourslash/tests/completionsGeneratorFunctions_test.go b/tsc/pkg/fourslash/tests/completionsGeneratorFunctions_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsGeneratorFunctions_test.go rename to tsc/pkg/fourslash/tests/completionsGeneratorFunctions_test.go index e061ec447f72a..a5716be441fec 100644 --- a/tsc/internal/fourslash/tests/completionsGeneratorFunctions_test.go +++ b/tsc/pkg/fourslash/tests/completionsGeneratorFunctions_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGeneratorFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess1_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess1_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess1_test.go index 70c95fd72d1fe..08e350c5cb183 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess1_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess2_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess2_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess2_test.go index 99650efc90d04..e3e2b7980611c 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess2_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess3_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess3_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess3_test.go index 5b22910f265e0..630230f8afb8c 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess3_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess4_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess4_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess4_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess4_test.go index 9bdbeaaa1adcb..5dc8af6faa1b4 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess4_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess5_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess5_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess5_test.go index 7f0b3ced5ef6c..6865cd8b5316c 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess5_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess6_test.go b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess6_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsGenericIndexedAccess6_test.go rename to tsc/pkg/fourslash/tests/completionsGenericIndexedAccess6_test.go index 910959ef78ffd..5f83937bc778b 100644 --- a/tsc/internal/fourslash/tests/completionsGenericIndexedAccess6_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericIndexedAccess6_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericIndexedAccess6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go b/tsc/pkg/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go rename to tsc/pkg/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go index 8828a5487fd4c..c72b6acfc0b7b 100644 --- a/tsc/internal/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericTypeWithMultipleBases1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericTypeWithMultipleBases1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsGenericUnconstrained_test.go b/tsc/pkg/fourslash/tests/completionsGenericUnconstrained_test.go similarity index 72% rename from tsc/internal/fourslash/tests/completionsGenericUnconstrained_test.go rename to tsc/pkg/fourslash/tests/completionsGenericUnconstrained_test.go index 18da708e82aee..c8bee0f1704b3 100644 --- a/tsc/internal/fourslash/tests/completionsGenericUnconstrained_test.go +++ b/tsc/pkg/fourslash/tests/completionsGenericUnconstrained_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsGenericUnconstrained(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportBaseUrl_test.go b/tsc/pkg/fourslash/tests/completionsImportBaseUrl_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsImportBaseUrl_test.go rename to tsc/pkg/fourslash/tests/completionsImportBaseUrl_test.go index 2cea9df73d8e6..206bb84d1c06c 100644 --- a/tsc/internal/fourslash/tests/completionsImportBaseUrl_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportBaseUrl_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportBaseUrl(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go b/tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go rename to tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go index 766ed32b87b3e..48c2ca6196ec8 100644 --- a/tsc/internal/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesEmptyModuleSpecifier1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportDeclarationAttributesEmptyModuleSpecifier1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go b/tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go rename to tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go index a4e74f0699c1a..fdbc315c677fb 100644 --- a/tsc/internal/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportDeclarationAttributesErrorModuleSpecifier1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportDeclarationAttributesErrorModuleSpecifier1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportDefaultExportCrash1_test.go b/tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImportDefaultExportCrash1_test.go rename to tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash1_test.go index f0b9d16095233..18f610a252337 100644 --- a/tsc/internal/fourslash/tests/completionsImportDefaultExportCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportDefaultExportCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportDefaultExportCrash2_test.go b/tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImportDefaultExportCrash2_test.go rename to tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash2_test.go index ec4d4aaf737ca..be535c82b5199 100644 --- a/tsc/internal/fourslash/tests/completionsImportDefaultExportCrash2_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportDefaultExportCrash2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportDefaultExportCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportFromJSXTag_test.go b/tsc/pkg/fourslash/tests/completionsImportFromJSXTag_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImportFromJSXTag_test.go rename to tsc/pkg/fourslash/tests/completionsImportFromJSXTag_test.go index 56bd9adb9330a..a089c0033f23a 100644 --- a/tsc/internal/fourslash/tests/completionsImportFromJSXTag_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportFromJSXTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportFromJSXTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go b/tsc/pkg/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go rename to tsc/pkg/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go index 6b217861cd27d..17a45e5b64841 100644 --- a/tsc/internal/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportModuleAugmentationWithJS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportModuleAugmentationWithJS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportOrExportSpecifier_test.go b/tsc/pkg/fourslash/tests/completionsImportOrExportSpecifier_test.go similarity index 97% rename from tsc/internal/fourslash/tests/completionsImportOrExportSpecifier_test.go rename to tsc/pkg/fourslash/tests/completionsImportOrExportSpecifier_test.go index 4bca531850171..d8493d989899a 100644 --- a/tsc/internal/fourslash/tests/completionsImportOrExportSpecifier_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportOrExportSpecifier_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportOrExportSpecifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportPathsConflict_test.go b/tsc/pkg/fourslash/tests/completionsImportPathsConflict_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImportPathsConflict_test.go rename to tsc/pkg/fourslash/tests/completionsImportPathsConflict_test.go index 1649584d9bc6f..710c4da22f065 100644 --- a/tsc/internal/fourslash/tests/completionsImportPathsConflict_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportPathsConflict_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportPathsConflict(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportTypeKeyword_test.go b/tsc/pkg/fourslash/tests/completionsImportTypeKeyword_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsImportTypeKeyword_test.go rename to tsc/pkg/fourslash/tests/completionsImportTypeKeyword_test.go index b3c83ca91622c..486cf6528228f 100644 --- a/tsc/internal/fourslash/tests/completionsImportTypeKeyword_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportTypeKeyword_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportTypeKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImportYieldExpression_test.go b/tsc/pkg/fourslash/tests/completionsImportYieldExpression_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImportYieldExpression_test.go rename to tsc/pkg/fourslash/tests/completionsImportYieldExpression_test.go index f9d65c20c755c..eff7443881efa 100644 --- a/tsc/internal/fourslash/tests/completionsImportYieldExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionsImportYieldExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImportYieldExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_46332_test.go b/tsc/pkg/fourslash/tests/completionsImport_46332_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsImport_46332_test.go rename to tsc/pkg/fourslash/tests/completionsImport_46332_test.go index bab85cef1622e..d426645b9ac28 100644 --- a/tsc/internal/fourslash/tests/completionsImport_46332_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_46332_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_46332(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go b/tsc/pkg/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go rename to tsc/pkg/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go index c9dc8be3e0dda..7e80735fe1c9d 100644 --- a/tsc/internal/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_addToNamedWithDifferentCacheValue_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_addToNamedWithDifferentCacheValue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_ambient_test.go b/tsc/pkg/fourslash/tests/completionsImport_ambient_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_ambient_test.go rename to tsc/pkg/fourslash/tests/completionsImport_ambient_test.go index d666cf9df4111..57b904df7eefa 100644 --- a/tsc/internal/fourslash/tests/completionsImport_ambient_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_ambient_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_ambient(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_augmentation_test.go b/tsc/pkg/fourslash/tests/completionsImport_augmentation_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_augmentation_test.go rename to tsc/pkg/fourslash/tests/completionsImport_augmentation_test.go index 335fafab79c9e..1ee145eea9929 100644 --- a/tsc/internal/fourslash/tests/completionsImport_augmentation_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_augmentation_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_augmentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_compilerOptionsModule_test.go b/tsc/pkg/fourslash/tests/completionsImport_compilerOptionsModule_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_compilerOptionsModule_test.go rename to tsc/pkg/fourslash/tests/completionsImport_compilerOptionsModule_test.go index e7c9201af2b00..ccf812017d4f1 100644 --- a/tsc/internal/fourslash/tests/completionsImport_compilerOptionsModule_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_compilerOptionsModule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_compilerOptionsModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_computedSymbolName_test.go b/tsc/pkg/fourslash/tests/completionsImport_computedSymbolName_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsImport_computedSymbolName_test.go rename to tsc/pkg/fourslash/tests/completionsImport_computedSymbolName_test.go index c27af6add3491..c687768abe9d6 100644 --- a/tsc/internal/fourslash/tests/completionsImport_computedSymbolName_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_computedSymbolName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_computedSymbolName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go b/tsc/pkg/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go rename to tsc/pkg/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go index 3b28eb1d9e84f..e8455457913e5 100644 --- a/tsc/internal/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_defaultAndNamedConflict_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_defaultAndNamedConflict(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_defaultFalsePositive_test.go b/tsc/pkg/fourslash/tests/completionsImport_defaultFalsePositive_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsImport_defaultFalsePositive_test.go rename to tsc/pkg/fourslash/tests/completionsImport_defaultFalsePositive_test.go index 66389550a634a..9234d0af640b0 100644 --- a/tsc/internal/fourslash/tests/completionsImport_defaultFalsePositive_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_defaultFalsePositive_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_defaultFalsePositive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_addToNamedImports_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_addToNamedImports_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_default_addToNamedImports_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_addToNamedImports_test.go index 48a9b59098daf..eb3f8bbe368b8 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_addToNamedImports_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_addToNamedImports_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_addToNamedImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go index 8f821c295914e..5867566548af9 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_addToNamespaceImport_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_addToNamespaceImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go index cfbfdcdead791..5147285dc5710 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_alreadyExistedWithRename_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_alreadyExistedWithRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_anonymous_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_anonymous_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsImport_default_anonymous_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_anonymous_test.go index cec3f64cc356c..a4124cb84f10c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_anonymous_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_anonymous_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_anonymous(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_didNotExistBefore_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_didNotExistBefore_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_default_didNotExistBefore_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_didNotExistBefore_test.go index 6bf5e5d2ea58e..da25276df7809 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_didNotExistBefore_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_didNotExistBefore_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_didNotExistBefore(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go index 09f82e9234f2e..b64e769ff7dfe 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_exportDefaultIdentifier_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_exportDefaultIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go index 1718bc93fb6ce..7ae17ba52792c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_fromMergedDeclarations_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_fromMergedDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_reExport_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_reExport_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_default_reExport_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_reExport_test.go index a286f41afd156..dd17913c80113 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_reExport_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_reExport_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_reExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_default_symbolName_test.go b/tsc/pkg/fourslash/tests/completionsImport_default_symbolName_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_default_symbolName_test.go rename to tsc/pkg/fourslash/tests/completionsImport_default_symbolName_test.go index 258bcf1438dd8..12b3394eae44c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_default_symbolName_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_default_symbolName_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_default_symbolName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_details_withMisspelledName_test.go b/tsc/pkg/fourslash/tests/completionsImport_details_withMisspelledName_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_details_withMisspelledName_test.go rename to tsc/pkg/fourslash/tests/completionsImport_details_withMisspelledName_test.go index 3fa5eaca82ed6..4e2019f2e2074 100644 --- a/tsc/internal/fourslash/tests/completionsImport_details_withMisspelledName_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_details_withMisspelledName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_details_withMisspelledName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go rename to tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go index e28e67cbb3328..92a1a02cd9428 100644 --- a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypesAndNotTypes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_duplicatePackages_scopedTypesAndNotTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go rename to tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go index c2482871fc6b7..9f2e60bb5579c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scopedTypes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_duplicatePackages_scopedTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go rename to tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go index 9152d345ca951..1e94b996a4d17 100644 --- a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_scoped_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_duplicatePackages_scoped(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go rename to tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go index fcf3ee8a51276..37bf8b4c1e573 100644 --- a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_typesAndNotTypes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_duplicatePackages_typesAndNotTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_types_test.go b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_types_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_duplicatePackages_types_test.go rename to tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_types_test.go index 5ea6cc412af60..394bd3505908b 100644 --- a/tsc/internal/fourslash/tests/completionsImport_duplicatePackages_types_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_duplicatePackages_types_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_duplicatePackages_types(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go b/tsc/pkg/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go rename to tsc/pkg/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go index 2ae51ec1da3e2..68dde0826726c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_exportEqualsNamespace_noDuplicate_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_exportEqualsNamespace_noDuplicate(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_exportEquals_anonymous_test.go b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_anonymous_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsImport_exportEquals_anonymous_test.go rename to tsc/pkg/fourslash/tests/completionsImport_exportEquals_anonymous_test.go index 776348e9787b2..343225e94a803 100644 --- a/tsc/internal/fourslash/tests/completionsImport_exportEquals_anonymous_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_anonymous_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_exportEquals_anonymous(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_exportEquals_global_test.go b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_global_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsImport_exportEquals_global_test.go rename to tsc/pkg/fourslash/tests/completionsImport_exportEquals_global_test.go index 02867dbd7797b..25a5c031eec0e 100644 --- a/tsc/internal/fourslash/tests/completionsImport_exportEquals_global_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_global_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_exportEquals_global(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_exportEquals_test.go b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_exportEquals_test.go rename to tsc/pkg/fourslash/tests/completionsImport_exportEquals_test.go index c8ec12b68a25e..442796ee7535e 100644 --- a/tsc/internal/fourslash/tests/completionsImport_exportEquals_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_exportEquals_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_exportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go index 7899c1bdb01be..01bb51b946ce7 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByInvalidPackageJson_direct_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByInvalidPackageJson_direct(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go index 8f8f168b233ff..738245e4a2440 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesImplicit_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_typesImplicit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go index 74d531c4c4c02..d188a6199a102 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_@typesOnly_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_typesOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go index 2c0b7713c1020..ba88a449879eb 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_ambient_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_ambient(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go index d807a2fe67adc..7066b86fcff4c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_direct_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_direct(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go index c09583471f5e1..d109112d51419 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_nested_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_nested(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go rename to tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go index 93126a4eb71d2..01fb446d0d67c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_filteredByPackageJson_peerDependencies_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_filteredByPackageJson_peerDependencies(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_fromAmbientModule_test.go b/tsc/pkg/fourslash/tests/completionsImport_fromAmbientModule_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_fromAmbientModule_test.go rename to tsc/pkg/fourslash/tests/completionsImport_fromAmbientModule_test.go index 7a36f81a21eb1..b0c7bbae37bf1 100644 --- a/tsc/internal/fourslash/tests/completionsImport_fromAmbientModule_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_fromAmbientModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_fromAmbientModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_importType_test.go b/tsc/pkg/fourslash/tests/completionsImport_importType_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_importType_test.go rename to tsc/pkg/fourslash/tests/completionsImport_importType_test.go index ce472cbeaeaab..85bebe06e5f45 100644 --- a/tsc/internal/fourslash/tests/completionsImport_importType_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_importType_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_importType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go b/tsc/pkg/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go rename to tsc/pkg/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go index 2f6d70d1a82da..b41f9d172abde 100644 --- a/tsc/internal/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_jsModuleExportsAssignment_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_jsModuleExportsAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go b/tsc/pkg/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go rename to tsc/pkg/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go index 3b95ff4724941..27c9bd3acfb0d 100644 --- a/tsc/internal/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_jsxOpeningTagImportDefault_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_jsxOpeningTagImportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_mergedReExport_test.go b/tsc/pkg/fourslash/tests/completionsImport_mergedReExport_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsImport_mergedReExport_test.go rename to tsc/pkg/fourslash/tests/completionsImport_mergedReExport_test.go index ed6018fd830af..2d25d21646850 100644 --- a/tsc/internal/fourslash/tests/completionsImport_mergedReExport_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_mergedReExport_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_mergedReExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_multipleWithSameName_test.go b/tsc/pkg/fourslash/tests/completionsImport_multipleWithSameName_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_multipleWithSameName_test.go rename to tsc/pkg/fourslash/tests/completionsImport_multipleWithSameName_test.go index 6d6c5340b8c16..0d8eefdf91a7f 100644 --- a/tsc/internal/fourslash/tests/completionsImport_multipleWithSameName_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_multipleWithSameName_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_multipleWithSameName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_addToNamedImports_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_addToNamedImports_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_named_addToNamedImports_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_addToNamedImports_test.go index f5dab8eeecd8c..220044befa1c4 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_addToNamedImports_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_addToNamedImports_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_addToNamedImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_didNotExistBefore_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_didNotExistBefore_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_named_didNotExistBefore_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_didNotExistBefore_test.go index 45fc4d0c6e251..5fee453ec481f 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_didNotExistBefore_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_didNotExistBefore_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_didNotExistBefore(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go index fffd8c00072b2..679d303f98425 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_merged_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_exportEqualsNamespace_merged(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go index a1b7c7b684e98..49943feaac2a8 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_exportEqualsNamespace_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_exportEqualsNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go index dbbf3b7bda022..217f946ae441b 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_fromMergedDeclarations_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_fromMergedDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_named_namespaceImportExists_test.go b/tsc/pkg/fourslash/tests/completionsImport_named_namespaceImportExists_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_named_namespaceImportExists_test.go rename to tsc/pkg/fourslash/tests/completionsImport_named_namespaceImportExists_test.go index db261dea8d536..24cbad808e397 100644 --- a/tsc/internal/fourslash/tests/completionsImport_named_namespaceImportExists_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_named_namespaceImportExists_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_named_namespaceImportExists(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_noSemicolons_test.go b/tsc/pkg/fourslash/tests/completionsImport_noSemicolons_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsImport_noSemicolons_test.go rename to tsc/pkg/fourslash/tests/completionsImport_noSemicolons_test.go index c4fffa1ed3847..4f5c22c158778 100644 --- a/tsc/internal/fourslash/tests/completionsImport_noSemicolons_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_noSemicolons_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_noSemicolons(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go b/tsc/pkg/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go rename to tsc/pkg/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go index ca90d59588af8..737b18b791b5f 100644 --- a/tsc/internal/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_notFromUnrelatedNodeModules_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_notFromUnrelatedNodeModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go b/tsc/pkg/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go rename to tsc/pkg/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go index 6d151412f9ae3..7941f148bcb85 100644 --- a/tsc/internal/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_ofAlias_preferShortPath_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_ofAlias_preferShortPath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go b/tsc/pkg/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go rename to tsc/pkg/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go index 3cc0f3eaf5285..6a7cd4f5c226d 100644 --- a/tsc/internal/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_packageJsonImportsPreference_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_packageJsonImportsPreference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go b/tsc/pkg/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go rename to tsc/pkg/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go index bccc79e22dba4..04d5dabb8ab1d 100644 --- a/tsc/internal/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_preferUpdatingExistingImport_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_preferUpdatingExistingImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go b/tsc/pkg/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go rename to tsc/pkg/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go index ba3fe93c4b812..d47949854e4d8 100644 --- a/tsc/internal/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_previousTokenIsSemicolon_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_previousTokenIsSemicolon(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_promoteTypeOnly2_test.go b/tsc/pkg/fourslash/tests/completionsImport_promoteTypeOnly2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsImport_promoteTypeOnly2_test.go rename to tsc/pkg/fourslash/tests/completionsImport_promoteTypeOnly2_test.go index 876725c32b5dc..7bb404bcc3987 100644 --- a/tsc/internal/fourslash/tests/completionsImport_promoteTypeOnly2_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_promoteTypeOnly2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_promoteTypeOnly2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_quoteStyle_test.go b/tsc/pkg/fourslash/tests/completionsImport_quoteStyle_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImport_quoteStyle_test.go rename to tsc/pkg/fourslash/tests/completionsImport_quoteStyle_test.go index 8a2a104d545a9..22428012d7bca 100644 --- a/tsc/internal/fourslash/tests/completionsImport_quoteStyle_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_quoteStyle_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_quoteStyle(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_reExportDefault2_test.go b/tsc/pkg/fourslash/tests/completionsImport_reExportDefault2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_reExportDefault2_test.go rename to tsc/pkg/fourslash/tests/completionsImport_reExportDefault2_test.go index b2e2cac935afc..f9be844c49a86 100644 --- a/tsc/internal/fourslash/tests/completionsImport_reExportDefault2_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_reExportDefault2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_reExportDefault2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_reExportDefault_test.go b/tsc/pkg/fourslash/tests/completionsImport_reExportDefault_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_reExportDefault_test.go rename to tsc/pkg/fourslash/tests/completionsImport_reExportDefault_test.go index 2e137b9e06f13..0c21d6b52ba52 100644 --- a/tsc/internal/fourslash/tests/completionsImport_reExportDefault_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_reExportDefault_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_reExportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_reExport_wrongName_test.go b/tsc/pkg/fourslash/tests/completionsImport_reExport_wrongName_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_reExport_wrongName_test.go rename to tsc/pkg/fourslash/tests/completionsImport_reExport_wrongName_test.go index c2564c7a43e84..e4d8ded66ef77 100644 --- a/tsc/internal/fourslash/tests/completionsImport_reExport_wrongName_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_reExport_wrongName_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_reExport_wrongName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_reexportTransient_test.go b/tsc/pkg/fourslash/tests/completionsImport_reexportTransient_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_reexportTransient_test.go rename to tsc/pkg/fourslash/tests/completionsImport_reexportTransient_test.go index e56cfc1d60527..13fd4a7825333 100644 --- a/tsc/internal/fourslash/tests/completionsImport_reexportTransient_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_reexportTransient_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_reexportTransient(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_require_addNew_test.go b/tsc/pkg/fourslash/tests/completionsImport_require_addNew_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImport_require_addNew_test.go rename to tsc/pkg/fourslash/tests/completionsImport_require_addNew_test.go index 94c2620bec543..16ae8a487b1f1 100644 --- a/tsc/internal/fourslash/tests/completionsImport_require_addNew_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_require_addNew_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_require_addNew(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_require_addToExisting_test.go b/tsc/pkg/fourslash/tests/completionsImport_require_addToExisting_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_require_addToExisting_test.go rename to tsc/pkg/fourslash/tests/completionsImport_require_addToExisting_test.go index 915ff538e315f..b0984b7d1855f 100644 --- a/tsc/internal/fourslash/tests/completionsImport_require_addToExisting_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_require_addToExisting_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_require_addToExisting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_require_test.go b/tsc/pkg/fourslash/tests/completionsImport_require_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsImport_require_test.go rename to tsc/pkg/fourslash/tests/completionsImport_require_test.go index 5983ec8ffd3cb..eec2ba2d4147c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_require_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_require_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_require(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_shadowedByLocal_test.go b/tsc/pkg/fourslash/tests/completionsImport_shadowedByLocal_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsImport_shadowedByLocal_test.go rename to tsc/pkg/fourslash/tests/completionsImport_shadowedByLocal_test.go index d473c9367175b..e4a95016e0c98 100644 --- a/tsc/internal/fourslash/tests/completionsImport_shadowedByLocal_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_shadowedByLocal_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_shadowedByLocal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go b/tsc/pkg/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go rename to tsc/pkg/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go index 0707b72f17a97..905c746474fab 100644 --- a/tsc/internal/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_sortingModuleSpecifiers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_sortingModuleSpecifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_tsx_test.go b/tsc/pkg/fourslash/tests/completionsImport_tsx_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsImport_tsx_test.go rename to tsc/pkg/fourslash/tests/completionsImport_tsx_test.go index 8878d899212f6..4098ecc48b800 100644 --- a/tsc/internal/fourslash/tests/completionsImport_tsx_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_tsx_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_tsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_typeOnly_test.go b/tsc/pkg/fourslash/tests/completionsImport_typeOnly_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsImport_typeOnly_test.go rename to tsc/pkg/fourslash/tests/completionsImport_typeOnly_test.go index fd3499ba6962d..0070a9fefd9d7 100644 --- a/tsc/internal/fourslash/tests/completionsImport_typeOnly_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_typeOnly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_typeOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go b/tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go rename to tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go index c8ffe5f898ee7..dcf40c2666d7c 100644 --- a/tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_umdDefaultNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go b/tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go rename to tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go index f05dcd0dddfc9..00f3eeeecceb6 100644 --- a/tsc/internal/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_umdDefaultNoCrash2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_umdDefaultNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go b/tsc/pkg/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go rename to tsc/pkg/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go index 511c0cf7fcd5e..aff9cd82fd88b 100644 --- a/tsc/internal/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_umdModules1_globalAccess_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_umdModules1_globalAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go b/tsc/pkg/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go rename to tsc/pkg/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go index 85a1e7802b5f7..01cd2c567d619 100644 --- a/tsc/internal/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_umdModules2_moduleExports_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_umdModules2_moduleExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_umdModules3_script_test.go b/tsc/pkg/fourslash/tests/completionsImport_umdModules3_script_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsImport_umdModules3_script_test.go rename to tsc/pkg/fourslash/tests/completionsImport_umdModules3_script_test.go index 48239b1bcd1ab..8b387f5a786a6 100644 --- a/tsc/internal/fourslash/tests/completionsImport_umdModules3_script_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_umdModules3_script_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_umdModules3_script(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go rename to tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go index 9ca8e047b93c0..06b6485d84301 100644 --- a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_uriStyleNodeCoreModules1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go rename to tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go index ee1624535d820..49f19e2bea62e 100644 --- a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_uriStyleNodeCoreModules2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go similarity index 96% rename from tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go rename to tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go index 23d524f980354..caa425cdf799f 100644 --- a/tsc/internal/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_uriStyleNodeCoreModules3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_uriStyleNodeCoreModules3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go b/tsc/pkg/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go rename to tsc/pkg/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go index b81142f03b39d..5688155cfc0a2 100644 --- a/tsc/internal/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_weirdDefaultSynthesis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_weirdDefaultSynthesis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go b/tsc/pkg/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go rename to tsc/pkg/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go index b700df6e8d952..8c96faee530c5 100644 --- a/tsc/internal/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go +++ b/tsc/pkg/fourslash/tests/completionsImport_windowsPathsProjectRelative_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsImport_windowsPathsProjectRelative(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go b/tsc/pkg/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go rename to tsc/pkg/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go index 557329f410503..cd6a5f4b18dc0 100644 --- a/tsc/internal/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go +++ b/tsc/pkg/fourslash/tests/completionsInArrayLiteralWithContextualType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test that string literal completions are suggested in tuple contexts diff --git a/tsc/internal/fourslash/tests/completionsInEmptyTupleType_test.go b/tsc/pkg/fourslash/tests/completionsInEmptyTupleType_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsInEmptyTupleType_test.go rename to tsc/pkg/fourslash/tests/completionsInEmptyTupleType_test.go index 7462d911ce262..c138c27aa1285 100644 --- a/tsc/internal/fourslash/tests/completionsInEmptyTupleType_test.go +++ b/tsc/pkg/fourslash/tests/completionsInEmptyTupleType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInEmptyTupleType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInExport_invalid_test.go b/tsc/pkg/fourslash/tests/completionsInExport_invalid_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionsInExport_invalid_test.go rename to tsc/pkg/fourslash/tests/completionsInExport_invalid_test.go index 37a935ddb6d5b..18742d1bcf3b0 100644 --- a/tsc/internal/fourslash/tests/completionsInExport_invalid_test.go +++ b/tsc/pkg/fourslash/tests/completionsInExport_invalid_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInExport_invalid(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInExport_moduleBlock_test.go b/tsc/pkg/fourslash/tests/completionsInExport_moduleBlock_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionsInExport_moduleBlock_test.go rename to tsc/pkg/fourslash/tests/completionsInExport_moduleBlock_test.go index e6d616e03d8cb..d65aa6db820d5 100644 --- a/tsc/internal/fourslash/tests/completionsInExport_moduleBlock_test.go +++ b/tsc/pkg/fourslash/tests/completionsInExport_moduleBlock_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInExport_moduleBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInExport_test.go b/tsc/pkg/fourslash/tests/completionsInExport_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionsInExport_test.go rename to tsc/pkg/fourslash/tests/completionsInExport_test.go index 0395443e2b2b3..e894aaa12101b 100644 --- a/tsc/internal/fourslash/tests/completionsInExport_test.go +++ b/tsc/pkg/fourslash/tests/completionsInExport_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go b/tsc/pkg/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go rename to tsc/pkg/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go index 74311cd131965..1178f30ab6af5 100644 --- a/tsc/internal/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go +++ b/tsc/pkg/fourslash/tests/completionsInJsxTagDifferentSpreadElementTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInJsxTagDifferentSpreadElementTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInJsxTag_test.go b/tsc/pkg/fourslash/tests/completionsInJsxTag_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsInJsxTag_test.go rename to tsc/pkg/fourslash/tests/completionsInJsxTag_test.go index 6494f0e4edc66..0b9ae76d8ffc3 100644 --- a/tsc/internal/fourslash/tests/completionsInJsxTag_test.go +++ b/tsc/pkg/fourslash/tests/completionsInJsxTag_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInJsxTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInMapConstructorNoCrash_test.go b/tsc/pkg/fourslash/tests/completionsInMapConstructorNoCrash_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsInMapConstructorNoCrash_test.go rename to tsc/pkg/fourslash/tests/completionsInMapConstructorNoCrash_test.go index 3dd14c9fc77d2..f1e83cf0a2b5b 100644 --- a/tsc/internal/fourslash/tests/completionsInMapConstructorNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/completionsInMapConstructorNoCrash_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test for issue: Completions crash in call to `new Map(...)`. diff --git a/tsc/internal/fourslash/tests/completionsInRequire_test.go b/tsc/pkg/fourslash/tests/completionsInRequire_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsInRequire_test.go rename to tsc/pkg/fourslash/tests/completionsInRequire_test.go index befc41db8ff7b..2380491d0180f 100644 --- a/tsc/internal/fourslash/tests/completionsInRequire_test.go +++ b/tsc/pkg/fourslash/tests/completionsInRequire_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInRequire(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsIndexSignatureConstraint1_test.go b/tsc/pkg/fourslash/tests/completionsIndexSignatureConstraint1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsIndexSignatureConstraint1_test.go rename to tsc/pkg/fourslash/tests/completionsIndexSignatureConstraint1_test.go index 8137893986915..74b5a31ad742d 100644 --- a/tsc/internal/fourslash/tests/completionsIndexSignatureConstraint1_test.go +++ b/tsc/pkg/fourslash/tests/completionsIndexSignatureConstraint1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsIndexSignatureConstraint1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsInterfaceElement_test.go b/tsc/pkg/fourslash/tests/completionsInterfaceElement_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionsInterfaceElement_test.go rename to tsc/pkg/fourslash/tests/completionsInterfaceElement_test.go index 14232f38de2d7..2c8f981bcaf42 100644 --- a/tsc/internal/fourslash/tests/completionsInterfaceElement_test.go +++ b/tsc/pkg/fourslash/tests/completionsInterfaceElement_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsInterfaceElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsIsTypeOnlyCompletion_test.go b/tsc/pkg/fourslash/tests/completionsIsTypeOnlyCompletion_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsIsTypeOnlyCompletion_test.go rename to tsc/pkg/fourslash/tests/completionsIsTypeOnlyCompletion_test.go index d1143945a6d53..969e007b8ef41 100644 --- a/tsc/internal/fourslash/tests/completionsIsTypeOnlyCompletion_test.go +++ b/tsc/pkg/fourslash/tests/completionsIsTypeOnlyCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsIsTypeOnlyCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go b/tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go index c3af32ba94616..c121e28f8e504 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesEmptyModuleSpecifier1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocImportTagAttributesEmptyModuleSpecifier1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go b/tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go index 53eb8a17bd12d..012cef166063a 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocImportTagAttributesErrorModuleSpecifier1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocImportTagAttributesErrorModuleSpecifier1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go b/tsc/pkg/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go index cf80f3c7fa7c7..936f1741283b8 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocImportTagEmptyModuleSpecifier1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocImportTagEmptyModuleSpecifier1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocNoCrash1_test.go b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsJSDocNoCrash1_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocNoCrash1_test.go index 2047c42d8071d..4cce9f6868b78 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocNoCrash2_test.go b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsJSDocNoCrash2_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocNoCrash2_test.go index 934e69c360e8e..bd90e725ff717 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocNoCrash3_test.go b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsJSDocNoCrash3_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocNoCrash3_test.go index f531e7ea0a6c9..c20e02e7011db 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocNoCrash3_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocNoCrash3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocNoCrash3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocSignature_test.go b/tsc/pkg/fourslash/tests/completionsJSDocSignature_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsJSDocSignature_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocSignature_test.go index bdeb0b9ad8fb6..0ee991be01145 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocSignature_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocSignature_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJSDocTrivia_test.go b/tsc/pkg/fourslash/tests/completionsJSDocTrivia_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsJSDocTrivia_test.go rename to tsc/pkg/fourslash/tests/completionsJSDocTrivia_test.go index 8ab8f9076a956..1c6f1a222dd20 100644 --- a/tsc/internal/fourslash/tests/completionsJSDocTrivia_test.go +++ b/tsc/pkg/fourslash/tests/completionsJSDocTrivia_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJSDocTrivia(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/completionsJsPropertyAssignment_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsJsPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/completionsJsPropertyAssignment_test.go index f81a634888af6..6c872becedecb 100644 --- a/tsc/internal/fourslash/tests/completionsJsPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsPropertyAssignment_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go b/tsc/pkg/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go rename to tsc/pkg/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go index f8a97162a58e6..c9ad274764871 100644 --- a/tsc/internal/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsdocParamTypeBeforeName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsdocParamTypeBeforeName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsdocTag_test.go b/tsc/pkg/fourslash/tests/completionsJsdocTag_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsJsdocTag_test.go rename to tsc/pkg/fourslash/tests/completionsJsdocTag_test.go index 572812a3dbd57..7f29f352502e0 100644 --- a/tsc/internal/fourslash/tests/completionsJsdocTag_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsdocTag_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsdocTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsdocTypeTagCast_test.go b/tsc/pkg/fourslash/tests/completionsJsdocTypeTagCast_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsJsdocTypeTagCast_test.go rename to tsc/pkg/fourslash/tests/completionsJsdocTypeTagCast_test.go index 3700e606026cf..79a006c73909e 100644 --- a/tsc/internal/fourslash/tests/completionsJsdocTypeTagCast_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsdocTypeTagCast_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsdocTypeTagCast(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsxAttribute2_test.go b/tsc/pkg/fourslash/tests/completionsJsxAttribute2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/completionsJsxAttribute2_test.go rename to tsc/pkg/fourslash/tests/completionsJsxAttribute2_test.go index c1faf065c7c4a..68a72bde449f7 100644 --- a/tsc/internal/fourslash/tests/completionsJsxAttribute2_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsxAttribute2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsxAttribute2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsxAttributeInitializer2_test.go b/tsc/pkg/fourslash/tests/completionsJsxAttributeInitializer2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsJsxAttributeInitializer2_test.go rename to tsc/pkg/fourslash/tests/completionsJsxAttributeInitializer2_test.go index 159e49f6521fc..6ecac0cf970ad 100644 --- a/tsc/internal/fourslash/tests/completionsJsxAttributeInitializer2_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsxAttributeInitializer2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsxAttributeInitializer2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsJsxExpression_test.go b/tsc/pkg/fourslash/tests/completionsJsxExpression_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsJsxExpression_test.go rename to tsc/pkg/fourslash/tests/completionsJsxExpression_test.go index a42ab96e3d3c1..9454eea5c39ac 100644 --- a/tsc/internal/fourslash/tests/completionsJsxExpression_test.go +++ b/tsc/pkg/fourslash/tests/completionsJsxExpression_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsJsxExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsKeyof_test.go b/tsc/pkg/fourslash/tests/completionsKeyof_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsKeyof_test.go rename to tsc/pkg/fourslash/tests/completionsKeyof_test.go index c9adf0f2fd7c4..9d51c26e3556b 100644 --- a/tsc/internal/fourslash/tests/completionsKeyof_test.go +++ b/tsc/pkg/fourslash/tests/completionsKeyof_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsKeyof(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsKeywordsExtends_test.go b/tsc/pkg/fourslash/tests/completionsKeywordsExtends_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionsKeywordsExtends_test.go rename to tsc/pkg/fourslash/tests/completionsKeywordsExtends_test.go index b0e02def25bf5..90f4965c0ccac 100644 --- a/tsc/internal/fourslash/tests/completionsKeywordsExtends_test.go +++ b/tsc/pkg/fourslash/tests/completionsKeywordsExtends_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsKeywordsExtends(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go index b9db516de876c..77b406fb87949 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInArgumentWithNullableConstraint_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralDirectlyInArgumentWithNullableConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go index 2bbef87ed5353..19c2f93c10364 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToArrayType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralDirectlyInRestConstrainedToArrayType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go index 8d551c529db8b..5055e5bc8cab1 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralDirectlyInRestConstrainedToTupleType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralDirectlyInRestConstrainedToTupleType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go index 615fa4339600a..2451790f47b87 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralFromInferenceWithinInferredType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go index 59e5968530ee2..b331d86e263fa 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralFromInferenceWithinInferredType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go index 261741bda536d..0dea07874f40b 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralFromInferenceWithinInferredType3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralFromInferenceWithinInferredType3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go b/tsc/pkg/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go index 975eebba18268..bc5351dfc9018 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralMatchingGenericSignature_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralMatchingGenericSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go b/tsc/pkg/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go index 8f1878e741c6b..decab09761647 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralOnPropertyValueMatchingGeneric_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralOnPropertyValueMatchingGeneric(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiteralOverload_test.go b/tsc/pkg/fourslash/tests/completionsLiteralOverload_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsLiteralOverload_test.go rename to tsc/pkg/fourslash/tests/completionsLiteralOverload_test.go index b1b51eb9be887..0f29c77521847 100644 --- a/tsc/internal/fourslash/tests/completionsLiteralOverload_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiteralOverload_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiteralOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsLiterals_test.go b/tsc/pkg/fourslash/tests/completionsLiterals_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsLiterals_test.go rename to tsc/pkg/fourslash/tests/completionsLiterals_test.go index 9b113c7112ab4..429c4e9b2e4ec 100644 --- a/tsc/internal/fourslash/tests/completionsLiterals_test.go +++ b/tsc/pkg/fourslash/tests/completionsLiterals_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsMergedDeclarations1_test.go b/tsc/pkg/fourslash/tests/completionsMergedDeclarations1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsMergedDeclarations1_test.go rename to tsc/pkg/fourslash/tests/completionsMergedDeclarations1_test.go index 21929e5d0fc8c..0bcf941582a80 100644 --- a/tsc/internal/fourslash/tests/completionsMergedDeclarations1_test.go +++ b/tsc/pkg/fourslash/tests/completionsMergedDeclarations1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsMergedDeclarations1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsMergedDeclarations2_test.go b/tsc/pkg/fourslash/tests/completionsMergedDeclarations2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsMergedDeclarations2_test.go rename to tsc/pkg/fourslash/tests/completionsMergedDeclarations2_test.go index 559100fee942f..b0b5ef4868880 100644 --- a/tsc/internal/fourslash/tests/completionsMergedDeclarations2_test.go +++ b/tsc/pkg/fourslash/tests/completionsMergedDeclarations2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsMergedDeclarations2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsNamespaceMergedWithClass_test.go b/tsc/pkg/fourslash/tests/completionsNamespaceMergedWithClass_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsNamespaceMergedWithClass_test.go rename to tsc/pkg/fourslash/tests/completionsNamespaceMergedWithClass_test.go index 9faa2d1e360b4..82d9c052d80e3 100644 --- a/tsc/internal/fourslash/tests/completionsNamespaceMergedWithClass_test.go +++ b/tsc/pkg/fourslash/tests/completionsNamespaceMergedWithClass_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsNamespaceMergedWithClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsNamespaceMergedWithObject_test.go b/tsc/pkg/fourslash/tests/completionsNamespaceMergedWithObject_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsNamespaceMergedWithObject_test.go rename to tsc/pkg/fourslash/tests/completionsNamespaceMergedWithObject_test.go index b9437258b5792..999623a9251f5 100644 --- a/tsc/internal/fourslash/tests/completionsNamespaceMergedWithObject_test.go +++ b/tsc/pkg/fourslash/tests/completionsNamespaceMergedWithObject_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsNamespaceMergedWithObject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsNamespaceName_test.go b/tsc/pkg/fourslash/tests/completionsNamespaceName_test.go similarity index 88% rename from tsc/internal/fourslash/tests/completionsNamespaceName_test.go rename to tsc/pkg/fourslash/tests/completionsNamespaceName_test.go index 04e0b23bd7dea..85ef2a1f91467 100644 --- a/tsc/internal/fourslash/tests/completionsNamespaceName_test.go +++ b/tsc/pkg/fourslash/tests/completionsNamespaceName_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsNamespaceName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsNewTarget_test.go b/tsc/pkg/fourslash/tests/completionsNewTarget_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsNewTarget_test.go rename to tsc/pkg/fourslash/tests/completionsNewTarget_test.go index 98932335979ba..7264a66451336 100644 --- a/tsc/internal/fourslash/tests/completionsNewTarget_test.go +++ b/tsc/pkg/fourslash/tests/completionsNewTarget_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsNewTarget(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsNonExistentImport_test.go b/tsc/pkg/fourslash/tests/completionsNonExistentImport_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsNonExistentImport_test.go rename to tsc/pkg/fourslash/tests/completionsNonExistentImport_test.go index 0f1501e8e8937..be545251b40e3 100644 --- a/tsc/internal/fourslash/tests/completionsNonExistentImport_test.go +++ b/tsc/pkg/fourslash/tests/completionsNonExistentImport_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsNonExistentImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod1_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod1_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod1_test.go index 75bed9e37b618..ec0ab39a991a5 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod1_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod1_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod2_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod2_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod2_test.go index 79f6aa0bf9c33..a05db4af445cf 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod2_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod2_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod3_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod3_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod3_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod3_test.go index 203fe0cefec01..d93c97a3a35ba 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod3_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod3_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod4_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod4_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod4_test.go index f22e0a7499631..c89ce2a8e247d 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod4_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod4_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod5_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod5_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod5_test.go index 3b42eff67aa6e..81868e2d8a033 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod5_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod5_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod6_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod6_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionsObjectLiteralMethod6_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralMethod6_test.go index c3f4b0ec7f1f1..d6ac30e0d46b3 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralMethod6_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralMethod6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralMethod6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralModuleExports_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralModuleExports_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsObjectLiteralModuleExports_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralModuleExports_test.go index 180c4d138ffa2..56c685afb3108 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralModuleExports_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralModuleExports_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralModuleExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go index 8d20bafd26311..928c4d61892c0 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralUnionStringMappingType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralUnionStringMappingType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go index 05582c72fef96..cf0f068539fdb 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralUnionTemplateLiteralType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralUnionTemplateLiteralType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go b/tsc/pkg/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go rename to tsc/pkg/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go index 3c21f7af30d08..95080c393ce8f 100644 --- a/tsc/internal/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go +++ b/tsc/pkg/fourslash/tests/completionsObjectLiteralWithPartialConstraint_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsObjectLiteralWithPartialConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOptionalKindModifier_test.go b/tsc/pkg/fourslash/tests/completionsOptionalKindModifier_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsOptionalKindModifier_test.go rename to tsc/pkg/fourslash/tests/completionsOptionalKindModifier_test.go index 288eda26c6158..ce0309c291420 100644 --- a/tsc/internal/fourslash/tests/completionsOptionalKindModifier_test.go +++ b/tsc/pkg/fourslash/tests/completionsOptionalKindModifier_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOptionalKindModifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOptionalMethod_test.go b/tsc/pkg/fourslash/tests/completionsOptionalMethod_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsOptionalMethod_test.go rename to tsc/pkg/fourslash/tests/completionsOptionalMethod_test.go index 648f6b3b83758..fc6d6757b9bea 100644 --- a/tsc/internal/fourslash/tests/completionsOptionalMethod_test.go +++ b/tsc/pkg/fourslash/tests/completionsOptionalMethod_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOptionalMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod0_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod0_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionsOverridingMethod0_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod0_test.go index ae6f08475cdda..f1b9e8440084e 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod0_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod0_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod10_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod10_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsOverridingMethod10_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod10_test.go index 6aaa9e545ab48..ba8fe3def6e52 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod10_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod10_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod11_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod11_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsOverridingMethod11_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod11_test.go index ade07e880ed90..f3142e4c5e9c6 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod11_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod11_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod12_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod12_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsOverridingMethod12_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod12_test.go index 2cdfa7f004483..819085c853529 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod12_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod12_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod14_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod14_test.go similarity index 72% rename from tsc/internal/fourslash/tests/completionsOverridingMethod14_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod14_test.go index 9f3ddc5e68f1a..7e7cc14fda462 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod14_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod14_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod17_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod17_test.go similarity index 72% rename from tsc/internal/fourslash/tests/completionsOverridingMethod17_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod17_test.go index 596e8a337ed64..b7a28994d4e9c 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod17_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod17_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod18_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod18_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsOverridingMethod18_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod18_test.go index 0c66553dd6177..f0a7a1a864bf1 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod18_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod18_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod19_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod19_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsOverridingMethod19_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod19_test.go index 8301d97c2e9fa..f344db245faab 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod19_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod19_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod1_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod1_test.go similarity index 73% rename from tsc/internal/fourslash/tests/completionsOverridingMethod1_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod1_test.go index 6c14a5dda7c07..aa73760af963b 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod1_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod1_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod20_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod20_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsOverridingMethod20_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod20_test.go index e68cf20bc680a..ec27382599efe 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod20_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod20_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod21_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod21_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsOverridingMethod21_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod21_test.go index f6ec21b044def..0678223d6dc39 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod21_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod21_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod22_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod22_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsOverridingMethod22_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod22_test.go index e69a69fef7137..3608f72083e06 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod22_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod22_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod2_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsOverridingMethod2_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod2_test.go index 200def783cf2a..5d919f3028b50 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod2_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod2_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod3_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod3_test.go similarity index 71% rename from tsc/internal/fourslash/tests/completionsOverridingMethod3_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod3_test.go index 5846b0617dcc8..f298587b894c6 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod3_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod3_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod4_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsOverridingMethod4_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod4_test.go index f81aec1a566c7..a71b814605100 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod4_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod4_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod5_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod5_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionsOverridingMethod5_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod5_test.go index cdaa2d770a901..60bc73bb0aa93 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod5_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod5_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod6_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod6_test.go similarity index 93% rename from tsc/internal/fourslash/tests/completionsOverridingMethod6_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod6_test.go index a780e578ad890..a7dbc8cc7162e 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod6_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod6_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod7_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsOverridingMethod7_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod7_test.go index 51e1a2d3b7244..b6a603a32b6c1 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod7_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod7_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod8_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsOverridingMethod8_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod8_test.go index 1552766b5af8e..921adeeef0e9e 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod8_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod8_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethod9_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethod9_test.go similarity index 75% rename from tsc/internal/fourslash/tests/completionsOverridingMethod9_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethod9_test.go index ea02570e45cb9..1272986fef1e4 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethod9_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethod9_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethod9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethodCrash1_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethodCrash1_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsOverridingMethodCrash1_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethodCrash1_test.go index 81f839fac12a3..e742581df5b0c 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethodCrash1_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethodCrash1_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethodCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethodCrash2_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethodCrash2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsOverridingMethodCrash2_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethodCrash2_test.go index 9922a6e8f0c0d..b9c15a69b2fb1 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethodCrash2_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethodCrash2_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethodCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingMethodDefaultExported_test.go b/tsc/pkg/fourslash/tests/completionsOverridingMethodDefaultExported_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsOverridingMethodDefaultExported_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingMethodDefaultExported_test.go index 445cf58441870..5a0cd49fd9a39 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingMethodDefaultExported_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingMethodDefaultExported_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingMethodDefaultExported(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingProperties1_test.go b/tsc/pkg/fourslash/tests/completionsOverridingProperties1_test.go similarity index 71% rename from tsc/internal/fourslash/tests/completionsOverridingProperties1_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingProperties1_test.go index 1956387fa244a..1c2a14941b6a1 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingProperties1_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingProperties1_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingProperties2_test.go b/tsc/pkg/fourslash/tests/completionsOverridingProperties2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsOverridingProperties2_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingProperties2_test.go index d6ea0909eaf20..c2847a2064dfb 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingProperties2_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingProperties2_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsOverridingProperties3_test.go b/tsc/pkg/fourslash/tests/completionsOverridingProperties3_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsOverridingProperties3_test.go rename to tsc/pkg/fourslash/tests/completionsOverridingProperties3_test.go index 341bfd46565b4..b4382a28d592d 100644 --- a/tsc/internal/fourslash/tests/completionsOverridingProperties3_test.go +++ b/tsc/pkg/fourslash/tests/completionsOverridingProperties3_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsOverridingProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPathUnknownExtension_test.go b/tsc/pkg/fourslash/tests/completionsPathUnknownExtension_test.go similarity index 85% rename from tsc/internal/fourslash/tests/completionsPathUnknownExtension_test.go rename to tsc/pkg/fourslash/tests/completionsPathUnknownExtension_test.go index 6bac7d28408c8..cb65117300c0c 100644 --- a/tsc/internal/fourslash/tests/completionsPathUnknownExtension_test.go +++ b/tsc/pkg/fourslash/tests/completionsPathUnknownExtension_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPathUnknownExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go b/tsc/pkg/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go rename to tsc/pkg/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go index 2dd949dac7298..bea253e1f3446 100644 --- a/tsc/internal/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go +++ b/tsc/pkg/fourslash/tests/completionsPathsJsonModuleWithoutResolveJsonModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPathsJsonModuleWithoutResolveJsonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPathsJsonModule_test.go b/tsc/pkg/fourslash/tests/completionsPathsJsonModule_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsPathsJsonModule_test.go rename to tsc/pkg/fourslash/tests/completionsPathsJsonModule_test.go index 0ae08d2468354..f32ed7090ec1c 100644 --- a/tsc/internal/fourslash/tests/completionsPathsJsonModule_test.go +++ b/tsc/pkg/fourslash/tests/completionsPathsJsonModule_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPathsJsonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPathsRelativeJsonModule_test.go b/tsc/pkg/fourslash/tests/completionsPathsRelativeJsonModule_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsPathsRelativeJsonModule_test.go rename to tsc/pkg/fourslash/tests/completionsPathsRelativeJsonModule_test.go index c2de04e54c242..bb142cd0185ed 100644 --- a/tsc/internal/fourslash/tests/completionsPathsRelativeJsonModule_test.go +++ b/tsc/pkg/fourslash/tests/completionsPathsRelativeJsonModule_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPathsRelativeJsonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_importType_test.go b/tsc/pkg/fourslash/tests/completionsPaths_importType_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionsPaths_importType_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_importType_test.go index 0893bf2bf5d42..24d57cadfdbdc 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_importType_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_importType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_importType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_kinds_test.go b/tsc/pkg/fourslash/tests/completionsPaths_kinds_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsPaths_kinds_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_kinds_test.go index f8f580764dee2..df69d11b1469f 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_kinds_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_kinds_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_kinds(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go index a5dfdbebd647c..da6f41a39c4f9 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_nonTrailingWildcard1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_pathMapping_nonTrailingWildcard1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go index ecc8af48b7952..c20d1b40b5cdf 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_notInNestedDirectory_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_pathMapping_notInNestedDirectory(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go index 1b7692dbe0390..e110b7a478bdf 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_parentDirectory_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_pathMapping_parentDirectory(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_test.go b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_test.go similarity index 87% rename from tsc/internal/fourslash/tests/completionsPaths_pathMapping_test.go rename to tsc/pkg/fourslash/tests/completionsPaths_pathMapping_test.go index 2868ed2da0899..3da637a80054f 100644 --- a/tsc/internal/fourslash/tests/completionsPaths_pathMapping_test.go +++ b/tsc/pkg/fourslash/tests/completionsPaths_pathMapping_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPaths_pathMapping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPrivateProperties_Js_test.go b/tsc/pkg/fourslash/tests/completionsPrivateProperties_Js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsPrivateProperties_Js_test.go rename to tsc/pkg/fourslash/tests/completionsPrivateProperties_Js_test.go index bf01dc316cf3a..2c6caee9a5fcd 100644 --- a/tsc/internal/fourslash/tests/completionsPrivateProperties_Js_test.go +++ b/tsc/pkg/fourslash/tests/completionsPrivateProperties_Js_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPrivateProperties_Js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPropertiesPriorities_test.go b/tsc/pkg/fourslash/tests/completionsPropertiesPriorities_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsPropertiesPriorities_test.go rename to tsc/pkg/fourslash/tests/completionsPropertiesPriorities_test.go index f9cd09e0b9d13..15b55896ac4cb 100644 --- a/tsc/internal/fourslash/tests/completionsPropertiesPriorities_test.go +++ b/tsc/pkg/fourslash/tests/completionsPropertiesPriorities_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPropertiesPriorities(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go b/tsc/pkg/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go rename to tsc/pkg/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go index 81eb41f1c6a84..1a1dfa0b5e153 100644 --- a/tsc/internal/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go +++ b/tsc/pkg/fourslash/tests/completionsPropertiesWithPromiseUnionType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPropertiesWithPromiseUnionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go b/tsc/pkg/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go rename to tsc/pkg/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go index c5490c8a35225..c96b264a117c0 100644 --- a/tsc/internal/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go +++ b/tsc/pkg/fourslash/tests/completionsQuotedObjectLiteralUnion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsQuotedObjectLiteralUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecommended_equals_test.go b/tsc/pkg/fourslash/tests/completionsRecommended_equals_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsRecommended_equals_test.go rename to tsc/pkg/fourslash/tests/completionsRecommended_equals_test.go index 72d3df4bb4844..3bb23115c5c14 100644 --- a/tsc/internal/fourslash/tests/completionsRecommended_equals_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecommended_equals_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecommended_equals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecommended_namespace_test.go b/tsc/pkg/fourslash/tests/completionsRecommended_namespace_test.go similarity index 89% rename from tsc/internal/fourslash/tests/completionsRecommended_namespace_test.go rename to tsc/pkg/fourslash/tests/completionsRecommended_namespace_test.go index 41a8543e01263..1bd422261f902 100644 --- a/tsc/internal/fourslash/tests/completionsRecommended_namespace_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecommended_namespace_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecommended_namespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go b/tsc/pkg/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go rename to tsc/pkg/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go index 695761246d851..175bf97a9019e 100644 --- a/tsc/internal/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecommended_nonAccessibleSymbol_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecommended_nonAccessibleSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecommended_switch_test.go b/tsc/pkg/fourslash/tests/completionsRecommended_switch_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsRecommended_switch_test.go rename to tsc/pkg/fourslash/tests/completionsRecommended_switch_test.go index 76f76dd37ab46..eb660e9de0163 100644 --- a/tsc/internal/fourslash/tests/completionsRecommended_switch_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecommended_switch_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecommended_switch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecommended_union_test.go b/tsc/pkg/fourslash/tests/completionsRecommended_union_test.go similarity index 84% rename from tsc/internal/fourslash/tests/completionsRecommended_union_test.go rename to tsc/pkg/fourslash/tests/completionsRecommended_union_test.go index f356319e7b8ac..f5bc0dc1e0010 100644 --- a/tsc/internal/fourslash/tests/completionsRecommended_union_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecommended_union_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecommended_union(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRecursiveNamespace_test.go b/tsc/pkg/fourslash/tests/completionsRecursiveNamespace_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsRecursiveNamespace_test.go rename to tsc/pkg/fourslash/tests/completionsRecursiveNamespace_test.go index 46686095e1c91..480df8d7c03d8 100644 --- a/tsc/internal/fourslash/tests/completionsRecursiveNamespace_test.go +++ b/tsc/pkg/fourslash/tests/completionsRecursiveNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRecursiveNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go b/tsc/pkg/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go rename to tsc/pkg/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go index 2ac83567f53ef..01de2d818cd9b 100644 --- a/tsc/internal/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go +++ b/tsc/pkg/fourslash/tests/completionsRedeclareModuleAsGlobal_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsRedeclareModuleAsGlobal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsSelfDeclaring1_test.go b/tsc/pkg/fourslash/tests/completionsSelfDeclaring1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsSelfDeclaring1_test.go rename to tsc/pkg/fourslash/tests/completionsSelfDeclaring1_test.go index 552332dd7ef6f..d9b6f1c34cd10 100644 --- a/tsc/internal/fourslash/tests/completionsSelfDeclaring1_test.go +++ b/tsc/pkg/fourslash/tests/completionsSelfDeclaring1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsSelfDeclaring1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsSelfDeclaring2_test.go b/tsc/pkg/fourslash/tests/completionsSelfDeclaring2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsSelfDeclaring2_test.go rename to tsc/pkg/fourslash/tests/completionsSelfDeclaring2_test.go index 665ff3783c943..682e8b4bb189b 100644 --- a/tsc/internal/fourslash/tests/completionsSelfDeclaring2_test.go +++ b/tsc/pkg/fourslash/tests/completionsSelfDeclaring2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsSelfDeclaring2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsSelfDeclaring3_test.go b/tsc/pkg/fourslash/tests/completionsSelfDeclaring3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/completionsSelfDeclaring3_test.go rename to tsc/pkg/fourslash/tests/completionsSelfDeclaring3_test.go index 079493390aa87..a0e3b59547bdf 100644 --- a/tsc/internal/fourslash/tests/completionsSelfDeclaring3_test.go +++ b/tsc/pkg/fourslash/tests/completionsSelfDeclaring3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsSelfDeclaring3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go b/tsc/pkg/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go similarity index 82% rename from tsc/internal/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go rename to tsc/pkg/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go index ca641ba1b11a4..970bd2d16862b 100644 --- a/tsc/internal/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go +++ b/tsc/pkg/fourslash/tests/completionsStringLiteral_fromTypeConstraint_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsStringLiteral_fromTypeConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsStringsWithTriggerCharacter_test.go b/tsc/pkg/fourslash/tests/completionsStringsWithTriggerCharacter_test.go similarity index 96% rename from tsc/internal/fourslash/tests/completionsStringsWithTriggerCharacter_test.go rename to tsc/pkg/fourslash/tests/completionsStringsWithTriggerCharacter_test.go index f3f9f0641abd0..92f3204d6d5c2 100644 --- a/tsc/internal/fourslash/tests/completionsStringsWithTriggerCharacter_test.go +++ b/tsc/pkg/fourslash/tests/completionsStringsWithTriggerCharacter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsStringsWithTriggerCharacter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsSymbolMembers_test.go b/tsc/pkg/fourslash/tests/completionsSymbolMembers_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsSymbolMembers_test.go rename to tsc/pkg/fourslash/tests/completionsSymbolMembers_test.go index 384bd064dd3e2..6c3d533f437f5 100644 --- a/tsc/internal/fourslash/tests/completionsSymbolMembers_test.go +++ b/tsc/pkg/fourslash/tests/completionsSymbolMembers_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsSymbolMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsTriggerCharacter_test.go b/tsc/pkg/fourslash/tests/completionsTriggerCharacter_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionsTriggerCharacter_test.go rename to tsc/pkg/fourslash/tests/completionsTriggerCharacter_test.go index 6f79e84132f05..700e255701737 100644 --- a/tsc/internal/fourslash/tests/completionsTriggerCharacter_test.go +++ b/tsc/pkg/fourslash/tests/completionsTriggerCharacter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsTriggerCharacter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsTuple_test.go b/tsc/pkg/fourslash/tests/completionsTuple_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsTuple_test.go rename to tsc/pkg/fourslash/tests/completionsTuple_test.go index 58067567c80c4..d9d634c39678c 100644 --- a/tsc/internal/fourslash/tests/completionsTuple_test.go +++ b/tsc/pkg/fourslash/tests/completionsTuple_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsTuple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsTypeAssertionKeywords_test.go b/tsc/pkg/fourslash/tests/completionsTypeAssertionKeywords_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsTypeAssertionKeywords_test.go rename to tsc/pkg/fourslash/tests/completionsTypeAssertionKeywords_test.go index 1aa4ea92fe52c..2742a5acb16d2 100644 --- a/tsc/internal/fourslash/tests/completionsTypeAssertionKeywords_test.go +++ b/tsc/pkg/fourslash/tests/completionsTypeAssertionKeywords_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsTypeAssertionKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsTypeKeywords_test.go b/tsc/pkg/fourslash/tests/completionsTypeKeywords_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsTypeKeywords_test.go rename to tsc/pkg/fourslash/tests/completionsTypeKeywords_test.go index 2842bad9f4329..721b07d666225 100644 --- a/tsc/internal/fourslash/tests/completionsTypeKeywords_test.go +++ b/tsc/pkg/fourslash/tests/completionsTypeKeywords_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsTypeKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsTypeOnlyNamespace_test.go b/tsc/pkg/fourslash/tests/completionsTypeOnlyNamespace_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsTypeOnlyNamespace_test.go rename to tsc/pkg/fourslash/tests/completionsTypeOnlyNamespace_test.go index ffa438ab5195c..0557342709738 100644 --- a/tsc/internal/fourslash/tests/completionsTypeOnlyNamespace_test.go +++ b/tsc/pkg/fourslash/tests/completionsTypeOnlyNamespace_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsTypeOnlyNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsUnionStringLiteralProperty_test.go b/tsc/pkg/fourslash/tests/completionsUnionStringLiteralProperty_test.go similarity index 94% rename from tsc/internal/fourslash/tests/completionsUnionStringLiteralProperty_test.go rename to tsc/pkg/fourslash/tests/completionsUnionStringLiteralProperty_test.go index ea107aaa2039b..9f108d91d3281 100644 --- a/tsc/internal/fourslash/tests/completionsUnionStringLiteralProperty_test.go +++ b/tsc/pkg/fourslash/tests/completionsUnionStringLiteralProperty_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsUnionStringLiteralProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsUnion_test.go b/tsc/pkg/fourslash/tests/completionsUnion_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsUnion_test.go rename to tsc/pkg/fourslash/tests/completionsUnion_test.go index ba82d1dd436d8..47fcce83cba79 100644 --- a/tsc/internal/fourslash/tests/completionsUnion_test.go +++ b/tsc/pkg/fourslash/tests/completionsUnion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsUniqueSymbol1_test.go b/tsc/pkg/fourslash/tests/completionsUniqueSymbol1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsUniqueSymbol1_test.go rename to tsc/pkg/fourslash/tests/completionsUniqueSymbol1_test.go index ace073228d030..f87fb051b3004 100644 --- a/tsc/internal/fourslash/tests/completionsUniqueSymbol1_test.go +++ b/tsc/pkg/fourslash/tests/completionsUniqueSymbol1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsUniqueSymbol1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsUniqueSymbol_import_test.go b/tsc/pkg/fourslash/tests/completionsUniqueSymbol_import_test.go similarity index 86% rename from tsc/internal/fourslash/tests/completionsUniqueSymbol_import_test.go rename to tsc/pkg/fourslash/tests/completionsUniqueSymbol_import_test.go index 3487268e37438..19f8c1a0943f7 100644 --- a/tsc/internal/fourslash/tests/completionsUniqueSymbol_import_test.go +++ b/tsc/pkg/fourslash/tests/completionsUniqueSymbol_import_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsUniqueSymbol_import(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsUnterminatedLiteral_test.go b/tsc/pkg/fourslash/tests/completionsUnterminatedLiteral_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsUnterminatedLiteral_test.go rename to tsc/pkg/fourslash/tests/completionsUnterminatedLiteral_test.go index e539e398880a3..50233ef5a73f4 100644 --- a/tsc/internal/fourslash/tests/completionsUnterminatedLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionsUnterminatedLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsUnterminatedLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag10_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag10_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag10_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag10_test.go index d769368c97a60..0acbcff21f0ea 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag10_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag10_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag1_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag1_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag1_test.go index e9a61e840b4ea..6b900c0a28e0a 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag1_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag2_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag2_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag2_test.go index ca6d13d0100f2..91fe79cc22a6d 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag2_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag3_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag3_test.go similarity index 74% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag3_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag3_test.go index 8e8c9dc14560e..57df9ab40d8f1 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag3_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag4_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag4_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag4_test.go index c6220e789e6b1..e4ceaf8e318aa 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag4_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag5_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag5_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag5_test.go index 4ef8d9837efe0..4d377c2246241 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag5_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag6_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag6_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag6_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag6_test.go index 08d56ff50db84..512134b125db1 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag6_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag7_test.go b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsWithDeprecatedTag7_test.go rename to tsc/pkg/fourslash/tests/completionsWithDeprecatedTag7_test.go index 844aac40bfb23..535a2baebea0b 100644 --- a/tsc/internal/fourslash/tests/completionsWithDeprecatedTag7_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithDeprecatedTag7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithDeprecatedTag7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithGenericStringLiteral_test.go b/tsc/pkg/fourslash/tests/completionsWithGenericStringLiteral_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWithGenericStringLiteral_test.go rename to tsc/pkg/fourslash/tests/completionsWithGenericStringLiteral_test.go index bd15a187b5ba3..2ce6a345eb126 100644 --- a/tsc/internal/fourslash/tests/completionsWithGenericStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithGenericStringLiteral_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithGenericStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go index 74f2c99b3a52d..7500ef04d443d 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericConstructor_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go similarity index 78% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go index 46914155e9811..9b46e4e862be9 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericDeep_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericDeep(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go index fa35668fc9d0a..d9c18981dfbaf 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericPartial2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go index 56f3d20557538..cf3b09dea703e 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericPartial3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go index 10e63b00b43bd..7bc837f16d14e 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericPartial_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericPartial(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go index 68e3ce079c1dd..4cc3fd7ae0385 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGenericValidBoolean_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGenericValidBoolean(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go similarity index 76% rename from tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go index a6098c1baa4d4..b3bbea12e19e4 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalPropertiesGeneric_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalPropertiesGeneric(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOptionalProperties_test.go b/tsc/pkg/fourslash/tests/completionsWithOptionalProperties_test.go similarity index 77% rename from tsc/internal/fourslash/tests/completionsWithOptionalProperties_test.go rename to tsc/pkg/fourslash/tests/completionsWithOptionalProperties_test.go index 6f85962809a52..96d21f936c7f2 100644 --- a/tsc/internal/fourslash/tests/completionsWithOptionalProperties_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOptionalProperties_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOptionalProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOverride1_test.go b/tsc/pkg/fourslash/tests/completionsWithOverride1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/completionsWithOverride1_test.go rename to tsc/pkg/fourslash/tests/completionsWithOverride1_test.go index 0fc60481e6835..fa6aa4be9efbf 100644 --- a/tsc/internal/fourslash/tests/completionsWithOverride1_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOverride1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOverride1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithOverride2_test.go b/tsc/pkg/fourslash/tests/completionsWithOverride2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWithOverride2_test.go rename to tsc/pkg/fourslash/tests/completionsWithOverride2_test.go index e8623d670b547..35b1daaa749b0 100644 --- a/tsc/internal/fourslash/tests/completionsWithOverride2_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithOverride2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithOverride2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWithStringReplacementMode1_test.go b/tsc/pkg/fourslash/tests/completionsWithStringReplacementMode1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/completionsWithStringReplacementMode1_test.go rename to tsc/pkg/fourslash/tests/completionsWithStringReplacementMode1_test.go index a575845154a59..92565a29156e6 100644 --- a/tsc/internal/fourslash/tests/completionsWithStringReplacementMode1_test.go +++ b/tsc/pkg/fourslash/tests/completionsWithStringReplacementMode1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWithStringReplacementMode1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWrappedClass_test.go b/tsc/pkg/fourslash/tests/completionsWrappedClass_test.go similarity index 83% rename from tsc/internal/fourslash/tests/completionsWrappedClass_test.go rename to tsc/pkg/fourslash/tests/completionsWrappedClass_test.go index ffeba041a2f09..70a4ca1e6cf53 100644 --- a/tsc/internal/fourslash/tests/completionsWrappedClass_test.go +++ b/tsc/pkg/fourslash/tests/completionsWrappedClass_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWrappedClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/completionsWritingSpreadArgument_test.go b/tsc/pkg/fourslash/tests/completionsWritingSpreadArgument_test.go similarity index 80% rename from tsc/internal/fourslash/tests/completionsWritingSpreadArgument_test.go rename to tsc/pkg/fourslash/tests/completionsWritingSpreadArgument_test.go index e281ee1974019..a95127e10fb26 100644 --- a/tsc/internal/fourslash/tests/completionsWritingSpreadArgument_test.go +++ b/tsc/pkg/fourslash/tests/completionsWritingSpreadArgument_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsWritingSpreadArgument(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go b/tsc/pkg/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go similarity index 80% rename from tsc/internal/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go rename to tsc/pkg/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go index 9baaff9e794a3..2c6c46675ba20 100644 --- a/tsc/internal/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go +++ b/tsc/pkg/fourslash/tests/consistenceOnIndentionsOfObjectsInAListAfterFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConsistenceOnIndentionsOfObjectsInAListAfterFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go b/tsc/pkg/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go similarity index 86% rename from tsc/internal/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go rename to tsc/pkg/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go index d710db9983bb6..33683ad145db9 100644 --- a/tsc/internal/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go +++ b/tsc/pkg/fourslash/tests/consistentContextualTypeErrorsAfterEdits_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConsistentContextualTypeErrorsAfterEdits(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go b/tsc/pkg/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go similarity index 77% rename from tsc/internal/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go rename to tsc/pkg/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go index 66a02e9970afd..89a4858de66f4 100644 --- a/tsc/internal/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go +++ b/tsc/pkg/fourslash/tests/constEnumQuickInfoAndCompletionList_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstEnumQuickInfoAndCompletionList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constQuickInfoAndCompletionList_test.go b/tsc/pkg/fourslash/tests/constQuickInfoAndCompletionList_test.go similarity index 91% rename from tsc/internal/fourslash/tests/constQuickInfoAndCompletionList_test.go rename to tsc/pkg/fourslash/tests/constQuickInfoAndCompletionList_test.go index ffd2339728bf4..53e75f1c58d13 100644 --- a/tsc/internal/fourslash/tests/constQuickInfoAndCompletionList_test.go +++ b/tsc/pkg/fourslash/tests/constQuickInfoAndCompletionList_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstQuickInfoAndCompletionList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorBraceFormatting_test.go b/tsc/pkg/fourslash/tests/constructorBraceFormatting_test.go similarity index 79% rename from tsc/internal/fourslash/tests/constructorBraceFormatting_test.go rename to tsc/pkg/fourslash/tests/constructorBraceFormatting_test.go index 2ed868c40a8ac..3834fdb0c12e9 100644 --- a/tsc/internal/fourslash/tests/constructorBraceFormatting_test.go +++ b/tsc/pkg/fourslash/tests/constructorBraceFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorBraceFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorFindAllReferences1VS_test.go b/tsc/pkg/fourslash/tests/constructorFindAllReferences1VS_test.go similarity index 72% rename from tsc/internal/fourslash/tests/constructorFindAllReferences1VS_test.go rename to tsc/pkg/fourslash/tests/constructorFindAllReferences1VS_test.go index 61014bf2c9d4f..7ee506b8102fc 100644 --- a/tsc/internal/fourslash/tests/constructorFindAllReferences1VS_test.go +++ b/tsc/pkg/fourslash/tests/constructorFindAllReferences1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorFindAllReferences1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorFindAllReferences1_test.go b/tsc/pkg/fourslash/tests/constructorFindAllReferences1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/constructorFindAllReferences1_test.go rename to tsc/pkg/fourslash/tests/constructorFindAllReferences1_test.go index 74dcdd627fd69..9f360e62e58f5 100644 --- a/tsc/internal/fourslash/tests/constructorFindAllReferences1_test.go +++ b/tsc/pkg/fourslash/tests/constructorFindAllReferences1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorFindAllReferences1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorFindAllReferences2_test.go b/tsc/pkg/fourslash/tests/constructorFindAllReferences2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/constructorFindAllReferences2_test.go rename to tsc/pkg/fourslash/tests/constructorFindAllReferences2_test.go index 05c4107585974..90d8573783b74 100644 --- a/tsc/internal/fourslash/tests/constructorFindAllReferences2_test.go +++ b/tsc/pkg/fourslash/tests/constructorFindAllReferences2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorFindAllReferences2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorFindAllReferences3_test.go b/tsc/pkg/fourslash/tests/constructorFindAllReferences3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/constructorFindAllReferences3_test.go rename to tsc/pkg/fourslash/tests/constructorFindAllReferences3_test.go index 20ab756e8618b..28c9acf2c8967 100644 --- a/tsc/internal/fourslash/tests/constructorFindAllReferences3_test.go +++ b/tsc/pkg/fourslash/tests/constructorFindAllReferences3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorFindAllReferences3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorFindAllReferences4_test.go b/tsc/pkg/fourslash/tests/constructorFindAllReferences4_test.go similarity index 78% rename from tsc/internal/fourslash/tests/constructorFindAllReferences4_test.go rename to tsc/pkg/fourslash/tests/constructorFindAllReferences4_test.go index ed01f97e61066..e0e4d932eb114 100644 --- a/tsc/internal/fourslash/tests/constructorFindAllReferences4_test.go +++ b/tsc/pkg/fourslash/tests/constructorFindAllReferences4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorFindAllReferences4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/constructorQuickInfo_test.go b/tsc/pkg/fourslash/tests/constructorQuickInfo_test.go similarity index 82% rename from tsc/internal/fourslash/tests/constructorQuickInfo_test.go rename to tsc/pkg/fourslash/tests/constructorQuickInfo_test.go index 97f56a41ff85b..ed76aa0e80cb6 100644 --- a/tsc/internal/fourslash/tests/constructorQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/constructorQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConstructorQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperAutoImports_test.go b/tsc/pkg/fourslash/tests/contentMapperAutoImports_test.go similarity index 95% rename from tsc/internal/fourslash/tests/contentMapperAutoImports_test.go rename to tsc/pkg/fourslash/tests/contentMapperAutoImports_test.go index 04397374e841a..ab8a08e0a42fc 100644 --- a/tsc/internal/fourslash/tests/contentMapperAutoImports_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperAutoImports_test.go @@ -3,14 +3,14 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperAutoImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperCodeActions_test.go b/tsc/pkg/fourslash/tests/contentMapperCodeActions_test.go similarity index 77% rename from tsc/internal/fourslash/tests/contentMapperCodeActions_test.go rename to tsc/pkg/fourslash/tests/contentMapperCodeActions_test.go index 1729234c46305..a95028e3a16ee 100644 --- a/tsc/internal/fourslash/tests/contentMapperCodeActions_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperCodeActions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperDiagnosticCodeDoesNotSelectTypeScriptFix(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperCompletions_test.go b/tsc/pkg/fourslash/tests/contentMapperCompletions_test.go similarity index 93% rename from tsc/internal/fourslash/tests/contentMapperCompletions_test.go rename to tsc/pkg/fourslash/tests/contentMapperCompletions_test.go index 835ea1885df08..1e0bfcf1d528b 100644 --- a/tsc/internal/fourslash/tests/contentMapperCompletions_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperCompletions_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDeclarationMapNavigation_test.go b/tsc/pkg/fourslash/tests/contentMapperDeclarationMapNavigation_test.go similarity index 92% rename from tsc/internal/fourslash/tests/contentMapperDeclarationMapNavigation_test.go rename to tsc/pkg/fourslash/tests/contentMapperDeclarationMapNavigation_test.go index 2f221b3a473f4..c37ac1db725b0 100644 --- a/tsc/internal/fourslash/tests/contentMapperDeclarationMapNavigation_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDeclarationMapNavigation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContentMapperDeclarationMapNavigation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDefinition_test.go b/tsc/pkg/fourslash/tests/contentMapperDefinition_test.go similarity index 89% rename from tsc/internal/fourslash/tests/contentMapperDefinition_test.go rename to tsc/pkg/fourslash/tests/contentMapperDefinition_test.go index 910c561091469..74fb9d1000e85 100644 --- a/tsc/internal/fourslash/tests/contentMapperDefinition_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDiagnostics_test.go b/tsc/pkg/fourslash/tests/contentMapperDiagnostics_test.go similarity index 89% rename from tsc/internal/fourslash/tests/contentMapperDiagnostics_test.go rename to tsc/pkg/fourslash/tests/contentMapperDiagnostics_test.go index 8dfc1b058f614..2ad5814bee836 100644 --- a/tsc/internal/fourslash/tests/contentMapperDiagnostics_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDiagnostics_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperDiagnostics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDocumentHighlights_test.go b/tsc/pkg/fourslash/tests/contentMapperDocumentHighlights_test.go similarity index 83% rename from tsc/internal/fourslash/tests/contentMapperDocumentHighlights_test.go rename to tsc/pkg/fourslash/tests/contentMapperDocumentHighlights_test.go index 0f940c8dc9c15..1421679e107bf 100644 --- a/tsc/internal/fourslash/tests/contentMapperDocumentHighlights_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDocumentHighlights_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperDocumentHighlights(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDocumentSymbols_test.go b/tsc/pkg/fourslash/tests/contentMapperDocumentSymbols_test.go similarity index 85% rename from tsc/internal/fourslash/tests/contentMapperDocumentSymbols_test.go rename to tsc/pkg/fourslash/tests/contentMapperDocumentSymbols_test.go index ae41b48e79544..4a2190fa26386 100644 --- a/tsc/internal/fourslash/tests/contentMapperDocumentSymbols_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDocumentSymbols_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperSynthesizedDocumentSymbols(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDuplicateMappings_test.go b/tsc/pkg/fourslash/tests/contentMapperDuplicateMappings_test.go similarity index 95% rename from tsc/internal/fourslash/tests/contentMapperDuplicateMappings_test.go rename to tsc/pkg/fourslash/tests/contentMapperDuplicateMappings_test.go index 4bd575384809b..f6548d35bc445 100644 --- a/tsc/internal/fourslash/tests/contentMapperDuplicateMappings_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDuplicateMappings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperDuplicateMappings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperDuplicateProjections_test.go b/tsc/pkg/fourslash/tests/contentMapperDuplicateProjections_test.go similarity index 88% rename from tsc/internal/fourslash/tests/contentMapperDuplicateProjections_test.go rename to tsc/pkg/fourslash/tests/contentMapperDuplicateProjections_test.go index ea1c5d14c0a2f..3d1273779eee9 100644 --- a/tsc/internal/fourslash/tests/contentMapperDuplicateProjections_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperDuplicateProjections_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) // A mapper may emit the same original text in more than one virtual output. Each output is a separate diff --git a/tsc/internal/fourslash/tests/contentMapperEditSafety_test.go b/tsc/pkg/fourslash/tests/contentMapperEditSafety_test.go similarity index 97% rename from tsc/internal/fourslash/tests/contentMapperEditSafety_test.go rename to tsc/pkg/fourslash/tests/contentMapperEditSafety_test.go index 3e2fc6e5da017..63846600ecab1 100644 --- a/tsc/internal/fourslash/tests/contentMapperEditSafety_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperEditSafety_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperAutoImportAfterSynthesizedSupplementalPrefix(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperHover_test.go b/tsc/pkg/fourslash/tests/contentMapperHover_test.go similarity index 94% rename from tsc/internal/fourslash/tests/contentMapperHover_test.go rename to tsc/pkg/fourslash/tests/contentMapperHover_test.go index 5747246771264..d0f9eec0b0948 100644 --- a/tsc/internal/fourslash/tests/contentMapperHover_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperHover_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperHover(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperImplementation_test.go b/tsc/pkg/fourslash/tests/contentMapperImplementation_test.go similarity index 88% rename from tsc/internal/fourslash/tests/contentMapperImplementation_test.go rename to tsc/pkg/fourslash/tests/contentMapperImplementation_test.go index 43838fd9f06de..04dbf9d173b89 100644 --- a/tsc/internal/fourslash/tests/contentMapperImplementation_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperImplementation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperImplementation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperRangeFeatures_test.go b/tsc/pkg/fourslash/tests/contentMapperRangeFeatures_test.go similarity index 83% rename from tsc/internal/fourslash/tests/contentMapperRangeFeatures_test.go rename to tsc/pkg/fourslash/tests/contentMapperRangeFeatures_test.go index 9c6137910468d..433141bd54a52 100644 --- a/tsc/internal/fourslash/tests/contentMapperRangeFeatures_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperRangeFeatures_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperRangeFeaturesIncludeScriptInsideMarkup(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperReferences_test.go b/tsc/pkg/fourslash/tests/contentMapperReferences_test.go similarity index 89% rename from tsc/internal/fourslash/tests/contentMapperReferences_test.go rename to tsc/pkg/fourslash/tests/contentMapperReferences_test.go index c81210b18211c..1d408450604d3 100644 --- a/tsc/internal/fourslash/tests/contentMapperReferences_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperRename_test.go b/tsc/pkg/fourslash/tests/contentMapperRename_test.go similarity index 95% rename from tsc/internal/fourslash/tests/contentMapperRename_test.go rename to tsc/pkg/fourslash/tests/contentMapperRename_test.go index 9539d9b82e4e6..e701319b5dee1 100644 --- a/tsc/internal/fourslash/tests/contentMapperRename_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperSignatureHelp_test.go b/tsc/pkg/fourslash/tests/contentMapperSignatureHelp_test.go similarity index 93% rename from tsc/internal/fourslash/tests/contentMapperSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/contentMapperSignatureHelp_test.go index 7964f68cf6f56..e57a5a78f4cf0 100644 --- a/tsc/internal/fourslash/tests/contentMapperSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperSignatureHelp_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperSupplementalDefinition_test.go b/tsc/pkg/fourslash/tests/contentMapperSupplementalDefinition_test.go similarity index 85% rename from tsc/internal/fourslash/tests/contentMapperSupplementalDefinition_test.go rename to tsc/pkg/fourslash/tests/contentMapperSupplementalDefinition_test.go index 00c4554e305f6..8aeb869ac92c9 100644 --- a/tsc/internal/fourslash/tests/contentMapperSupplementalDefinition_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperSupplementalDefinition_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperSupplementalDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapperTypeDefinition_test.go b/tsc/pkg/fourslash/tests/contentMapperTypeDefinition_test.go similarity index 88% rename from tsc/internal/fourslash/tests/contentMapperTypeDefinition_test.go rename to tsc/pkg/fourslash/tests/contentMapperTypeDefinition_test.go index 2415326529c8c..c1c8819be8a81 100644 --- a/tsc/internal/fourslash/tests/contentMapperTypeDefinition_test.go +++ b/tsc/pkg/fourslash/tests/contentMapperTypeDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func TestContentMapperTypeDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contentMapper_test.go b/tsc/pkg/fourslash/tests/contentMapper_test.go similarity index 87% rename from tsc/internal/fourslash/tests/contentMapper_test.go rename to tsc/pkg/fourslash/tests/contentMapper_test.go index 995746392af6d..47525bc1aa97e 100644 --- a/tsc/internal/fourslash/tests/contentMapper_test.go +++ b/tsc/pkg/fourslash/tests/contentMapper_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" ) func newContentMapperFourslash(t *testing.T, content, mapper string, extensions ...string) (*fourslash.FourslashTest, func()) { diff --git a/tsc/internal/fourslash/tests/contextualTypingFromTypeAssertion1_test.go b/tsc/pkg/fourslash/tests/contextualTypingFromTypeAssertion1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/contextualTypingFromTypeAssertion1_test.go rename to tsc/pkg/fourslash/tests/contextualTypingFromTypeAssertion1_test.go index 258927169bdcf..ce9a1d10f013e 100644 --- a/tsc/internal/fourslash/tests/contextualTypingFromTypeAssertion1_test.go +++ b/tsc/pkg/fourslash/tests/contextualTypingFromTypeAssertion1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextualTypingFromTypeAssertion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextualTypingGenericFunction1_test.go b/tsc/pkg/fourslash/tests/contextualTypingGenericFunction1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/contextualTypingGenericFunction1_test.go rename to tsc/pkg/fourslash/tests/contextualTypingGenericFunction1_test.go index d38b5a9fc8105..8b7cb79a26451 100644 --- a/tsc/internal/fourslash/tests/contextualTypingGenericFunction1_test.go +++ b/tsc/pkg/fourslash/tests/contextualTypingGenericFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextualTypingGenericFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go b/tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go rename to tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go index f228827cc4fbd..5cee799472000 100644 --- a/tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go +++ b/tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextualTypingOfGenericCallSignatures1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go b/tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go rename to tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go index 403c39e72348c..88b0adc5f3853 100644 --- a/tsc/internal/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go +++ b/tsc/pkg/fourslash/tests/contextualTypingOfGenericCallSignatures2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextualTypingOfGenericCallSignatures2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextualTypingReturnExpressions_test.go b/tsc/pkg/fourslash/tests/contextualTypingReturnExpressions_test.go similarity index 81% rename from tsc/internal/fourslash/tests/contextualTypingReturnExpressions_test.go rename to tsc/pkg/fourslash/tests/contextualTypingReturnExpressions_test.go index 5473712c7be2a..f9d82e0f83e92 100644 --- a/tsc/internal/fourslash/tests/contextualTypingReturnExpressions_test.go +++ b/tsc/pkg/fourslash/tests/contextualTypingReturnExpressions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextualTypingReturnExpressions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go b/tsc/pkg/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go rename to tsc/pkg/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go index d8287ffc692ae..e07d4ba7f01e2 100644 --- a/tsc/internal/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go +++ b/tsc/pkg/fourslash/tests/contextuallyTypedFunctionExpressionGeneric1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextuallyTypedFunctionExpressionGeneric1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go b/tsc/pkg/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go similarity index 87% rename from tsc/internal/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go rename to tsc/pkg/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go index 465d0339bc5a4..f9c27e0305e9a 100644 --- a/tsc/internal/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go +++ b/tsc/pkg/fourslash/tests/contextuallyTypedObjectLiteralMethodDeclarationParam01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextuallyTypedObjectLiteralMethodDeclarationParam01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/contextuallyTypedParameters_test.go b/tsc/pkg/fourslash/tests/contextuallyTypedParameters_test.go similarity index 94% rename from tsc/internal/fourslash/tests/contextuallyTypedParameters_test.go rename to tsc/pkg/fourslash/tests/contextuallyTypedParameters_test.go index 8ff5452b34456..b8f0647e7a002 100644 --- a/tsc/internal/fourslash/tests/contextuallyTypedParameters_test.go +++ b/tsc/pkg/fourslash/tests/contextuallyTypedParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestContextuallyTypedParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go b/tsc/pkg/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go similarity index 80% rename from tsc/internal/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go rename to tsc/pkg/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go index ece3183210ef6..6faabdd417dbc 100644 --- a/tsc/internal/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go +++ b/tsc/pkg/fourslash/tests/convertFunctionToEs6Class_noQuickInfoForIIFE_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestConvertFunctionToEs6Class_noQuickInfoForIIFE(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go b/tsc/pkg/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go similarity index 78% rename from tsc/internal/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go rename to tsc/pkg/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go index dcf5e740d93df..a56b9e216f515 100644 --- a/tsc/internal/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go +++ b/tsc/pkg/fourslash/tests/correuptedTryExpressionsDontCrashGettingOutlineSpans_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCorreuptedTryExpressionsDontCrashGettingOutlineSpans(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go b/tsc/pkg/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go rename to tsc/pkg/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go index 6e38d75a39567..5c2886607aa76 100644 --- a/tsc/internal/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go +++ b/tsc/pkg/fourslash/tests/crossFileQuickInfoExportedTypeDoesNotUseImportType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCrossFileQuickInfoExportedTypeDoesNotUseImportType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/declarationMapGoToDefinition_test.go b/tsc/pkg/fourslash/tests/declarationMapGoToDefinition_test.go similarity index 92% rename from tsc/internal/fourslash/tests/declarationMapGoToDefinition_test.go rename to tsc/pkg/fourslash/tests/declarationMapGoToDefinition_test.go index 5f43f954bd4cb..b5bab25313982 100644 --- a/tsc/internal/fourslash/tests/declarationMapGoToDefinition_test.go +++ b/tsc/pkg/fourslash/tests/declarationMapGoToDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclarationMapGoToDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go b/tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go similarity index 92% rename from tsc/internal/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go rename to tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go index f823eb7c889e1..c86ada5a35684 100644 --- a/tsc/internal/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go +++ b/tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionRelativeSourceRoot_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclarationMapsGoToDefinitionRelativeSourceRoot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go b/tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go similarity index 94% rename from tsc/internal/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go rename to tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go index a2df4bf862227..4aa1bbd593986 100644 --- a/tsc/internal/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go +++ b/tsc/pkg/fourslash/tests/declarationMapsGoToDefinitionSameNameDifferentDirectory_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclarationMapsGoToDefinitionSameNameDifferentDirectory(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/declarationMapsOutOfDateMapping_test.go b/tsc/pkg/fourslash/tests/declarationMapsOutOfDateMapping_test.go similarity index 90% rename from tsc/internal/fourslash/tests/declarationMapsOutOfDateMapping_test.go rename to tsc/pkg/fourslash/tests/declarationMapsOutOfDateMapping_test.go index 3666d31003cd6..65287a81f33ad 100644 --- a/tsc/internal/fourslash/tests/declarationMapsOutOfDateMapping_test.go +++ b/tsc/pkg/fourslash/tests/declarationMapsOutOfDateMapping_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclarationMapsOutOfDateMapping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/declareFunction_test.go b/tsc/pkg/fourslash/tests/declareFunction_test.go similarity index 73% rename from tsc/internal/fourslash/tests/declareFunction_test.go rename to tsc/pkg/fourslash/tests/declareFunction_test.go index 0297e83448f8b..0d74b5bcfb39f 100644 --- a/tsc/internal/fourslash/tests/declareFunction_test.go +++ b/tsc/pkg/fourslash/tests/declareFunction_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclareFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/decoratorOnPrivateMethod_test.go b/tsc/pkg/fourslash/tests/decoratorOnPrivateMethod_test.go similarity index 81% rename from tsc/internal/fourslash/tests/decoratorOnPrivateMethod_test.go rename to tsc/pkg/fourslash/tests/decoratorOnPrivateMethod_test.go index 69f3487256482..ac42eff825321 100644 --- a/tsc/internal/fourslash/tests/decoratorOnPrivateMethod_test.go +++ b/tsc/pkg/fourslash/tests/decoratorOnPrivateMethod_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDecoratorCompletionOnPrivateMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go b/tsc/pkg/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go similarity index 78% rename from tsc/internal/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go rename to tsc/pkg/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go index c3082cc154858..c7cfa95012f39 100644 --- a/tsc/internal/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go +++ b/tsc/pkg/fourslash/tests/deduplicateDuplicateMergedBindCheckErrors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeduplicateDuplicateMergedBindCheckErrors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/defaultParamsAndContextualTypes_test.go b/tsc/pkg/fourslash/tests/defaultParamsAndContextualTypes_test.go similarity index 85% rename from tsc/internal/fourslash/tests/defaultParamsAndContextualTypes_test.go rename to tsc/pkg/fourslash/tests/defaultParamsAndContextualTypes_test.go index 41db2f186de5d..2154c7c8b5951 100644 --- a/tsc/internal/fourslash/tests/defaultParamsAndContextualTypes_test.go +++ b/tsc/pkg/fourslash/tests/defaultParamsAndContextualTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDefaultParamsAndContextualTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/definition01_test.go b/tsc/pkg/fourslash/tests/definition01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/definition01_test.go rename to tsc/pkg/fourslash/tests/definition01_test.go index f2f1d200c37ec..4b07ff3da73e1 100644 --- a/tsc/internal/fourslash/tests/definition01_test.go +++ b/tsc/pkg/fourslash/tests/definition01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDefinition01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/definitionNameOnEnumMember_test.go b/tsc/pkg/fourslash/tests/definitionNameOnEnumMember_test.go similarity index 78% rename from tsc/internal/fourslash/tests/definitionNameOnEnumMember_test.go rename to tsc/pkg/fourslash/tests/definitionNameOnEnumMember_test.go index 99b332bd4a95f..5e726b873569d 100644 --- a/tsc/internal/fourslash/tests/definitionNameOnEnumMember_test.go +++ b/tsc/pkg/fourslash/tests/definitionNameOnEnumMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDefinitionNameOnEnumMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/definition_test.go b/tsc/pkg/fourslash/tests/definition_test.go similarity index 78% rename from tsc/internal/fourslash/tests/definition_test.go rename to tsc/pkg/fourslash/tests/definition_test.go index 4a85e349c056c..806decbccf16e 100644 --- a/tsc/internal/fourslash/tests/definition_test.go +++ b/tsc/pkg/fourslash/tests/definition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deleteClassWithEnumPresent_test.go b/tsc/pkg/fourslash/tests/deleteClassWithEnumPresent_test.go similarity index 77% rename from tsc/internal/fourslash/tests/deleteClassWithEnumPresent_test.go rename to tsc/pkg/fourslash/tests/deleteClassWithEnumPresent_test.go index 4c3064c928edc..415e3c2c2fe11 100644 --- a/tsc/internal/fourslash/tests/deleteClassWithEnumPresent_test.go +++ b/tsc/pkg/fourslash/tests/deleteClassWithEnumPresent_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeleteClassWithEnumPresent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deleteExtensionInReopenedInterface_test.go b/tsc/pkg/fourslash/tests/deleteExtensionInReopenedInterface_test.go similarity index 85% rename from tsc/internal/fourslash/tests/deleteExtensionInReopenedInterface_test.go rename to tsc/pkg/fourslash/tests/deleteExtensionInReopenedInterface_test.go index 8b1667ffedcfe..54c3752ac91b1 100644 --- a/tsc/internal/fourslash/tests/deleteExtensionInReopenedInterface_test.go +++ b/tsc/pkg/fourslash/tests/deleteExtensionInReopenedInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeleteExtensionInReopenedInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deleteModifierBeforeVarStatement1_test.go b/tsc/pkg/fourslash/tests/deleteModifierBeforeVarStatement1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/deleteModifierBeforeVarStatement1_test.go rename to tsc/pkg/fourslash/tests/deleteModifierBeforeVarStatement1_test.go index 5f62a62171084..1d615dc5760f8 100644 --- a/tsc/internal/fourslash/tests/deleteModifierBeforeVarStatement1_test.go +++ b/tsc/pkg/fourslash/tests/deleteModifierBeforeVarStatement1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeleteModifierBeforeVarStatement1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deleteTypeParameter_test.go b/tsc/pkg/fourslash/tests/deleteTypeParameter_test.go similarity index 80% rename from tsc/internal/fourslash/tests/deleteTypeParameter_test.go rename to tsc/pkg/fourslash/tests/deleteTypeParameter_test.go index f9df5f85e76c4..d44e80eb80433 100644 --- a/tsc/internal/fourslash/tests/deleteTypeParameter_test.go +++ b/tsc/pkg/fourslash/tests/deleteTypeParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeleteTypeParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deprecatedContextualPropertyOverload_test.go b/tsc/pkg/fourslash/tests/deprecatedContextualPropertyOverload_test.go similarity index 95% rename from tsc/internal/fourslash/tests/deprecatedContextualPropertyOverload_test.go rename to tsc/pkg/fourslash/tests/deprecatedContextualPropertyOverload_test.go index e8025393e06a0..c78d2ad4e08c3 100644 --- a/tsc/internal/fourslash/tests/deprecatedContextualPropertyOverload_test.go +++ b/tsc/pkg/fourslash/tests/deprecatedContextualPropertyOverload_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeprecatedContextualPropertyOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/deprecatedInheritedJSDocOverload_test.go b/tsc/pkg/fourslash/tests/deprecatedInheritedJSDocOverload_test.go similarity index 93% rename from tsc/internal/fourslash/tests/deprecatedInheritedJSDocOverload_test.go rename to tsc/pkg/fourslash/tests/deprecatedInheritedJSDocOverload_test.go index 056ed005250ba..9269ccae6343a 100644 --- a/tsc/internal/fourslash/tests/deprecatedInheritedJSDocOverload_test.go +++ b/tsc/pkg/fourslash/tests/deprecatedInheritedJSDocOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeprecatedInheritedJSDocOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go b/tsc/pkg/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go similarity index 89% rename from tsc/internal/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go rename to tsc/pkg/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go index d6f87cb9c71ca..c978dc6295f52 100644 --- a/tsc/internal/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go +++ b/tsc/pkg/fourslash/tests/derivedTypeIndexerWithGenericConstraints_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDerivedTypeIndexerWithGenericConstraints(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/destructuredInterfaceJSDoc_test.go b/tsc/pkg/fourslash/tests/destructuredInterfaceJSDoc_test.go similarity index 93% rename from tsc/internal/fourslash/tests/destructuredInterfaceJSDoc_test.go rename to tsc/pkg/fourslash/tests/destructuredInterfaceJSDoc_test.go index f5780efd2e7b9..0a922a48335d6 100644 --- a/tsc/internal/fourslash/tests/destructuredInterfaceJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/destructuredInterfaceJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDestructuredInterfaceJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/destructuredIntersectionJSDoc_test.go b/tsc/pkg/fourslash/tests/destructuredIntersectionJSDoc_test.go similarity index 87% rename from tsc/internal/fourslash/tests/destructuredIntersectionJSDoc_test.go rename to tsc/pkg/fourslash/tests/destructuredIntersectionJSDoc_test.go index e84f30f46ce89..d16a02790ebb2 100644 --- a/tsc/internal/fourslash/tests/destructuredIntersectionJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/destructuredIntersectionJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDestructuredIntersectionJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go b/tsc/pkg/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go rename to tsc/pkg/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go index 273d7f76aeae4..3223425372796 100644 --- a/tsc/internal/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go +++ b/tsc/pkg/fourslash/tests/diagnosticsDefaultImportMergedWithJSDocTypeAlias1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDiagnosticsDefaultImportMergedWithJSDocTypeAlias1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateClassDecl01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateClassDecl01_test.go similarity index 85% rename from tsc/internal/fourslash/tests/docCommentTemplateClassDecl01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateClassDecl01_test.go index 5258079690ac1..78a196f802aab 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateClassDecl01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateClassDecl01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateClassDecl01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go similarity index 90% rename from tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go index cd4997888cc0a..3cf6a58998284 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateClassDeclMethods01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go similarity index 86% rename from tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go index 96a3372da646e..b0ac1ee2f100b 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclMethods02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateClassDeclMethods02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go similarity index 88% rename from tsc/internal/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go index 2df7cb220cb2c..a946bcd39ace9 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateClassDeclProperty01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateClassDeclProperty01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateConstructor01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateConstructor01_test.go similarity index 88% rename from tsc/internal/fourslash/tests/docCommentTemplateConstructor01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateConstructor01_test.go index 7551751ee651a..cdfae3e5a4de0 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateConstructor01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateConstructor01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateConstructor01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateEmptyFile_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateEmptyFile_test.go similarity index 80% rename from tsc/internal/fourslash/tests/docCommentTemplateEmptyFile_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateEmptyFile_test.go index e9b45fe747a83..82fbc17720599 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateEmptyFile_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateEmptyFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateEmptyFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go index c79d49633d2c0..fb93392f3b69a 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateExportAssignmentJS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateExportAssignmentJS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateFunctionExpression_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionExpression_test.go similarity index 84% rename from tsc/internal/fourslash/tests/docCommentTemplateFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateFunctionExpression_test.go index 2966ca20907a6..2dbdab3b2bc0e 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go index 0c102a27744da..b1e7101bea053 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateFunctionWithParameters_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go similarity index 86% rename from tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go index c84bedcbde566..5bfb5d83a4b55 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateFunctionWithParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateFunctionWithParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateInMultiLineComment_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateInMultiLineComment_test.go similarity index 81% rename from tsc/internal/fourslash/tests/docCommentTemplateInMultiLineComment_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateInMultiLineComment_test.go index abf6d350a78d0..3c99126c9c52a 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateInMultiLineComment_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateInMultiLineComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateInMultiLineComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateInSingleLineComment_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateInSingleLineComment_test.go similarity index 86% rename from tsc/internal/fourslash/tests/docCommentTemplateInSingleLineComment_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateInSingleLineComment_test.go index de7f05d6eff3f..44c0fc254e582 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateInSingleLineComment_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateInSingleLineComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateInSingleLineComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateIndentation_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateIndentation_test.go similarity index 85% rename from tsc/internal/fourslash/tests/docCommentTemplateIndentation_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateIndentation_test.go index 0987975981d10..7603b7e46ac46 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateIndentation_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateIndentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateIndentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go index 7b040370a3f4c..b5a8c372121d0 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateInsideFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateInsideFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go index b349114803253..ded8f8a93cbd4 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateInterfacePropertyFunctionType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateInterfacePropertyFunctionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go similarity index 91% rename from tsc/internal/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go index 982e944b6313c..f08197e172631 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateInterfacesEnumsAndTypeAliases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateInterfacesEnumsAndTypeAliases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go similarity index 86% rename from tsc/internal/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go index 1c81d1b235335..b1071db6d9730 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateJsSpecialPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateJsSpecialPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go similarity index 86% rename from tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go index 17340afb59039..33c696fa19e10 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateNamespacesAndModules01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go index ad90cd2f498f6..e6640de5ebfc6 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateNamespacesAndModules02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateNamespacesAndModules02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go similarity index 89% rename from tsc/internal/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go index 1a6db5aa330ba..5c8aeef3159e3 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateObjectLiteralMethods01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateObjectLiteralMethods01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplatePrototypeMethod_test.go b/tsc/pkg/fourslash/tests/docCommentTemplatePrototypeMethod_test.go similarity index 85% rename from tsc/internal/fourslash/tests/docCommentTemplatePrototypeMethod_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplatePrototypeMethod_test.go index 80dc69d0b9511..fe2da61701a3e 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplatePrototypeMethod_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplatePrototypeMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplatePrototypeMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateRegex_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateRegex_test.go similarity index 82% rename from tsc/internal/fourslash/tests/docCommentTemplateRegex_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateRegex_test.go index 1ae078aa9894c..b6d340739fb30 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateRegex_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateRegex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateRegex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateReturnsTag1_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/docCommentTemplateReturnsTag1_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag1_test.go index 582a46f1692af..3a6c41d93e2c2 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateReturnsTag1_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateReturnsTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateReturnsTag2_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/docCommentTemplateReturnsTag2_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag2_test.go index 4a329e803271a..bb1f2d9ac453d 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateReturnsTag2_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateReturnsTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateReturnsTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements01_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements01_test.go similarity index 89% rename from tsc/internal/fourslash/tests/docCommentTemplateVariableStatements01_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements01_test.go index e63b3afe123f5..612e79fd9f9ee 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements01_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateVariableStatements01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements02_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements02_test.go similarity index 88% rename from tsc/internal/fourslash/tests/docCommentTemplateVariableStatements02_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements02_test.go index 9a7f635651497..67396289671e3 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements02_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateVariableStatements02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements03_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements03_test.go similarity index 91% rename from tsc/internal/fourslash/tests/docCommentTemplateVariableStatements03_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements03_test.go index 7403bc0a6e4ab..286a7c7b828e5 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateVariableStatements03_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateVariableStatements03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateVariableStatements03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go similarity index 82% rename from tsc/internal/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go index ee7e7b984d0b4..1f0fa7e4dec7e 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateWithExistingJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateWithExistingJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go index a792d2f2e167a..a29284517c965 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateWithMultipleJSDoc1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go index f2fa531eba16b..7703b8ac2a9e3 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateWithMultipleJSDoc2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go index b5044d024e1db..03c60b2401cab 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDoc3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateWithMultipleJSDoc3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go similarity index 83% rename from tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go index 7a6d3139f92bd..d79753fa1bf33 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplateWithMultipleJSDocAndParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplateWithMultipleJSDocAndParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go b/tsc/pkg/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go similarity index 84% rename from tsc/internal/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go rename to tsc/pkg/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go index f2711e7d63e32..f9fbdf7ce1e99 100644 --- a/tsc/internal/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go +++ b/tsc/pkg/fourslash/tests/docCommentTemplate_insideEmptyComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocCommentTemplate_insideEmptyComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties1_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties1_test.go similarity index 72% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties1_test.go index 9ea04279607f2..7257721cc2c54 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties2_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties2_test.go similarity index 71% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties2_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties2_test.go index 3235698baf5b3..8f32385f8f6d6 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties3_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties3_test.go similarity index 74% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties3_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties3_test.go index 8eae1227593d0..1047243cfac6a 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties3_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties4_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties4_test.go similarity index 73% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties4_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties4_test.go index 4e3c5a1407ee3..b3ac897540e72 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties4_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties5_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties5_test.go similarity index 75% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties5_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties5_test.go index 611a40e0df146..791384f4101c1 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties5_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties6_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties6_test.go similarity index 75% rename from tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties6_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties6_test.go index d925b49e5f527..eca82ac109cc8 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtInheritedProperties6_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtInheritedProperties6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtInheritedProperties6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go index ddf9ed65631bc..8f2a657519acb 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtParameterPropertyDeclaration1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go index b07365a417a4e..558f4e9691707 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtParameterPropertyDeclaration2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go rename to tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go index 06dfb9fe1cea9..64e47e5875822 100644 --- a/tsc/internal/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightAtParameterPropertyDeclaration3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightAtParameterPropertyDeclaration3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightDefaultInKeyword_test.go b/tsc/pkg/fourslash/tests/documentHighlightDefaultInKeyword_test.go similarity index 67% rename from tsc/internal/fourslash/tests/documentHighlightDefaultInKeyword_test.go rename to tsc/pkg/fourslash/tests/documentHighlightDefaultInKeyword_test.go index f20b7e7fe1d5f..48a77c59d94a3 100644 --- a/tsc/internal/fourslash/tests/documentHighlightDefaultInKeyword_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightDefaultInKeyword_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightDefaultInKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightDefaultInSwitch_test.go b/tsc/pkg/fourslash/tests/documentHighlightDefaultInSwitch_test.go similarity index 80% rename from tsc/internal/fourslash/tests/documentHighlightDefaultInSwitch_test.go rename to tsc/pkg/fourslash/tests/documentHighlightDefaultInSwitch_test.go index 5ab0d70c3fe62..7cb472472b159 100644 --- a/tsc/internal/fourslash/tests/documentHighlightDefaultInSwitch_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightDefaultInSwitch_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightDefaultInSwitch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightImportPath_test.go b/tsc/pkg/fourslash/tests/documentHighlightImportPath_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlightImportPath_test.go rename to tsc/pkg/fourslash/tests/documentHighlightImportPath_test.go index 3bfa75b372962..d77cd88b48fdf 100644 --- a/tsc/internal/fourslash/tests/documentHighlightImportPath_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightImportPath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightImportPath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightInExport1_test.go b/tsc/pkg/fourslash/tests/documentHighlightInExport1_test.go similarity index 68% rename from tsc/internal/fourslash/tests/documentHighlightInExport1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightInExport1_test.go index 12a2b666e5b7e..15c7df315c644 100644 --- a/tsc/internal/fourslash/tests/documentHighlightInExport1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightInExport1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightInExport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightInKeyword_test.go b/tsc/pkg/fourslash/tests/documentHighlightInKeyword_test.go similarity index 71% rename from tsc/internal/fourslash/tests/documentHighlightInKeyword_test.go rename to tsc/pkg/fourslash/tests/documentHighlightInKeyword_test.go index 84477bfc52ceb..85e321eddb0a2 100644 --- a/tsc/internal/fourslash/tests/documentHighlightInKeyword_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightInKeyword_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightInKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightInTypeExport_test.go b/tsc/pkg/fourslash/tests/documentHighlightInTypeExport_test.go similarity index 76% rename from tsc/internal/fourslash/tests/documentHighlightInTypeExport_test.go rename to tsc/pkg/fourslash/tests/documentHighlightInTypeExport_test.go index bde3903fc549b..3e865f09676f5 100644 --- a/tsc/internal/fourslash/tests/documentHighlightInTypeExport_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightInTypeExport_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightInTypeExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go b/tsc/pkg/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go index b248842da2005..bd02ae5bfa62e 100644 --- a/tsc/internal/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightJSDocThisFunctionExpressionNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightJSDocThisFunctionExpressionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightJSDocTypedef_test.go b/tsc/pkg/fourslash/tests/documentHighlightJSDocTypedef_test.go similarity index 75% rename from tsc/internal/fourslash/tests/documentHighlightJSDocTypedef_test.go rename to tsc/pkg/fourslash/tests/documentHighlightJSDocTypedef_test.go index fad2f3b9bcf67..869cc58534adb 100644 --- a/tsc/internal/fourslash/tests/documentHighlightJSDocTypedef_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightJSDocTypedef_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightJSDocTypedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go b/tsc/pkg/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go similarity index 80% rename from tsc/internal/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go rename to tsc/pkg/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go index 10219820559ee..0d49fd09873f2 100644 --- a/tsc/internal/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightMalformedAmbientModuleExportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightMalformedAmbientModuleExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go b/tsc/pkg/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go similarity index 78% rename from tsc/internal/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go rename to tsc/pkg/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go index 9984fb770b31c..26cb27fba4456 100644 --- a/tsc/internal/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightMultilineTemplateStrings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightMultilineTemplateStrings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go b/tsc/pkg/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go rename to tsc/pkg/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go index dd00d5514a5cc..3989617c131fc 100644 --- a/tsc/internal/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightNoCrashNestedRequireDestructure_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightNestedRequireDestructureNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightReferenceDirective_test.go b/tsc/pkg/fourslash/tests/documentHighlightReferenceDirective_test.go similarity index 80% rename from tsc/internal/fourslash/tests/documentHighlightReferenceDirective_test.go rename to tsc/pkg/fourslash/tests/documentHighlightReferenceDirective_test.go index 9b7a7597178a5..c4aa0146a3334 100644 --- a/tsc/internal/fourslash/tests/documentHighlightReferenceDirective_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightReferenceDirective_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightReferenceDirective(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go b/tsc/pkg/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go index b55747b25c9da..2f63abf48f79c 100644 --- a/tsc/internal/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightRequirePropertyDestructure1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightRequirePropertyDestructure1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightTemplateStrings_test.go b/tsc/pkg/fourslash/tests/documentHighlightTemplateStrings_test.go similarity index 84% rename from tsc/internal/fourslash/tests/documentHighlightTemplateStrings_test.go rename to tsc/pkg/fourslash/tests/documentHighlightTemplateStrings_test.go index 59fda2f1cbd1f..28b4e2c1f0e3f 100644 --- a/tsc/internal/fourslash/tests/documentHighlightTemplateStrings_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightTemplateStrings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightTemplateStrings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go b/tsc/pkg/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go rename to tsc/pkg/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go index 3e240f08c9c56..df6919a5b9da8 100644 --- a/tsc/internal/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightTypeParameterConstraintExpressionNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightTypeParameterConstraintExpressionNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightTypeofThis_test.go b/tsc/pkg/fourslash/tests/documentHighlightTypeofThis_test.go similarity index 78% rename from tsc/internal/fourslash/tests/documentHighlightTypeofThis_test.go rename to tsc/pkg/fourslash/tests/documentHighlightTypeofThis_test.go index 24cc8f80f5d87..0d9e145668a82 100644 --- a/tsc/internal/fourslash/tests/documentHighlightTypeofThis_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightTypeofThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightTypeofThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightVarianceModifiers_test.go b/tsc/pkg/fourslash/tests/documentHighlightVarianceModifiers_test.go similarity index 70% rename from tsc/internal/fourslash/tests/documentHighlightVarianceModifiers_test.go rename to tsc/pkg/fourslash/tests/documentHighlightVarianceModifiers_test.go index d01adebd6626e..9f78cc31c24d0 100644 --- a/tsc/internal/fourslash/tests/documentHighlightVarianceModifiers_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightVarianceModifiers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightVarianceModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightYield_test.go b/tsc/pkg/fourslash/tests/documentHighlightYield_test.go similarity index 80% rename from tsc/internal/fourslash/tests/documentHighlightYield_test.go rename to tsc/pkg/fourslash/tests/documentHighlightYield_test.go index c3ba18d28cbc1..3ce6c6dc84a58 100644 --- a/tsc/internal/fourslash/tests/documentHighlightYield_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightYield_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightYield(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights01_test.go b/tsc/pkg/fourslash/tests/documentHighlights01_test.go similarity index 71% rename from tsc/internal/fourslash/tests/documentHighlights01_test.go rename to tsc/pkg/fourslash/tests/documentHighlights01_test.go index a5bb89d8dda9b..aa3c2db2be0f7 100644 --- a/tsc/internal/fourslash/tests/documentHighlights01_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights02_test.go b/tsc/pkg/fourslash/tests/documentHighlights02_test.go similarity index 76% rename from tsc/internal/fourslash/tests/documentHighlights02_test.go rename to tsc/pkg/fourslash/tests/documentHighlights02_test.go index 489f2e7c2066f..719d680daa84d 100644 --- a/tsc/internal/fourslash/tests/documentHighlights02_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go b/tsc/pkg/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go rename to tsc/pkg/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go index 8fc34ff8bd759..684a738a3dd92 100644 --- a/tsc/internal/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightsExportEqualsInMergedNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightsExportEqualsInMergedNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go b/tsc/pkg/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go similarity index 69% rename from tsc/internal/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go rename to tsc/pkg/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go index 7ae46232903c6..6a3f45ef8932f 100644 --- a/tsc/internal/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightsInvalidGlobalThis_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightsInvalidGlobalThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go b/tsc/pkg/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go similarity index 73% rename from tsc/internal/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go rename to tsc/pkg/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go index 8c25d90c4e578..f66e0bf067233 100644 --- a/tsc/internal/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightsInvalidModifierLocations_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightsInvalidModifierLocations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go b/tsc/pkg/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go similarity index 71% rename from tsc/internal/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go rename to tsc/pkg/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go index 6a41e71a9428e..84e220bd5348c 100644 --- a/tsc/internal/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlightsTypeParameterInHeritageClause01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlightsTypeParameterInHeritageClause01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_33722_test.go b/tsc/pkg/fourslash/tests/documentHighlights_33722_test.go similarity index 82% rename from tsc/internal/fourslash/tests/documentHighlights_33722_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_33722_test.go index 917253afd615e..0ba7033b04b09 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_33722_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_33722_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_33722(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_40082_test.go b/tsc/pkg/fourslash/tests/documentHighlights_40082_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlights_40082_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_40082_test.go index d35e0ee72f9b2..9237460d430e0 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_40082_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_40082_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_40082(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_filesToSearch_test.go b/tsc/pkg/fourslash/tests/documentHighlights_filesToSearch_test.go similarity index 71% rename from tsc/internal/fourslash/tests/documentHighlights_filesToSearch_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_filesToSearch_test.go index 2260b6e24c5f0..fb973a5d8eefc 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_filesToSearch_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_filesToSearch_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_filesToSearch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go b/tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go similarity index 78% rename from tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go index 2fd9f1060da74..2a1e48f9390bb 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearchWithInvalidFile_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_moduleImport_filesToSearchWithInvalidFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go b/tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go similarity index 77% rename from tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go index 227d8f764389d..72c08796d9c1e 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_moduleImport_filesToSearch_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_moduleImport_filesToSearch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentHighlights_windowsPath_test.go b/tsc/pkg/fourslash/tests/documentHighlights_windowsPath_test.go similarity index 79% rename from tsc/internal/fourslash/tests/documentHighlights_windowsPath_test.go rename to tsc/pkg/fourslash/tests/documentHighlights_windowsPath_test.go index f5951611fa531..b7c4a72992222 100644 --- a/tsc/internal/fourslash/tests/documentHighlights_windowsPath_test.go +++ b/tsc/pkg/fourslash/tests/documentHighlights_windowsPath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentHighlights_windowsPath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/documentSymbolPrivateName_test.go b/tsc/pkg/fourslash/tests/documentSymbolPrivateName_test.go similarity index 84% rename from tsc/internal/fourslash/tests/documentSymbolPrivateName_test.go rename to tsc/pkg/fourslash/tests/documentSymbolPrivateName_test.go index 3285dbcb214fe..88192e6d2e5b3 100644 --- a/tsc/internal/fourslash/tests/documentSymbolPrivateName_test.go +++ b/tsc/pkg/fourslash/tests/documentSymbolPrivateName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDocumentSymbolPrivateName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/doubleUnderscoreCompletions_test.go b/tsc/pkg/fourslash/tests/doubleUnderscoreCompletions_test.go similarity index 79% rename from tsc/internal/fourslash/tests/doubleUnderscoreCompletions_test.go rename to tsc/pkg/fourslash/tests/doubleUnderscoreCompletions_test.go index 9a0e8611c9ee5..f1e967b99ee6f 100644 --- a/tsc/internal/fourslash/tests/doubleUnderscoreCompletions_test.go +++ b/tsc/pkg/fourslash/tests/doubleUnderscoreCompletions_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDoubleUnderscoreCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/doubleUnderscoreRenames_test.go b/tsc/pkg/fourslash/tests/doubleUnderscoreRenames_test.go similarity index 82% rename from tsc/internal/fourslash/tests/doubleUnderscoreRenames_test.go rename to tsc/pkg/fourslash/tests/doubleUnderscoreRenames_test.go index 470bb04ca358f..132ce763fe268 100644 --- a/tsc/internal/fourslash/tests/doubleUnderscoreRenames_test.go +++ b/tsc/pkg/fourslash/tests/doubleUnderscoreRenames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDoubleUnderscoreRenames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/duplicateFunctionImplementation_test.go b/tsc/pkg/fourslash/tests/duplicateFunctionImplementation_test.go similarity index 80% rename from tsc/internal/fourslash/tests/duplicateFunctionImplementation_test.go rename to tsc/pkg/fourslash/tests/duplicateFunctionImplementation_test.go index 1a1c4b2c0b869..a786dcf15a3dd 100644 --- a/tsc/internal/fourslash/tests/duplicateFunctionImplementation_test.go +++ b/tsc/pkg/fourslash/tests/duplicateFunctionImplementation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDuplicateFunctionImplementation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/duplicateIndexers_test.go b/tsc/pkg/fourslash/tests/duplicateIndexers_test.go similarity index 78% rename from tsc/internal/fourslash/tests/duplicateIndexers_test.go rename to tsc/pkg/fourslash/tests/duplicateIndexers_test.go index 247a70883e9a1..2c835f7ee7db7 100644 --- a/tsc/internal/fourslash/tests/duplicateIndexers_test.go +++ b/tsc/pkg/fourslash/tests/duplicateIndexers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDuplicateIndexers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/duplicatePackageServices_fileChanges_test.go b/tsc/pkg/fourslash/tests/duplicatePackageServices_fileChanges_test.go similarity index 94% rename from tsc/internal/fourslash/tests/duplicatePackageServices_fileChanges_test.go rename to tsc/pkg/fourslash/tests/duplicatePackageServices_fileChanges_test.go index 48cc1f0c04a72..96b66003f7890 100644 --- a/tsc/internal/fourslash/tests/duplicatePackageServices_fileChanges_test.go +++ b/tsc/pkg/fourslash/tests/duplicatePackageServices_fileChanges_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDuplicatePackageServices_fileChanges(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/duplicatePackageServices_test.go b/tsc/pkg/fourslash/tests/duplicatePackageServices_test.go similarity index 91% rename from tsc/internal/fourslash/tests/duplicatePackageServices_test.go rename to tsc/pkg/fourslash/tests/duplicatePackageServices_test.go index 3445ee883389e..f9c79dfd43e53 100644 --- a/tsc/internal/fourslash/tests/duplicatePackageServices_test.go +++ b/tsc/pkg/fourslash/tests/duplicatePackageServices_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDuplicatePackageServices(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/duplicateTypeParameters_test.go b/tsc/pkg/fourslash/tests/duplicateTypeParameters_test.go similarity index 75% rename from tsc/internal/fourslash/tests/duplicateTypeParameters_test.go rename to tsc/pkg/fourslash/tests/duplicateTypeParameters_test.go index 21b0995207a8d..d93a91a38a6f7 100644 --- a/tsc/internal/fourslash/tests/duplicateTypeParameters_test.go +++ b/tsc/pkg/fourslash/tests/duplicateTypeParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDuplicateTypeParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/editJsdocType_test.go b/tsc/pkg/fourslash/tests/editJsdocType_test.go similarity index 81% rename from tsc/internal/fourslash/tests/editJsdocType_test.go rename to tsc/pkg/fourslash/tests/editJsdocType_test.go index d9711184b57e5..c524d9f9059ed 100644 --- a/tsc/internal/fourslash/tests/editJsdocType_test.go +++ b/tsc/pkg/fourslash/tests/editJsdocType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEditJsdocType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/editLambdaArgToTypeParameter1_test.go b/tsc/pkg/fourslash/tests/editLambdaArgToTypeParameter1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/editLambdaArgToTypeParameter1_test.go rename to tsc/pkg/fourslash/tests/editLambdaArgToTypeParameter1_test.go index eb7bef57febe9..07a997e980c14 100644 --- a/tsc/internal/fourslash/tests/editLambdaArgToTypeParameter1_test.go +++ b/tsc/pkg/fourslash/tests/editLambdaArgToTypeParameter1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEditLambdaArgToTypeParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/editTemplateConstraint_test.go b/tsc/pkg/fourslash/tests/editTemplateConstraint_test.go similarity index 76% rename from tsc/internal/fourslash/tests/editTemplateConstraint_test.go rename to tsc/pkg/fourslash/tests/editTemplateConstraint_test.go index 9f480f7fca3a3..ccd5cacda35cd 100644 --- a/tsc/internal/fourslash/tests/editTemplateConstraint_test.go +++ b/tsc/pkg/fourslash/tests/editTemplateConstraint_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEditTemplateConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/emptyArrayInference_test.go b/tsc/pkg/fourslash/tests/emptyArrayInference_test.go similarity index 80% rename from tsc/internal/fourslash/tests/emptyArrayInference_test.go rename to tsc/pkg/fourslash/tests/emptyArrayInference_test.go index 05ab7dbda5297..4d1fc2fc2cd1d 100644 --- a/tsc/internal/fourslash/tests/emptyArrayInference_test.go +++ b/tsc/pkg/fourslash/tests/emptyArrayInference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEmptyArrayInference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/emptyExportFindReferences_test.go b/tsc/pkg/fourslash/tests/emptyExportFindReferences_test.go similarity index 78% rename from tsc/internal/fourslash/tests/emptyExportFindReferences_test.go rename to tsc/pkg/fourslash/tests/emptyExportFindReferences_test.go index 9a006ddd21774..835b944d7a3ca 100644 --- a/tsc/internal/fourslash/tests/emptyExportFindReferences_test.go +++ b/tsc/pkg/fourslash/tests/emptyExportFindReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEmptyExportFindReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/enumAddition_test.go b/tsc/pkg/fourslash/tests/enumAddition_test.go similarity index 77% rename from tsc/internal/fourslash/tests/enumAddition_test.go rename to tsc/pkg/fourslash/tests/enumAddition_test.go index dd4c8239bbb53..2612e46c81599 100644 --- a/tsc/internal/fourslash/tests/enumAddition_test.go +++ b/tsc/pkg/fourslash/tests/enumAddition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEnumAddition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/enumUpdate1_test.go b/tsc/pkg/fourslash/tests/enumUpdate1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/enumUpdate1_test.go rename to tsc/pkg/fourslash/tests/enumUpdate1_test.go index 23df8d219955a..710b61e3cf662 100644 --- a/tsc/internal/fourslash/tests/enumUpdate1_test.go +++ b/tsc/pkg/fourslash/tests/enumUpdate1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEnumUpdate1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/errorConsistency_test.go b/tsc/pkg/fourslash/tests/errorConsistency_test.go similarity index 83% rename from tsc/internal/fourslash/tests/errorConsistency_test.go rename to tsc/pkg/fourslash/tests/errorConsistency_test.go index 8f89f57ec6cf5..3bc40ebe59974 100644 --- a/tsc/internal/fourslash/tests/errorConsistency_test.go +++ b/tsc/pkg/fourslash/tests/errorConsistency_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestErrorConsistency(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go similarity index 76% rename from tsc/internal/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go index 99bcd1c50e59f..1a4f68eec20b9 100644 --- a/tsc/internal/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/errorInIncompleteMethodInObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestErrorInIncompleteMethodInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go b/tsc/pkg/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go similarity index 84% rename from tsc/internal/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go rename to tsc/pkg/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go index 17e3a6333337e..7bc54cd96d830 100644 --- a/tsc/internal/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go +++ b/tsc/pkg/fourslash/tests/errorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestErrorsAfterResolvingVariableDeclOfMergedVariableAndClassDecl(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/esModuleInteropFindAllReferences2_test.go b/tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/esModuleInteropFindAllReferences2_test.go rename to tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences2_test.go index e06fe40049338..e2e711ac284c6 100644 --- a/tsc/internal/fourslash/tests/esModuleInteropFindAllReferences2_test.go +++ b/tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEsModuleInteropFindAllReferences2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/esModuleInteropFindAllReferences_test.go b/tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences_test.go similarity index 81% rename from tsc/internal/fourslash/tests/esModuleInteropFindAllReferences_test.go rename to tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences_test.go index bd1d0360ee84e..eb6b198b53cfd 100644 --- a/tsc/internal/fourslash/tests/esModuleInteropFindAllReferences_test.go +++ b/tsc/pkg/fourslash/tests/esModuleInteropFindAllReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestEsModuleInteropFindAllReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go b/tsc/pkg/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go similarity index 99% rename from tsc/internal/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go rename to tsc/pkg/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go index a401449234522..3642aedbf6e5f 100644 --- a/tsc/internal/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go +++ b/tsc/pkg/fourslash/tests/excessivelyLargeArrayLiteralCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExcessivelyLargeArrayLiteralCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions10_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions10_test.go similarity index 76% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions10_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions10_test.go index 131ae26a9d636..97fd6ff5aa267 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions10_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions10_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions11_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions11_test.go similarity index 78% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions11_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions11_test.go index 681c85c4727ab..743ee1e776dde 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions11_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions11_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions1_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions1_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions1_test.go index 17245f7e24553..ee3cfe520690d 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions1_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions2_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions2_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions2_test.go index 78448a4b69994..3ab169f6a0430 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions2_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions3_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions3_test.go similarity index 93% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions3_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions3_test.go index e85e70d74e2ed..fd7c0f32ec27a 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions3_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Where exhaustive case completions are available. diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions4_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions4_test.go similarity index 94% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions4_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions4_test.go index 111503d73b8c1..4684e5917af5d 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions4_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Filter existing values. diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions5_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions5_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions5_test.go index 546cc086f1f60..ae90c47f6c872 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions5_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions6_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions6_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions6_test.go index fb09760f01705..bc1448ef4f85f 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions6_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions6_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions7_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions7_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions7_test.go index 225a6872eece3..d8dd2e9d58159 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions7_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions8_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions8_test.go similarity index 79% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletions8_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletions8_test.go index c17d1684592f9..8fc430ec4071f 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletions8_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletions8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExhaustiveCaseCompletions8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go similarity index 95% rename from tsc/internal/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go rename to tsc/pkg/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go index 86be5c36d976e..6c9590d516d5e 100644 --- a/tsc/internal/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go +++ b/tsc/pkg/fourslash/tests/exhaustiveCaseCompletionsUntitled_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test exhaustive case completions for locally defined enum in untitled file. diff --git a/tsc/internal/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go b/tsc/pkg/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go similarity index 92% rename from tsc/internal/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go rename to tsc/pkg/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go index 8a35ca239c93a..88283e6b34745 100644 --- a/tsc/internal/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go +++ b/tsc/pkg/fourslash/tests/explainFilesNodeNextWithTypesReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExplainFilesNodeNextWithTypesReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportAssignmentMissingName_test.go b/tsc/pkg/fourslash/tests/exportAssignmentMissingName_test.go similarity index 82% rename from tsc/internal/fourslash/tests/exportAssignmentMissingName_test.go rename to tsc/pkg/fourslash/tests/exportAssignmentMissingName_test.go index 69af9dce034a4..0726cafd51d3a 100644 --- a/tsc/internal/fourslash/tests/exportAssignmentMissingName_test.go +++ b/tsc/pkg/fourslash/tests/exportAssignmentMissingName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportAssignmentMissingName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportDefaultClass_test.go b/tsc/pkg/fourslash/tests/exportDefaultClass_test.go similarity index 77% rename from tsc/internal/fourslash/tests/exportDefaultClass_test.go rename to tsc/pkg/fourslash/tests/exportDefaultClass_test.go index 4ffa28693d20a..da5cfdf5f7274 100644 --- a/tsc/internal/fourslash/tests/exportDefaultClass_test.go +++ b/tsc/pkg/fourslash/tests/exportDefaultClass_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportDefaultClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportDefaultFunction_test.go b/tsc/pkg/fourslash/tests/exportDefaultFunction_test.go similarity index 77% rename from tsc/internal/fourslash/tests/exportDefaultFunction_test.go rename to tsc/pkg/fourslash/tests/exportDefaultFunction_test.go index 8cb9537f099d4..1d52e2d5eba97 100644 --- a/tsc/internal/fourslash/tests/exportDefaultFunction_test.go +++ b/tsc/pkg/fourslash/tests/exportDefaultFunction_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportDefaultFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportEqualCallableInterface_test.go b/tsc/pkg/fourslash/tests/exportEqualCallableInterface_test.go similarity index 84% rename from tsc/internal/fourslash/tests/exportEqualCallableInterface_test.go rename to tsc/pkg/fourslash/tests/exportEqualCallableInterface_test.go index 82b63f56c4653..03f5d22d29dc3 100644 --- a/tsc/internal/fourslash/tests/exportEqualCallableInterface_test.go +++ b/tsc/pkg/fourslash/tests/exportEqualCallableInterface_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportEqualCallableInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go b/tsc/pkg/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go similarity index 85% rename from tsc/internal/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go rename to tsc/pkg/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go index 08e65e936cc53..fc8555be9b79e 100644 --- a/tsc/internal/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go +++ b/tsc/pkg/fourslash/tests/exportEqualNamespaceClassESModuleInterop_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportEqualNamespaceClassESModuleInterop(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportEqualTypes_test.go b/tsc/pkg/fourslash/tests/exportEqualTypes_test.go similarity index 88% rename from tsc/internal/fourslash/tests/exportEqualTypes_test.go rename to tsc/pkg/fourslash/tests/exportEqualTypes_test.go index 9a45274576976..50a52d39697cc 100644 --- a/tsc/internal/fourslash/tests/exportEqualTypes_test.go +++ b/tsc/pkg/fourslash/tests/exportEqualTypes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportEqualTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportEqualsInterfaceA_test.go b/tsc/pkg/fourslash/tests/exportEqualsInterfaceA_test.go similarity index 80% rename from tsc/internal/fourslash/tests/exportEqualsInterfaceA_test.go rename to tsc/pkg/fourslash/tests/exportEqualsInterfaceA_test.go index afc7e510d9738..68ab18962a259 100644 --- a/tsc/internal/fourslash/tests/exportEqualsInterfaceA_test.go +++ b/tsc/pkg/fourslash/tests/exportEqualsInterfaceA_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportEqualsInterfaceA(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportInLabeledStatement_test.go b/tsc/pkg/fourslash/tests/exportInLabeledStatement_test.go similarity index 79% rename from tsc/internal/fourslash/tests/exportInLabeledStatement_test.go rename to tsc/pkg/fourslash/tests/exportInLabeledStatement_test.go index 9cc3a991e4d35..6f4e019cbf698 100644 --- a/tsc/internal/fourslash/tests/exportInLabeledStatement_test.go +++ b/tsc/pkg/fourslash/tests/exportInLabeledStatement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportInLabeledStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/exportInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/exportInObjectLiteral_test.go similarity index 79% rename from tsc/internal/fourslash/tests/exportInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/exportInObjectLiteral_test.go index 134f0ce0fc313..5ff89684278cf 100644 --- a/tsc/internal/fourslash/tests/exportInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/exportInObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExportInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/extendInterfaceOverloadedMethod_test.go b/tsc/pkg/fourslash/tests/extendInterfaceOverloadedMethod_test.go similarity index 83% rename from tsc/internal/fourslash/tests/extendInterfaceOverloadedMethod_test.go rename to tsc/pkg/fourslash/tests/extendInterfaceOverloadedMethod_test.go index a7027f74a3593..93e1b67d0d66d 100644 --- a/tsc/internal/fourslash/tests/extendInterfaceOverloadedMethod_test.go +++ b/tsc/pkg/fourslash/tests/extendInterfaceOverloadedMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExtendInterfaceOverloadedMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/extendsKeywordCompletion1_test.go b/tsc/pkg/fourslash/tests/extendsKeywordCompletion1_test.go similarity index 72% rename from tsc/internal/fourslash/tests/extendsKeywordCompletion1_test.go rename to tsc/pkg/fourslash/tests/extendsKeywordCompletion1_test.go index c9641e737aaf3..9678c9b486222 100644 --- a/tsc/internal/fourslash/tests/extendsKeywordCompletion1_test.go +++ b/tsc/pkg/fourslash/tests/extendsKeywordCompletion1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExtendsKeywordCompletion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/extendsKeywordCompletion2_test.go b/tsc/pkg/fourslash/tests/extendsKeywordCompletion2_test.go similarity index 73% rename from tsc/internal/fourslash/tests/extendsKeywordCompletion2_test.go rename to tsc/pkg/fourslash/tests/extendsKeywordCompletion2_test.go index 2bd025ccf9792..74537a8292344 100644 --- a/tsc/internal/fourslash/tests/extendsKeywordCompletion2_test.go +++ b/tsc/pkg/fourslash/tests/extendsKeywordCompletion2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExtendsKeywordCompletion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/extendsTArray_test.go b/tsc/pkg/fourslash/tests/extendsTArray_test.go similarity index 81% rename from tsc/internal/fourslash/tests/extendsTArray_test.go rename to tsc/pkg/fourslash/tests/extendsTArray_test.go index 6919316462081..9e00ffa51fb50 100644 --- a/tsc/internal/fourslash/tests/extendsTArray_test.go +++ b/tsc/pkg/fourslash/tests/extendsTArray_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExtendsTArray(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/externalModuleIntellisense_test.go b/tsc/pkg/fourslash/tests/externalModuleIntellisense_test.go similarity index 87% rename from tsc/internal/fourslash/tests/externalModuleIntellisense_test.go rename to tsc/pkg/fourslash/tests/externalModuleIntellisense_test.go index d5221ef219a0a..5900952888d4e 100644 --- a/tsc/internal/fourslash/tests/externalModuleIntellisense_test.go +++ b/tsc/pkg/fourslash/tests/externalModuleIntellisense_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestExternalModuleIntellisense(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/failureToImplementClass_test.go b/tsc/pkg/fourslash/tests/failureToImplementClass_test.go similarity index 81% rename from tsc/internal/fourslash/tests/failureToImplementClass_test.go rename to tsc/pkg/fourslash/tests/failureToImplementClass_test.go index 89fd289862fa4..afceb4e2a8de3 100644 --- a/tsc/internal/fourslash/tests/failureToImplementClass_test.go +++ b/tsc/pkg/fourslash/tests/failureToImplementClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFailureToImplementClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go b/tsc/pkg/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go rename to tsc/pkg/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go index 5cdf9848ab67c..daa4d5d65b368 100644 --- a/tsc/internal/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferPropertyAccessExpressionHeritageClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferPropertyAccessExpressionHeritageClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport1_test.go b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllReferencesDynamicImport1_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesDynamicImport1_test.go index 251b795294c88..6651ace46d476 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport1_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesDynamicImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport2_test.go b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllReferencesDynamicImport2_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesDynamicImport2_test.go index 19aeb93bb5b14..77330394c1efd 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport2_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesDynamicImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport3_test.go b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllReferencesDynamicImport3_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesDynamicImport3_test.go index 347e59f4ae883..a883d5eb9166e 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesDynamicImport3_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesDynamicImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesDynamicImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go index 2de082b97f890..e7686a5ae298b 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFilteringMappedTypeProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFilteringMappedTypeProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go index fc776e957caf4..d4fefebbc86e1 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFromLinkTagReference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go index 6f96ef9022e1c..afc97635f0306 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFromLinkTagReference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go index d7980cbfb6a7f..48e56baef0995 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFromLinkTagReference3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go index f07f109070668..89aa63406da98 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFromLinkTagReference4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go index 25c129a2b6cc6..35f3acc6c69da 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesFromLinkTagReference5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesFromLinkTagReference5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesImportMeta_test.go b/tsc/pkg/fourslash/tests/findAllReferencesImportMeta_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllReferencesImportMeta_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesImportMeta_test.go index 279e4259f7bce..53c12f2d1b75d 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesImportMeta_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesImportMeta_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesImportMeta(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go index 1f668a05745a2..63a9098f1dbaf 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionNew_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJSDocFunctionNew(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go index e77a59a7b8c24..43e7ee3f1c4b5 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJSDocFunctionThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJSDocFunctionThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go similarity index 86% rename from tsc/internal/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go index 42ec1e4ab58d0..b0d2ed00de9f5 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJsDocTypeLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJsDocTypeLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go index 2a0c589de1cf9..cc5500e4ec876 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJsOverloadedFunctionParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJsOverloadedFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go index 324cb7308d6af..b97bd16afe887 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJsRequireDestructuring1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go b/tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go index 0492bd333373d..db8514795e231 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesJsRequireDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesJsRequireDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesLinkTag1_test.go b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/findAllReferencesLinkTag1_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesLinkTag1_test.go index ab7cbb1224e0d..7478c3538fe5d 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesLinkTag1_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesLinkTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesLinkTag2_test.go b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/findAllReferencesLinkTag2_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesLinkTag2_test.go index 41fb2a704a887..086db0f5a650f 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesLinkTag2_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesLinkTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesLinkTag3_test.go b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/findAllReferencesLinkTag3_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesLinkTag3_test.go index d206e59e616cf..917f8f8f55ce2 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesLinkTag3_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesLinkTag3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesLinkTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go b/tsc/pkg/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go index e3d7307027bd2..3a0d4d3469ff0 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesNonExistentExportBinding_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesNonExistentExportBinding(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go b/tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go index 7c67da23e2274..878d35cd8aa03 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_badOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesOfConstructor_badOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesOfConstructor_test.go b/tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findAllReferencesOfConstructor_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_test.go index 559ec3dc59da4..7d84028cbaecd 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesOfConstructor_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesOfConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesOfConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesOfJsonModule_test.go b/tsc/pkg/fourslash/tests/findAllReferencesOfJsonModule_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllReferencesOfJsonModule_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesOfJsonModule_test.go index d9f26fbae6803..5bcd94a4c2839 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesOfJsonModule_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesOfJsonModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesOfJsonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesTripleSlash_test.go b/tsc/pkg/fourslash/tests/findAllReferencesTripleSlash_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllReferencesTripleSlash_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesTripleSlash_test.go index 950047c803bec..fbd5490a6ca2b 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesTripleSlash_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesTripleSlash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesTripleSlash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go b/tsc/pkg/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go similarity index 91% rename from tsc/internal/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go index 689ffa822c49a..4e5a8d57f3b71 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesUmdModuleAsGlobalConst_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesUmdModuleAsGlobalConst(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllReferencesUndefined_test.go b/tsc/pkg/fourslash/tests/findAllReferencesUndefined_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllReferencesUndefined_test.go rename to tsc/pkg/fourslash/tests/findAllReferencesUndefined_test.go index 60211fc96822d..b446146c2c27d 100644 --- a/tsc/internal/fourslash/tests/findAllReferencesUndefined_test.go +++ b/tsc/pkg/fourslash/tests/findAllReferencesUndefined_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllReferencesUndefined(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsBadImport_test.go b/tsc/pkg/fourslash/tests/findAllRefsBadImport_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsBadImport_test.go rename to tsc/pkg/fourslash/tests/findAllRefsBadImport_test.go index 418a84e70c4fd..29341ad640d6a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsBadImport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsBadImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsBadImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsCatchClause_test.go b/tsc/pkg/fourslash/tests/findAllRefsCatchClause_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsCatchClause_test.go rename to tsc/pkg/fourslash/tests/findAllRefsCatchClause_test.go index 9dceb50996326..3906f69befaf1 100644 --- a/tsc/internal/fourslash/tests/findAllRefsCatchClause_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsCatchClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsCatchClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsClassExpression0_test.go b/tsc/pkg/fourslash/tests/findAllRefsClassExpression0_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsClassExpression0_test.go rename to tsc/pkg/fourslash/tests/findAllRefsClassExpression0_test.go index 5fcb0c1aaeb72..a6bbb95112dfa 100644 --- a/tsc/internal/fourslash/tests/findAllRefsClassExpression0_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsClassExpression0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsClassExpression0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsClassExpression1_test.go b/tsc/pkg/fourslash/tests/findAllRefsClassExpression1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsClassExpression1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsClassExpression1_test.go index ab024ba003a4d..8721ffde2d181 100644 --- a/tsc/internal/fourslash/tests/findAllRefsClassExpression1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsClassExpression1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsClassExpression1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsClassExpression2_test.go b/tsc/pkg/fourslash/tests/findAllRefsClassExpression2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsClassExpression2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsClassExpression2_test.go index 61babc7c913c0..fb7443c42f336 100644 --- a/tsc/internal/fourslash/tests/findAllRefsClassExpression2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsClassExpression2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsClassExpression2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsClassStaticBlocks_test.go b/tsc/pkg/fourslash/tests/findAllRefsClassStaticBlocks_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsClassStaticBlocks_test.go rename to tsc/pkg/fourslash/tests/findAllRefsClassStaticBlocks_test.go index 0bb15ec3c4377..7eefc3f2428e1 100644 --- a/tsc/internal/fourslash/tests/findAllRefsClassStaticBlocks_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsClassStaticBlocks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsClassStaticBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go b/tsc/pkg/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go rename to tsc/pkg/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go index 93ffbc0d26ec1..92365255779c3 100644 --- a/tsc/internal/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsClassWithStaticThisAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsClassWithStaticThisAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire2_test.go b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsCommonJsRequire2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire2_test.go index 38d414312ea71..9f78ba9aebdf2 100644 --- a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsCommonJsRequire2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire3_test.go b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsCommonJsRequire3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire3_test.go index bfcc1e3f73efd..7762cc06ba7a9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsCommonJsRequire3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire_test.go b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsCommonJsRequire_test.go rename to tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire_test.go index 9515b52fd087a..d1ff30a6bed4a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsCommonJsRequire_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsCommonJsRequire_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsCommonJsRequire(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsConst_test.go b/tsc/pkg/fourslash/tests/findAllRefsConst_test.go similarity index 75% rename from tsc/internal/fourslash/tests/findAllRefsConst_test.go rename to tsc/pkg/fourslash/tests/findAllRefsConst_test.go index 3cdb926372317..9161cb3a4a12a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsConst_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsConst_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsConst(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsConstructorFunctions_test.go b/tsc/pkg/fourslash/tests/findAllRefsConstructorFunctions_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsConstructorFunctions_test.go rename to tsc/pkg/fourslash/tests/findAllRefsConstructorFunctions_test.go index 24bf9fe01c397..0495d198a6300 100644 --- a/tsc/internal/fourslash/tests/findAllRefsConstructorFunctions_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsConstructorFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsConstructorFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsDeclareClass_test.go b/tsc/pkg/fourslash/tests/findAllRefsDeclareClass_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsDeclareClass_test.go rename to tsc/pkg/fourslash/tests/findAllRefsDeclareClass_test.go index cd9efde2d934b..136dfa47981f8 100644 --- a/tsc/internal/fourslash/tests/findAllRefsDeclareClass_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsDeclareClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsDeclareClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsDefaultImport_test.go b/tsc/pkg/fourslash/tests/findAllRefsDefaultImport_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsDefaultImport_test.go rename to tsc/pkg/fourslash/tests/findAllRefsDefaultImport_test.go index 8097abded23d7..4093d19ae476a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsDefaultImport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsDefaultImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsDefaultImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsDefinition_test.go b/tsc/pkg/fourslash/tests/findAllRefsDefinition_test.go similarity index 75% rename from tsc/internal/fourslash/tests/findAllRefsDefinition_test.go rename to tsc/pkg/fourslash/tests/findAllRefsDefinition_test.go index 2aeb5da59de9a..29fc8633c491e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsDefinition_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsDestructureGeneric_test.go b/tsc/pkg/fourslash/tests/findAllRefsDestructureGeneric_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsDestructureGeneric_test.go rename to tsc/pkg/fourslash/tests/findAllRefsDestructureGeneric_test.go index 8f3d3d39f5e6c..84df049cd25ce 100644 --- a/tsc/internal/fourslash/tests/findAllRefsDestructureGeneric_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsDestructureGeneric_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsDestructureGeneric(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsDestructureGetter_test.go b/tsc/pkg/fourslash/tests/findAllRefsDestructureGetter_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsDestructureGetter_test.go rename to tsc/pkg/fourslash/tests/findAllRefsDestructureGetter_test.go index e7665e922870e..4b0d10275d0ee 100644 --- a/tsc/internal/fourslash/tests/findAllRefsDestructureGetter_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsDestructureGetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsDestructureGetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsEnumAsNamespace_test.go b/tsc/pkg/fourslash/tests/findAllRefsEnumAsNamespace_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsEnumAsNamespace_test.go rename to tsc/pkg/fourslash/tests/findAllRefsEnumAsNamespace_test.go index fb3d2f3cec1d1..c44a50e9348d5 100644 --- a/tsc/internal/fourslash/tests/findAllRefsEnumAsNamespace_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsEnumAsNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsEnumAsNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsEnumMember_test.go b/tsc/pkg/fourslash/tests/findAllRefsEnumMember_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsEnumMember_test.go rename to tsc/pkg/fourslash/tests/findAllRefsEnumMember_test.go index bdb70f403d782..82267ab4988a9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsEnumMember_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsEnumMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsEnumMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportAsNamespace_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportAsNamespace_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsExportAsNamespace_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportAsNamespace_test.go index 6971f111a8f81..5882ee61cbf3d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportAsNamespace_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportAsNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportAsNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportConstEqualToClass_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportConstEqualToClass_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsExportConstEqualToClass_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportConstEqualToClass_test.go index 0d36d07a22357..d41ef874d6997 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportConstEqualToClass_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportConstEqualToClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportConstEqualToClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go index bd1d84ec9c470..a3eb7887913af 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportDefaultClassConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportDefaultClassConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportEquals_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportEquals_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsExportEquals_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportEquals_test.go index 36d6006a1693c..dfa9a62f828ae 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go index f2e5a912751ba..47de9e938d927 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportNotAtTopLevel_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportNotAtTopLevel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsExportStringRename_test.go b/tsc/pkg/fourslash/tests/findAllRefsExportStringRename_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsExportStringRename_test.go rename to tsc/pkg/fourslash/tests/findAllRefsExportStringRename_test.go index f79962f30b3e1..1f2bad55aede8 100644 --- a/tsc/internal/fourslash/tests/findAllRefsExportStringRename_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsExportStringRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsExportStringRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForComputedProperties2_test.go b/tsc/pkg/fourslash/tests/findAllRefsForComputedProperties2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForComputedProperties2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForComputedProperties2_test.go index 5b2bb6abf522c..fb1d371c07a4f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForComputedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForComputedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForComputedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForComputedProperties_test.go b/tsc/pkg/fourslash/tests/findAllRefsForComputedProperties_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForComputedProperties_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForComputedProperties_test.go index 0d1fa26d03f8d..9ddd9522db612 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForComputedProperties_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForComputedProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForComputedProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport01_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport01_test.go index 0cf3d124462f3..5fe020f23048d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport02_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport02_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport02_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport02_test.go index c4cdb567165b3..8412f456ee223 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport02_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport03_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport03_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport03_test.go index 8e39ced35e966..1b6ac62181039 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport03_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport04_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport04_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport04_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport04_test.go index 48bb4c454a2da..6d8f4653eb15e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport04_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport08_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport08_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport08_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport08_test.go index 156dc2efe0730..0582cbcb65d41 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport08_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport08_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport09_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport09_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport09_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport09_test.go index 9cc8349c20381..33d56192cacdf 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport09_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport09_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExportVS_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExportVS_test.go similarity index 75% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExportVS_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExportVS_test.go index 99af2a4ffbf2e..b68ab548897b9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExportVS_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExportVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExportVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go index e27402a1cee9c..69381c0763b42 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_anonymous_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport_anonymous(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go index 0f20d9af9c3ee..aa765377f4230 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport_reExport_allowSyntheticDefaultImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go index 104835ef79a6d..b951de5e91c9f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_reExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport_reExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultExport_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_test.go index 8d7fa89bd783c..bc44811b007c0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultExport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForDefaultKeyword_test.go b/tsc/pkg/fourslash/tests/findAllRefsForDefaultKeyword_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForDefaultKeyword_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForDefaultKeyword_test.go index 77cc0ac834595..4af58713cff43 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForDefaultKeyword_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForDefaultKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForDefaultKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForFunctionExpression01_test.go b/tsc/pkg/fourslash/tests/findAllRefsForFunctionExpression01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForFunctionExpression01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForFunctionExpression01_test.go index ef7e2e253e78f..9ed020beb3172 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForFunctionExpression01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForFunctionExpression01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForFunctionExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForImportCallType_test.go b/tsc/pkg/fourslash/tests/findAllRefsForImportCallType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForImportCallType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForImportCallType_test.go index 6221a67e33d05..907b134aaecf0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForImportCallType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForImportCallType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForImportCallType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForImportCall_test.go b/tsc/pkg/fourslash/tests/findAllRefsForImportCall_test.go similarity index 86% rename from tsc/internal/fourslash/tests/findAllRefsForImportCall_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForImportCall_test.go index 567bfe5614f2e..afac88a4fa720 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForImportCall_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForImportCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForImportCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForMappedType_test.go b/tsc/pkg/fourslash/tests/findAllRefsForMappedType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForMappedType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForMappedType_test.go index 205f840fc1604..bd9660b3c7c0d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForMappedType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForModuleGlobal_test.go b/tsc/pkg/fourslash/tests/findAllRefsForModuleGlobal_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsForModuleGlobal_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForModuleGlobal_test.go index bac51b894755b..1508371323774 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForModuleGlobal_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForModuleGlobal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForModuleGlobal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForModule_test.go b/tsc/pkg/fourslash/tests/findAllRefsForModule_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsForModule_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForModule_test.go index 910afd0bcf0d6..b56caf7e2d7c4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForModule_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go b/tsc/pkg/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go index 56afc14a1331b..cbeb88b473e93 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForObjectLiteralProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForObjectLiteralProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForObjectSpread_test.go b/tsc/pkg/fourslash/tests/findAllRefsForObjectSpread_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForObjectSpread_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForObjectSpread_test.go index 865f96972f83b..99d96d94d4252 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForObjectSpread_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForObjectSpread_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForObjectSpread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForRest_test.go b/tsc/pkg/fourslash/tests/findAllRefsForRest_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsForRest_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForRest_test.go index 29b455e8bf19c..2e0477d522cf7 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForRest_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForRest_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForRest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go b/tsc/pkg/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go index eeca79161203b..202c8fc130b80 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForStaticInstanceMethodInheritance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForStaticInstanceMethodInheritance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go b/tsc/pkg/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go index 6184ef233ff7c..7b6acb9a5c6d6 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForStaticInstancePropertyInheritance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForStaticInstancePropertyInheritance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForStringLiteralTypes_test.go b/tsc/pkg/fourslash/tests/findAllRefsForStringLiteralTypes_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsForStringLiteralTypes_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForStringLiteralTypes_test.go index dc73524e60c78..81753e75fd6cf 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForStringLiteralTypes_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForStringLiteralTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForStringLiteralTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForStringLiteral_test.go b/tsc/pkg/fourslash/tests/findAllRefsForStringLiteral_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsForStringLiteral_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForStringLiteral_test.go index bac7f128ed0b7..b07d8e64998a2 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForStringLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go b/tsc/pkg/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go index 28694b504731f..4c0ebee37e593 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForUMDModuleAlias1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForUMDModuleAlias1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go b/tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go index 9ebb28faa8533..a368ab2921d0f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForVariableInExtendsClause01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go b/tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go index ce2c6fc98ccdb..334f5d7e0043d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForVariableInExtendsClause02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForVariableInExtendsClause02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go b/tsc/pkg/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go index bbf0e28a34b58..6546692983101 100644 --- a/tsc/internal/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsForVariableInImplementsClause01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsForVariableInImplementsClause01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsFromContextualUnionType1_test.go b/tsc/pkg/fourslash/tests/findAllRefsFromContextualUnionType1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsFromContextualUnionType1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsFromContextualUnionType1_test.go index 177badd59ece4..b5c2753ea5271 100644 --- a/tsc/internal/fourslash/tests/findAllRefsFromContextualUnionType1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsFromContextualUnionType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsFromContextualUnionType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go b/tsc/pkg/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go rename to tsc/pkg/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go index ba07b360eb9fd..5cc5c24061d52 100644 --- a/tsc/internal/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsGlobalModuleAugmentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsGlobalModuleAugmentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go b/tsc/pkg/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go rename to tsc/pkg/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go index 017b444e7d70b..1e0c2bf293766 100644 --- a/tsc/internal/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsGlobalThisKeywordInModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsGlobalThisKeywordInModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportDefault_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportDefault_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsImportDefault_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportDefault_test.go index 17581bd7ca177..f06461e08b32c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportDefault_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go index 9bd6b1b3962d2..32c25bb5f3783 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportEqualsJsonFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportEqualsJsonFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportEquals_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportEquals_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsImportEquals_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportEquals_test.go index 3111391f74a1b..79a09f790f900 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportEquals_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportNamed_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportNamed_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsImportNamed_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportNamed_test.go index a44fb372afa9b..9691c576bb1ef 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportNamed_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportNamed_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportNamed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go similarity index 92% rename from tsc/internal/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go index 239d37042addf..5d78f87a6266d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportStarOfExportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportStarOfExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsImportType_test.go b/tsc/pkg/fourslash/tests/findAllRefsImportType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsImportType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsImportType_test.go index 3aef6fdd328c3..b2de88943662d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsImportType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsImportType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsImportType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInClassExpression_test.go b/tsc/pkg/fourslash/tests/findAllRefsInClassExpression_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsInClassExpression_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInClassExpression_test.go index dc5f1e9383bdb..9a890eb501f2a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInClassExpression_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInClassExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInClassExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsIndexedAccessTypes_test.go b/tsc/pkg/fourslash/tests/findAllRefsIndexedAccessTypes_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsIndexedAccessTypes_test.go rename to tsc/pkg/fourslash/tests/findAllRefsIndexedAccessTypes_test.go index 35c71efb06a1f..d5d3776e245b5 100644 --- a/tsc/internal/fourslash/tests/findAllRefsIndexedAccessTypes_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsIndexedAccessTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsIndexedAccessTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties1VS_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1VS_test.go similarity index 75% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties1VS_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1VS_test.go index a3cbdc5a5b3e5..c50d43206e582 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties1VS_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties1_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1_test.go index 5b44d4850c7ee..ea2ea0ebbf39d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties2_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties2_test.go index d6365aa6f4a8e..6d4ebb3fddb1f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties3_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties3_test.go index 3e17c42887c7c..4843b46fea75a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties4_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties4_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties4_test.go index cc36e8f2522e1..e8d4e58255220 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties4_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties5_test.go b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsInheritedProperties5_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInheritedProperties5_test.go index c7a491e5963ec..62e356cd270e5 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInheritedProperties5_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInheritedProperties5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInheritedProperties5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInsideTemplates1_test.go b/tsc/pkg/fourslash/tests/findAllRefsInsideTemplates1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsInsideTemplates1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInsideTemplates1_test.go index 3be10785805ac..dd12e168b6335 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInsideTemplates1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInsideTemplates1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInsideTemplates1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInsideTemplates2_test.go b/tsc/pkg/fourslash/tests/findAllRefsInsideTemplates2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsInsideTemplates2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInsideTemplates2_test.go index e303806482d2a..4603056873e57 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInsideTemplates2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInsideTemplates2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInsideTemplates2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsInsideWithBlock_test.go b/tsc/pkg/fourslash/tests/findAllRefsInsideWithBlock_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsInsideWithBlock_test.go rename to tsc/pkg/fourslash/tests/findAllRefsInsideWithBlock_test.go index 06fc21f7db08e..be8f4bf1186b6 100644 --- a/tsc/internal/fourslash/tests/findAllRefsInsideWithBlock_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsInsideWithBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsInsideWithBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsIsDefinition_test.go b/tsc/pkg/fourslash/tests/findAllRefsIsDefinition_test.go similarity index 88% rename from tsc/internal/fourslash/tests/findAllRefsIsDefinition_test.go rename to tsc/pkg/fourslash/tests/findAllRefsIsDefinition_test.go index 7b97692ab4e83..1ae434a255bc0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsIsDefinition_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsIsDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsIsDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go b/tsc/pkg/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go index 9e24f4d3a93db..0fecebf5d5fb5 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJSDocNamespacedTypedef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJSDocNamespacedTypedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag2_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsJsDocImportTag2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag2_test.go index d9bd8b2b72724..28b8d1ab2af7e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocImportTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag3_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsJsDocImportTag3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag3_test.go index 5d214c7b54add..5a1ab0e635d53 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocImportTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag4_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag4_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsJsDocImportTag4_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag4_test.go index 5e50a0ee71d9e..6fde51cc2b932 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag4_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocImportTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag5_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsJsDocImportTag5_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag5_test.go index 12cd6a8ee3e0c..9dc5dd63e1b18 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag5_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocImportTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsJsDocImportTag_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag_test.go index 4b58b2f6dffdf..2c88b66a24d06 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocImportTag_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocImportTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocImportTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go index e528438166219..87f6797cd3ec9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTemplateTag_class_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go index 0cd7a52715ca1..5caac2a29c9f9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_class_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTemplateTag_class(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go index 71d34a7e4ee03..dc8ff0dcb3f94 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTemplateTag_function_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go index be73b4748f4f5..4287b682bea72 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTemplateTag_function_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTemplateTag_function(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go index 005c7525eabfd..21c54221e05e9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTypeDef_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_test.go index 87292c9b3fe0d..b8907eae73eb3 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsDocTypeDef_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsDocTypeDef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsDocTypeDef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go index 528e30a69f9c1..c4dc1e82541b7 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsThisPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go index c5bdc8032c89c..5bdb207ed06eb 100644 --- a/tsc/internal/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsJsThisPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsJsThisPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go b/tsc/pkg/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go rename to tsc/pkg/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go index 25cd85ae1a2a6..6f05b93aa7d7c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsMappedType_nonHomomorphic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsMappedType_nonHomomorphic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsMappedType_test.go b/tsc/pkg/fourslash/tests/findAllRefsMappedType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsMappedType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsMappedType_test.go index 1b4a3ad8a584a..53de46025c054 100644 --- a/tsc/internal/fourslash/tests/findAllRefsMappedType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go b/tsc/pkg/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go rename to tsc/pkg/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go index f5241cdb52c5d..2bd8b041cc134 100644 --- a/tsc/internal/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsMissingModulesOverlappingSpecifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsMissingModulesOverlappingSpecifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsModuleAugmentation_test.go b/tsc/pkg/fourslash/tests/findAllRefsModuleAugmentation_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsModuleAugmentation_test.go rename to tsc/pkg/fourslash/tests/findAllRefsModuleAugmentation_test.go index f405d3bb38534..2a28dca03f4b4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsModuleAugmentation_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsModuleAugmentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsModuleAugmentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsModuleDotExports_test.go b/tsc/pkg/fourslash/tests/findAllRefsModuleDotExports_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsModuleDotExports_test.go rename to tsc/pkg/fourslash/tests/findAllRefsModuleDotExports_test.go index 52e492d1f8851..f0fc8239dfd2e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsModuleDotExports_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsModuleDotExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsModuleDotExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsNoImportClause_test.go b/tsc/pkg/fourslash/tests/findAllRefsNoImportClause_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsNoImportClause_test.go rename to tsc/pkg/fourslash/tests/findAllRefsNoImportClause_test.go index fe024966a401d..6cc86a31b9744 100644 --- a/tsc/internal/fourslash/tests/findAllRefsNoImportClause_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsNoImportClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsNoImportClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go b/tsc/pkg/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go index 22af69c4ed817..22fed91cb2d96 100644 --- a/tsc/internal/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsNoSubstitutionTemplateLiteralNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsNoSubstitutionTemplateLiteralNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsNonModule_test.go b/tsc/pkg/fourslash/tests/findAllRefsNonModule_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsNonModule_test.go rename to tsc/pkg/fourslash/tests/findAllRefsNonModule_test.go index 0180e1dbfad46..a9df44819e0e2 100644 --- a/tsc/internal/fourslash/tests/findAllRefsNonModule_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsNonModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsNonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go b/tsc/pkg/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go index e9e7a75c57243..6daa6737f5fa4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsNonexistentPropertyNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsNonexistentPropertyNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go index efd42bc2fd623..5c8b5829930e6 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go index f46b3dbabf43d..edd893a248d1b 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go index a67cf022e84b2..f7eeda60a244c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go index 54c12b59edc11..55c8497de9e38 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go index f1491384fff39..10695a0e8752f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go index 673948ee4283f..c4b7484cd895e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go index 00f503fc81934..6f3da27bdc306 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName07_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go rename to tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go index 0dec1f19c72cc..fb9c95ce52995 100644 --- a/tsc/internal/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsObjectBindingElementPropertyName10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsObjectBindingElementPropertyName10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOfConstructor2_test.go b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsOfConstructor2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOfConstructor2_test.go index 4a9a25be84bb9..427dabe753cfc 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOfConstructor2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOfConstructor2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go index 772f7d54cae8b..9a23418910593 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_multipleFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOfConstructor_multipleFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_test.go b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsOfConstructor_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOfConstructor_test.go index 8f19c46e61097..68c4ce42a991e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOfConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go index 1651138bd5e99..5273f001c0fa4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOfConstructor_withModifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOfConstructor_withModifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnDecorators_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnDecorators_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsOnDecorators_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnDecorators_test.go index 13060a02794e7..7c52625cdf6cb 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnDecorators_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnDecorators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnDecorators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnDefinition2_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnDefinition2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsOnDefinition2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnDefinition2_test.go index ec1d27d41fe73..6f714d47131d0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnDefinition2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnDefinition2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnDefinition2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnDefinition_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnDefinition_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsOnDefinition_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnDefinition_test.go index 042bd570d76b0..27231bae25a2a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnDefinition_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnImportAliases2_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnImportAliases2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findAllRefsOnImportAliases2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnImportAliases2_test.go index 5b1ca523c5bba..8442012ec5d5f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnImportAliases2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnImportAliases2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnImportAliases2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnImportAliases_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnImportAliases_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsOnImportAliases_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnImportAliases_test.go index f6018b1165858..da7e703d770f7 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnImportAliases_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnImportAliases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnImportAliases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go b/tsc/pkg/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go index 0436544c21ff0..1c3f6d65d789e 100644 --- a/tsc/internal/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsOnPrivateParameterProperty1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsOnPrivateParameterProperty1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go index bce5dc8d4172f..41ec140e2aafc 100644 --- a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsParameterPropertyDeclaration1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go index 1203bb5215abd..a15229378586a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsParameterPropertyDeclaration2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go index 25490d6aaf961..70527fd20d580 100644 --- a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsParameterPropertyDeclaration3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go rename to tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go index 12bf8a569935c..b9c446b9cb430 100644 --- a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyDeclaration_inheritance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsParameterPropertyDeclaration_inheritance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go rename to tsc/pkg/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go index 0707b4a78d8e8..ce3cc8b121458 100644 --- a/tsc/internal/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsParameterPropertyWithConflictingMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsParameterPropertyWithConflictingMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go b/tsc/pkg/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go similarity index 88% rename from tsc/internal/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go index 20e7e1503a7e1..3fb4beaae5dd8 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPrefixSuffixPreference_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPrefixSuffixPreference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go b/tsc/pkg/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go index 74dbcd064428e..ea9545770f10c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPrimitiveJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPrimitiveJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPrivateNameAccessors_test.go b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameAccessors_test.go similarity index 86% rename from tsc/internal/fourslash/tests/findAllRefsPrivateNameAccessors_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPrivateNameAccessors_test.go index 7d777d9c01111..9bd995d7e9ff4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPrivateNameAccessors_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameAccessors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPrivateNameAccessors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPrivateNameMethods_test.go b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameMethods_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsPrivateNameMethods_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPrivateNameMethods_test.go index f661b6f808ecb..f16cd1cdbd070 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPrivateNameMethods_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameMethods_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPrivateNameMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPrivateNameProperties_test.go b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameProperties_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsPrivateNameProperties_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPrivateNameProperties_test.go index 42a2bda574415..dd496ebd704d2 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPrivateNameProperties_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPrivateNameProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPrivateNameProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go b/tsc/pkg/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go rename to tsc/pkg/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go index 6814801b82470..6273d68a84e97 100644 --- a/tsc/internal/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsPropertyContextuallyTypedByTypeParam01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsPropertyContextuallyTypedByTypeParam01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExportLocal_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExportLocal_test.go similarity index 92% rename from tsc/internal/fourslash/tests/findAllRefsReExportLocal_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExportLocal_test.go index 1da28f34c4465..07cc01611f88c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExportLocal_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExportLocal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExportLocal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go similarity index 92% rename from tsc/internal/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go index 358d564f521f9..1f7f9847e6cce 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExportRightNameWrongSymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExportRightNameWrongSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExportStarAs_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExportStarAs_test.go similarity index 85% rename from tsc/internal/fourslash/tests/findAllRefsReExportStarAs_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExportStarAs_test.go index c5909d8b4a39c..c694b89d429e0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExportStarAs_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExportStarAs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExportStarAs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExportStar_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExportStar_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsReExportStar_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExportStar_test.go index e533efe646d92..515a900b865a0 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExportStar_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExportStar_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExportStar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExport_broken2_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExport_broken2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsReExport_broken2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExport_broken2_test.go index e478f33b8e88f..bfcdaad440a51 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExport_broken2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExport_broken2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExport_broken2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExport_broken_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExport_broken_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findAllRefsReExport_broken_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExport_broken_test.go index 64f07e57bddfb..e37ab7a462d77 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExport_broken_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExport_broken_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExport_broken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExports2_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExports2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsReExports2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExports2_test.go index 2bc8136a4de31..f2d63f7ec86dd 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExports2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExports2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsReExportsUseInImportType_test.go b/tsc/pkg/fourslash/tests/findAllRefsReExportsUseInImportType_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsReExportsUseInImportType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsReExportsUseInImportType_test.go index 93fb735f84a9f..ae6a4e320319a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsReExportsUseInImportType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsReExportsUseInImportType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsReExportsUseInImportType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go b/tsc/pkg/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go rename to tsc/pkg/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go index be000a3da3766..14c3ed5f6187f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsRedeclaredPropertyInDerivedInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsRedeclaredPropertyInDerivedInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsRenameImportWithSameName_test.go b/tsc/pkg/fourslash/tests/findAllRefsRenameImportWithSameName_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsRenameImportWithSameName_test.go rename to tsc/pkg/fourslash/tests/findAllRefsRenameImportWithSameName_test.go index 8b63efee2e52a..f9b936ebbc00c 100644 --- a/tsc/internal/fourslash/tests/findAllRefsRenameImportWithSameName_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsRenameImportWithSameName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsRenameImportWithSameName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsRootSymbols_test.go b/tsc/pkg/fourslash/tests/findAllRefsRootSymbols_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsRootSymbols_test.go rename to tsc/pkg/fourslash/tests/findAllRefsRootSymbols_test.go index 77e1250257715..fecf8b6c62310 100644 --- a/tsc/internal/fourslash/tests/findAllRefsRootSymbols_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsRootSymbols_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsRootSymbols(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go b/tsc/pkg/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go rename to tsc/pkg/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go index 6ba7f50e394d8..2cd57ebb1ab1a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsThisKeywordMultipleFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsThisKeywordMultipleFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsThisKeyword_test.go b/tsc/pkg/fourslash/tests/findAllRefsThisKeyword_test.go similarity index 87% rename from tsc/internal/fourslash/tests/findAllRefsThisKeyword_test.go rename to tsc/pkg/fourslash/tests/findAllRefsThisKeyword_test.go index 273b9e79d80ef..c48fcbaa65ef1 100644 --- a/tsc/internal/fourslash/tests/findAllRefsThisKeyword_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsThisKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsThisKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsTripleSlashRef1_test.go b/tsc/pkg/fourslash/tests/findAllRefsTripleSlashRef1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsTripleSlashRef1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsTripleSlashRef1_test.go index 4c76b5f73d10d..aafe0e76def71 100644 --- a/tsc/internal/fourslash/tests/findAllRefsTripleSlashRef1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsTripleSlashRef1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsTripleSlashRef1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go b/tsc/pkg/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go rename to tsc/pkg/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go index 65c0e91fc8454..ce2b1f75e01b9 100644 --- a/tsc/internal/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsTypeParameterInMergedInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsTypeParameterInMergedInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsTypedef_importType_test.go b/tsc/pkg/fourslash/tests/findAllRefsTypedef_importType_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsTypedef_importType_test.go rename to tsc/pkg/fourslash/tests/findAllRefsTypedef_importType_test.go index 4e162bf57565e..658f318687a4a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsTypedef_importType_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsTypedef_importType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsTypedef_importType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsTypedef_test.go b/tsc/pkg/fourslash/tests/findAllRefsTypedef_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findAllRefsTypedef_test.go rename to tsc/pkg/fourslash/tests/findAllRefsTypedef_test.go index c3d5b65de23f4..ebdf15b3e6010 100644 --- a/tsc/internal/fourslash/tests/findAllRefsTypedef_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsTypedef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsTypedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsTypeofImport_test.go b/tsc/pkg/fourslash/tests/findAllRefsTypeofImport_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsTypeofImport_test.go rename to tsc/pkg/fourslash/tests/findAllRefsTypeofImport_test.go index 277ba7a0ff0a7..409f934b2a0a4 100644 --- a/tsc/internal/fourslash/tests/findAllRefsTypeofImport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsTypeofImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsTypeofImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsUnionProperty_test.go b/tsc/pkg/fourslash/tests/findAllRefsUnionProperty_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsUnionProperty_test.go rename to tsc/pkg/fourslash/tests/findAllRefsUnionProperty_test.go index 569a11ff98521..4c84fd296c714 100644 --- a/tsc/internal/fourslash/tests/findAllRefsUnionProperty_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsUnionProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsUnionProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go index 2bf95cfb0dcf5..0b4db040b41af 100644 --- a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsUnresolvedSymbols1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go index 5e5dfc385280b..393263f24f37a 100644 --- a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsUnresolvedSymbols2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go index 5ad1306d46ba4..15b81288a04e2 100644 --- a/tsc/internal/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsUnresolvedSymbols3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsUnresolvedSymbols3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go index c180307ca3f6d..c415f39fd12aa 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go index 8075e1fec2f1a..c2d3d69475102 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go index 9ac6b2b11c28e..3aa9b11f01593 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go similarity index 78% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go index 1f9592c69efd0..9b2bd5ec08dd5 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go index bacec2d44892d..0e35bf04b9971 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go index c8bc244834af2..014921572683f 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go index 9c14df6bec332..8a3e2d20a3aef 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go index 3b3fba61940f7..abd9c47dc3ca3 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go similarity index 77% rename from tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go index 5cab95dfd1b40..35e1e15a1df88 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithLeadingUnderscoreNames9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithLeadingUnderscoreNames9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go index 7281296df0a93..f9b4417c782a7 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithShorthandPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go index b3e2279c0ff34..3ff95821dd2af 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWithShorthandPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWithShorthandPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefsWriteAccess_test.go b/tsc/pkg/fourslash/tests/findAllRefsWriteAccess_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefsWriteAccess_test.go rename to tsc/pkg/fourslash/tests/findAllRefsWriteAccess_test.go index 8a2eb3a0618be..a98d163dcda3d 100644 --- a/tsc/internal/fourslash/tests/findAllRefsWriteAccess_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefsWriteAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefsWriteAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_js1_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_js1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefs_importType_js1_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_js1_test.go index 0d70807ccf46e..84143154955be 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_js1_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_js1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_js1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_js2_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_js2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefs_importType_js2_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_js2_test.go index 5ac2497c06a3f..78bb5bb8b4da8 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_js2_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_js2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_js2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_js3_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_js3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/findAllRefs_importType_js3_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_js3_test.go index 9e1db884c369a..76aa312321a4b 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_js3_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_js3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_js3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_js4_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_js4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefs_importType_js4_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_js4_test.go index 2740e9b3fb92c..f312b7cf5a65c 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_js4_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_js4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_js4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_js_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_js_test.go similarity index 83% rename from tsc/internal/fourslash/tests/findAllRefs_importType_js_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_js_test.go index 08d2b655e1b52..fb02b73b2ee4e 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_js_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go index 116aa26166c1d..05fd9e2cb8f6c 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_meaningAtLocation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_meaningAtLocation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_named_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_named_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findAllRefs_importType_named_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_named_test.go index 93023976f97fc..ccaed67a6cfe9 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_named_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_named_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_named(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_importType_typeofImport_test.go b/tsc/pkg/fourslash/tests/findAllRefs_importType_typeofImport_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findAllRefs_importType_typeofImport_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_importType_typeofImport_test.go index e17baddbf7f21..0d13dd1a2479c 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_importType_typeofImport_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_importType_typeofImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_importType_typeofImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findAllRefs_jsEnum_test.go b/tsc/pkg/fourslash/tests/findAllRefs_jsEnum_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findAllRefs_jsEnum_test.go rename to tsc/pkg/fourslash/tests/findAllRefs_jsEnum_test.go index 21218eebed0be..240bd774afb47 100644 --- a/tsc/internal/fourslash/tests/findAllRefs_jsEnum_test.go +++ b/tsc/pkg/fourslash/tests/findAllRefs_jsEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindAllRefs_jsEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go b/tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go similarity index 76% rename from tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go rename to tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go index 686bf8662a464..0038c207ea4e9 100644 --- a/tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjectsVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesAcrossMultipleProjectsVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjects_test.go b/tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjects_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjects_test.go rename to tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjects_test.go index 37bd4369a5bb9..ce478c1ebc1b4 100644 --- a/tsc/internal/fourslash/tests/findReferencesAcrossMultipleProjects_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesAcrossMultipleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesAcrossMultipleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesAfterEdit_test.go b/tsc/pkg/fourslash/tests/findReferencesAfterEdit_test.go similarity index 82% rename from tsc/internal/fourslash/tests/findReferencesAfterEdit_test.go rename to tsc/pkg/fourslash/tests/findReferencesAfterEdit_test.go index 64c901bbf69c3..581a823f2b2a1 100644 --- a/tsc/internal/fourslash/tests/findReferencesAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesAfterEdit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go b/tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go rename to tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go index d9c556a2a288d..c083b0fbfedc9 100644 --- a/tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesBindingPatternInJsdocNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go b/tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go rename to tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go index 6931a614a8d80..c102effc8f5cb 100644 --- a/tsc/internal/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesBindingPatternInJsdocNoCrash2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesBindingPatternInJsdocNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesDefinitionDisplayParts_test.go b/tsc/pkg/fourslash/tests/findReferencesDefinitionDisplayParts_test.go similarity index 81% rename from tsc/internal/fourslash/tests/findReferencesDefinitionDisplayParts_test.go rename to tsc/pkg/fourslash/tests/findReferencesDefinitionDisplayParts_test.go index d4b32091c2ffd..1215d9dce5ad1 100644 --- a/tsc/internal/fourslash/tests/findReferencesDefinitionDisplayParts_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesDefinitionDisplayParts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesDefinitionDisplayParts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesJSXTagName2_test.go b/tsc/pkg/fourslash/tests/findReferencesJSXTagName2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/findReferencesJSXTagName2_test.go rename to tsc/pkg/fourslash/tests/findReferencesJSXTagName2_test.go index b7cd0832038bb..80d203bc85f57 100644 --- a/tsc/internal/fourslash/tests/findReferencesJSXTagName2_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesJSXTagName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesJSXTagName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesJSXTagName3_test.go b/tsc/pkg/fourslash/tests/findReferencesJSXTagName3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/findReferencesJSXTagName3_test.go rename to tsc/pkg/fourslash/tests/findReferencesJSXTagName3_test.go index 4f7372ba933ea..c2c54ddf6a510 100644 --- a/tsc/internal/fourslash/tests/findReferencesJSXTagName3_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesJSXTagName3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesJSXTagName3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesJSXTagName_test.go b/tsc/pkg/fourslash/tests/findReferencesJSXTagName_test.go similarity index 86% rename from tsc/internal/fourslash/tests/findReferencesJSXTagName_test.go rename to tsc/pkg/fourslash/tests/findReferencesJSXTagName_test.go index 2fda7be56c3f8..479a79ba09345 100644 --- a/tsc/internal/fourslash/tests/findReferencesJSXTagName_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesJSXTagName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesJSXTagName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/findReferencesSeeTagInTs_test.go b/tsc/pkg/fourslash/tests/findReferencesSeeTagInTs_test.go similarity index 80% rename from tsc/internal/fourslash/tests/findReferencesSeeTagInTs_test.go rename to tsc/pkg/fourslash/tests/findReferencesSeeTagInTs_test.go index ce9eafffd65f6..8d88aac2f2b1a 100644 --- a/tsc/internal/fourslash/tests/findReferencesSeeTagInTs_test.go +++ b/tsc/pkg/fourslash/tests/findReferencesSeeTagInTs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFindReferencesSeeTagInTs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go rename to tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go index ad3ea525e53c5..db2b53b661d6d 100644 --- a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go +++ b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFixExactOptionalUnassignableProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go similarity index 84% rename from tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go rename to tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go index 9a30312ca95b2..06e5563771616 100644 --- a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go +++ b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFixExactOptionalUnassignableProperties7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go similarity index 81% rename from tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go rename to tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go index 126fb7a9dbf9d..5668f5ca4b44f 100644 --- a/tsc/internal/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go +++ b/tsc/pkg/fourslash/tests/fixExactOptionalUnassignableProperties9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFixExactOptionalUnassignableProperties9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/fixingTypeParametersQuickInfo_test.go b/tsc/pkg/fourslash/tests/fixingTypeParametersQuickInfo_test.go similarity index 86% rename from tsc/internal/fourslash/tests/fixingTypeParametersQuickInfo_test.go rename to tsc/pkg/fourslash/tests/fixingTypeParametersQuickInfo_test.go index e255c405d43fd..c366ca7174240 100644 --- a/tsc/internal/fourslash/tests/fixingTypeParametersQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/fixingTypeParametersQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFixingTypeParametersQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/foldingRangeJSXPropertyAccess_test.go b/tsc/pkg/fourslash/tests/foldingRangeJSXPropertyAccess_test.go similarity index 80% rename from tsc/internal/fourslash/tests/foldingRangeJSXPropertyAccess_test.go rename to tsc/pkg/fourslash/tests/foldingRangeJSXPropertyAccess_test.go index 9a35913e83cc9..235deb996d1ea 100644 --- a/tsc/internal/fourslash/tests/foldingRangeJSXPropertyAccess_test.go +++ b/tsc/pkg/fourslash/tests/foldingRangeJSXPropertyAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFoldingRangeJSXPropertyAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/foldingRangeLineFoldingOnly_test.go b/tsc/pkg/fourslash/tests/foldingRangeLineFoldingOnly_test.go similarity index 94% rename from tsc/internal/fourslash/tests/foldingRangeLineFoldingOnly_test.go rename to tsc/pkg/fourslash/tests/foldingRangeLineFoldingOnly_test.go index 2a8fa6a7c13be..68738542cfe94 100644 --- a/tsc/internal/fourslash/tests/foldingRangeLineFoldingOnly_test.go +++ b/tsc/pkg/fourslash/tests/foldingRangeLineFoldingOnly_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFoldingRangeLineFoldingOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/forceIndentAfterNewLineInsert_test.go b/tsc/pkg/fourslash/tests/forceIndentAfterNewLineInsert_test.go similarity index 82% rename from tsc/internal/fourslash/tests/forceIndentAfterNewLineInsert_test.go rename to tsc/pkg/fourslash/tests/forceIndentAfterNewLineInsert_test.go index 41bc526f1a776..d119edda5d972 100644 --- a/tsc/internal/fourslash/tests/forceIndentAfterNewLineInsert_test.go +++ b/tsc/pkg/fourslash/tests/forceIndentAfterNewLineInsert_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestForceIndentAfterNewLineInsert(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/format01_test.go b/tsc/pkg/fourslash/tests/format01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/format01_test.go rename to tsc/pkg/fourslash/tests/format01_test.go index 0bc757c576728..21029a2c0afc1 100644 --- a/tsc/internal/fourslash/tests/format01_test.go +++ b/tsc/pkg/fourslash/tests/format01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormat01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAfterMultilineComment_test.go b/tsc/pkg/fourslash/tests/formatAfterMultilineComment_test.go similarity index 76% rename from tsc/internal/fourslash/tests/formatAfterMultilineComment_test.go rename to tsc/pkg/fourslash/tests/formatAfterMultilineComment_test.go index 98d4b39384f11..aec22accda822 100644 --- a/tsc/internal/fourslash/tests/formatAfterMultilineComment_test.go +++ b/tsc/pkg/fourslash/tests/formatAfterMultilineComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAfterMultilineComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAfterObjectLiteral_test.go b/tsc/pkg/fourslash/tests/formatAfterObjectLiteral_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatAfterObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/formatAfterObjectLiteral_test.go index 83a7719d7f65e..7ff63cf7c3ffd 100644 --- a/tsc/internal/fourslash/tests/formatAfterObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formatAfterObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAfterObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAfterPasteInString_test.go b/tsc/pkg/fourslash/tests/formatAfterPasteInString_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatAfterPasteInString_test.go rename to tsc/pkg/fourslash/tests/formatAfterPasteInString_test.go index d5813041b7d97..8341263680b79 100644 --- a/tsc/internal/fourslash/tests/formatAfterPasteInString_test.go +++ b/tsc/pkg/fourslash/tests/formatAfterPasteInString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAfterPasteInString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAfterWhitespace_test.go b/tsc/pkg/fourslash/tests/formatAfterWhitespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatAfterWhitespace_test.go rename to tsc/pkg/fourslash/tests/formatAfterWhitespace_test.go index 7441021bee50e..7d6aecc283703 100644 --- a/tsc/internal/fourslash/tests/formatAfterWhitespace_test.go +++ b/tsc/pkg/fourslash/tests/formatAfterWhitespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAfterWhitespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAnyTypeLiteral_test.go b/tsc/pkg/fourslash/tests/formatAnyTypeLiteral_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatAnyTypeLiteral_test.go rename to tsc/pkg/fourslash/tests/formatAnyTypeLiteral_test.go index ad15af3839dd7..68d3128229196 100644 --- a/tsc/internal/fourslash/tests/formatAnyTypeLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formatAnyTypeLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAnyTypeLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatArrayLiteralExpression_test.go b/tsc/pkg/fourslash/tests/formatArrayLiteralExpression_test.go similarity index 92% rename from tsc/internal/fourslash/tests/formatArrayLiteralExpression_test.go rename to tsc/pkg/fourslash/tests/formatArrayLiteralExpression_test.go index 49fef13179d7f..531fec276a5ce 100644 --- a/tsc/internal/fourslash/tests/formatArrayLiteralExpression_test.go +++ b/tsc/pkg/fourslash/tests/formatArrayLiteralExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatArrayLiteralExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go b/tsc/pkg/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go rename to tsc/pkg/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go index a05c7ec4811ae..6eed0d151dd02 100644 --- a/tsc/internal/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go +++ b/tsc/pkg/fourslash/tests/formatArrayOrObjectLiteralsInVariableList_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatArrayOrObjectLiteralsInVariableList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAsyncClassMethod1_test.go b/tsc/pkg/fourslash/tests/formatAsyncClassMethod1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatAsyncClassMethod1_test.go rename to tsc/pkg/fourslash/tests/formatAsyncClassMethod1_test.go index 280e5f6aa7335..cbcd9220444c0 100644 --- a/tsc/internal/fourslash/tests/formatAsyncClassMethod1_test.go +++ b/tsc/pkg/fourslash/tests/formatAsyncClassMethod1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAsyncClassMethod1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAsyncClassMethod2_test.go b/tsc/pkg/fourslash/tests/formatAsyncClassMethod2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatAsyncClassMethod2_test.go rename to tsc/pkg/fourslash/tests/formatAsyncClassMethod2_test.go index e849fe8cc178a..16748123e42b2 100644 --- a/tsc/internal/fourslash/tests/formatAsyncClassMethod2_test.go +++ b/tsc/pkg/fourslash/tests/formatAsyncClassMethod2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAsyncClassMethod2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAsyncComputedMethod_test.go b/tsc/pkg/fourslash/tests/formatAsyncComputedMethod_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatAsyncComputedMethod_test.go rename to tsc/pkg/fourslash/tests/formatAsyncComputedMethod_test.go index 357a28fe6e0e5..1eb17bd5f4c7a 100644 --- a/tsc/internal/fourslash/tests/formatAsyncComputedMethod_test.go +++ b/tsc/pkg/fourslash/tests/formatAsyncComputedMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAsyncComputedMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatAsyncKeyword_test.go b/tsc/pkg/fourslash/tests/formatAsyncKeyword_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formatAsyncKeyword_test.go rename to tsc/pkg/fourslash/tests/formatAsyncKeyword_test.go index 1064a569df7e1..4104ed8ef1778 100644 --- a/tsc/internal/fourslash/tests/formatAsyncKeyword_test.go +++ b/tsc/pkg/fourslash/tests/formatAsyncKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatAsyncKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatBracketInSwitchCase_test.go b/tsc/pkg/fourslash/tests/formatBracketInSwitchCase_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatBracketInSwitchCase_test.go rename to tsc/pkg/fourslash/tests/formatBracketInSwitchCase_test.go index 8c69c775f59e2..79290ae22cbe7 100644 --- a/tsc/internal/fourslash/tests/formatBracketInSwitchCase_test.go +++ b/tsc/pkg/fourslash/tests/formatBracketInSwitchCase_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatBracketInSwitchCase(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatColonAndQMark_test.go b/tsc/pkg/fourslash/tests/formatColonAndQMark_test.go similarity index 86% rename from tsc/internal/fourslash/tests/formatColonAndQMark_test.go rename to tsc/pkg/fourslash/tests/formatColonAndQMark_test.go index 7f61cc23a6a2d..8014a301408ef 100644 --- a/tsc/internal/fourslash/tests/formatColonAndQMark_test.go +++ b/tsc/pkg/fourslash/tests/formatColonAndQMark_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatColonAndQMark(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatComments_test.go b/tsc/pkg/fourslash/tests/formatComments_test.go similarity index 86% rename from tsc/internal/fourslash/tests/formatComments_test.go rename to tsc/pkg/fourslash/tests/formatComments_test.go index 5557e4eb0f304..1a4293d6d4e4e 100644 --- a/tsc/internal/fourslash/tests/formatComments_test.go +++ b/tsc/pkg/fourslash/tests/formatComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatConflictDiff3Marker1_test.go b/tsc/pkg/fourslash/tests/formatConflictDiff3Marker1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formatConflictDiff3Marker1_test.go rename to tsc/pkg/fourslash/tests/formatConflictDiff3Marker1_test.go index 9731ccda2eb3d..05acb789ba29a 100644 --- a/tsc/internal/fourslash/tests/formatConflictDiff3Marker1_test.go +++ b/tsc/pkg/fourslash/tests/formatConflictDiff3Marker1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatConflictDiff3Marker1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatConflictMarker1_test.go b/tsc/pkg/fourslash/tests/formatConflictMarker1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatConflictMarker1_test.go rename to tsc/pkg/fourslash/tests/formatConflictMarker1_test.go index 1c175e0397a31..17a00656da62b 100644 --- a/tsc/internal/fourslash/tests/formatConflictMarker1_test.go +++ b/tsc/pkg/fourslash/tests/formatConflictMarker1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatConflictMarker1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatControlFlowConstructs_test.go b/tsc/pkg/fourslash/tests/formatControlFlowConstructs_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatControlFlowConstructs_test.go rename to tsc/pkg/fourslash/tests/formatControlFlowConstructs_test.go index b70bfd96515d0..2118fb481d872 100644 --- a/tsc/internal/fourslash/tests/formatControlFlowConstructs_test.go +++ b/tsc/pkg/fourslash/tests/formatControlFlowConstructs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatControlFlowConstructs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDebuggerStatement_test.go b/tsc/pkg/fourslash/tests/formatDebuggerStatement_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatDebuggerStatement_test.go rename to tsc/pkg/fourslash/tests/formatDebuggerStatement_test.go index fea001cdd8c88..9c818dc1f47f4 100644 --- a/tsc/internal/fourslash/tests/formatDebuggerStatement_test.go +++ b/tsc/pkg/fourslash/tests/formatDebuggerStatement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDebuggerStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go b/tsc/pkg/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go rename to tsc/pkg/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go index 909ed5366df21..3ae62fe688391 100644 --- a/tsc/internal/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentGrammarErrorInitializer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // A malformed intersection type with an unclosed object type (`x as A & { a: { b: C }`) makes diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go index 23bcd4fd04b03..c28f7bb43f578 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxAttrUnterminatedString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashJsxAttrUnterminatedString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go index 18f534a09641f..3d4ee80b4ca4c 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashJsxNamespacedName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go index 1c96c460d0cf6..083e6e16bb9bf 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashJsxNamespacedName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashJsxNamespacedName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go similarity index 73% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go index 3e9cb8d6bd005..4ab1e53c42245 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashLeadingWhitespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go similarity index 73% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go index 8e14e39d63ec4..53a0bdcf58c21 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashLeadingWhitespace2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashLeadingWhitespace2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go b/tsc/pkg/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go similarity index 74% rename from tsc/internal/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go rename to tsc/pkg/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go index 65c5c657b0aa4..fdcdbcd828839 100644 --- a/tsc/internal/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentNoCrashShortLastLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentNoCrashShortLastLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go b/tsc/pkg/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go rename to tsc/pkg/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go index c89478fe8eecd..cc3368b0b228d 100644 --- a/tsc/internal/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentPreserveTrailingWhitespace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentPreserveTrailingWhitespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentWithJSDoc_test.go b/tsc/pkg/fourslash/tests/formatDocumentWithJSDoc_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatDocumentWithJSDoc_test.go rename to tsc/pkg/fourslash/tests/formatDocumentWithJSDoc_test.go index 51017eac9deda..74cfce35a73fb 100644 --- a/tsc/internal/fourslash/tests/formatDocumentWithJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentWithJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentWithJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentWithTrivia_test.go b/tsc/pkg/fourslash/tests/formatDocumentWithTrivia_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formatDocumentWithTrivia_test.go rename to tsc/pkg/fourslash/tests/formatDocumentWithTrivia_test.go index c2eb810553c25..38dece2ea3658 100644 --- a/tsc/internal/fourslash/tests/formatDocumentWithTrivia_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentWithTrivia_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentWithTrivia(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDocumentZeroTabSize_test.go b/tsc/pkg/fourslash/tests/formatDocumentZeroTabSize_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatDocumentZeroTabSize_test.go rename to tsc/pkg/fourslash/tests/formatDocumentZeroTabSize_test.go index d7a7df908fb34..c79a2b110a2bd 100644 --- a/tsc/internal/fourslash/tests/formatDocumentZeroTabSize_test.go +++ b/tsc/pkg/fourslash/tests/formatDocumentZeroTabSize_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDocumentZeroTabSize(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatDotAfterNumber_test.go b/tsc/pkg/fourslash/tests/formatDotAfterNumber_test.go similarity index 88% rename from tsc/internal/fourslash/tests/formatDotAfterNumber_test.go rename to tsc/pkg/fourslash/tests/formatDotAfterNumber_test.go index b175c17c789d0..6883ed84d73e5 100644 --- a/tsc/internal/fourslash/tests/formatDotAfterNumber_test.go +++ b/tsc/pkg/fourslash/tests/formatDotAfterNumber_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatDotAfterNumber(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatEmptyBlock_test.go b/tsc/pkg/fourslash/tests/formatEmptyBlock_test.go similarity index 75% rename from tsc/internal/fourslash/tests/formatEmptyBlock_test.go rename to tsc/pkg/fourslash/tests/formatEmptyBlock_test.go index 4a9e7a604e21e..2b9b707c09c6c 100644 --- a/tsc/internal/fourslash/tests/formatEmptyBlock_test.go +++ b/tsc/pkg/fourslash/tests/formatEmptyBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatEmptyBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatEmptyParamList_test.go b/tsc/pkg/fourslash/tests/formatEmptyParamList_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatEmptyParamList_test.go rename to tsc/pkg/fourslash/tests/formatEmptyParamList_test.go index 6a66e64bd159b..1dd69c4f650de 100644 --- a/tsc/internal/fourslash/tests/formatEmptyParamList_test.go +++ b/tsc/pkg/fourslash/tests/formatEmptyParamList_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatEmptyParamList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatExportAssignment_test.go b/tsc/pkg/fourslash/tests/formatExportAssignment_test.go similarity index 75% rename from tsc/internal/fourslash/tests/formatExportAssignment_test.go rename to tsc/pkg/fourslash/tests/formatExportAssignment_test.go index b377f10a00f7a..f547dc372d06a 100644 --- a/tsc/internal/fourslash/tests/formatExportAssignment_test.go +++ b/tsc/pkg/fourslash/tests/formatExportAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatExportAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatIfTryCatchBlocks_test.go b/tsc/pkg/fourslash/tests/formatIfTryCatchBlocks_test.go similarity index 76% rename from tsc/internal/fourslash/tests/formatIfTryCatchBlocks_test.go rename to tsc/pkg/fourslash/tests/formatIfTryCatchBlocks_test.go index 6fe1722f68de3..b87f8ce4a4913 100644 --- a/tsc/internal/fourslash/tests/formatIfTryCatchBlocks_test.go +++ b/tsc/pkg/fourslash/tests/formatIfTryCatchBlocks_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatIfTryCatchBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatIfWithEmptyCondition_test.go b/tsc/pkg/fourslash/tests/formatIfWithEmptyCondition_test.go similarity index 74% rename from tsc/internal/fourslash/tests/formatIfWithEmptyCondition_test.go rename to tsc/pkg/fourslash/tests/formatIfWithEmptyCondition_test.go index c7dd6fb3970f7..79f2d4d469f45 100644 --- a/tsc/internal/fourslash/tests/formatIfWithEmptyCondition_test.go +++ b/tsc/pkg/fourslash/tests/formatIfWithEmptyCondition_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatIfWithEmptyCondition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatImplicitModule_test.go b/tsc/pkg/fourslash/tests/formatImplicitModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatImplicitModule_test.go rename to tsc/pkg/fourslash/tests/formatImplicitModule_test.go index cf92fcdf964d0..30fee3942bd4d 100644 --- a/tsc/internal/fourslash/tests/formatImplicitModule_test.go +++ b/tsc/pkg/fourslash/tests/formatImplicitModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatImplicitModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatImportDeclaration_test.go b/tsc/pkg/fourslash/tests/formatImportDeclaration_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formatImportDeclaration_test.go rename to tsc/pkg/fourslash/tests/formatImportDeclaration_test.go index b7b8a39012034..a8e332e7eae95 100644 --- a/tsc/internal/fourslash/tests/formatImportDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/formatImportDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatImportDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatInTryCatchFinally_test.go b/tsc/pkg/fourslash/tests/formatInTryCatchFinally_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatInTryCatchFinally_test.go rename to tsc/pkg/fourslash/tests/formatInTryCatchFinally_test.go index d295e8f94fe5d..c367c6d3713ea 100644 --- a/tsc/internal/fourslash/tests/formatInTryCatchFinally_test.go +++ b/tsc/pkg/fourslash/tests/formatInTryCatchFinally_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatInTryCatchFinally(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatInTsxFiles_test.go b/tsc/pkg/fourslash/tests/formatInTsxFiles_test.go similarity index 75% rename from tsc/internal/fourslash/tests/formatInTsxFiles_test.go rename to tsc/pkg/fourslash/tests/formatInTsxFiles_test.go index 34a798ded9f6a..fa2f8df604a73 100644 --- a/tsc/internal/fourslash/tests/formatInTsxFiles_test.go +++ b/tsc/pkg/fourslash/tests/formatInTsxFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatInTsxFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go b/tsc/pkg/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go similarity index 75% rename from tsc/internal/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go rename to tsc/pkg/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go index 716f4dc7ed850..6748e09a89392 100644 --- a/tsc/internal/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go +++ b/tsc/pkg/fourslash/tests/formatInsertSpaceAfterCloseBraceBeforeCloseBracket_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatInsertSpaceAfterCloseBraceBeforeCloseBracket(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go b/tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go rename to tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go index 6e1b96eeddad5..5f73e58568829 100644 --- a/tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go +++ b/tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatInterfaceWithMissingBraceAndLaterTemplateString1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go b/tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go rename to tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go index e0f9fba2cd7c0..13ef281e3c778 100644 --- a/tsc/internal/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go +++ b/tsc/pkg/fourslash/tests/formatInterfaceWithMissingBraceAndLaterTemplateString2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatInterfaceWithMissingBraceAndLaterTemplateString2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatJsxDottedTagName_test.go b/tsc/pkg/fourslash/tests/formatJsxDottedTagName_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatJsxDottedTagName_test.go rename to tsc/pkg/fourslash/tests/formatJsxDottedTagName_test.go index 13cfcaf5d4e95..3746dc621b294 100644 --- a/tsc/internal/fourslash/tests/formatJsxDottedTagName_test.go +++ b/tsc/pkg/fourslash/tests/formatJsxDottedTagName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatJsxDottedTagName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go b/tsc/pkg/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go rename to tsc/pkg/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go index 0e7140d180b3a..9184749390aab 100644 --- a/tsc/internal/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/formatJsxWithKeywordInIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatJsxWithKeywordInIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go b/tsc/pkg/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go rename to tsc/pkg/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go index a96e66468677c..eb577607f53dd 100644 --- a/tsc/internal/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go +++ b/tsc/pkg/fourslash/tests/formatLiteralTypeInUnionOrIntersectionType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatLiteralTypeInUnionOrIntersectionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatMultilineComment_test.go b/tsc/pkg/fourslash/tests/formatMultilineComment_test.go similarity index 92% rename from tsc/internal/fourslash/tests/formatMultilineComment_test.go rename to tsc/pkg/fourslash/tests/formatMultilineComment_test.go index 451c405764f48..d33f53821c987 100644 --- a/tsc/internal/fourslash/tests/formatMultilineComment_test.go +++ b/tsc/pkg/fourslash/tests/formatMultilineComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatMultilineComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatMultilineImportBrace_test.go b/tsc/pkg/fourslash/tests/formatMultilineImportBrace_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatMultilineImportBrace_test.go rename to tsc/pkg/fourslash/tests/formatMultilineImportBrace_test.go index e0ced84ca550c..fa26a91e21c1c 100644 --- a/tsc/internal/fourslash/tests/formatMultilineImportBrace_test.go +++ b/tsc/pkg/fourslash/tests/formatMultilineImportBrace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // The formatter should move the closing brace of a multiline import to its own line. diff --git a/tsc/internal/fourslash/tests/formatMultilineTypesWithMapped_test.go b/tsc/pkg/fourslash/tests/formatMultilineTypesWithMapped_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formatMultilineTypesWithMapped_test.go rename to tsc/pkg/fourslash/tests/formatMultilineTypesWithMapped_test.go index 2aa1ce0af0db8..69c2d4d530a19 100644 --- a/tsc/internal/fourslash/tests/formatMultilineTypesWithMapped_test.go +++ b/tsc/pkg/fourslash/tests/formatMultilineTypesWithMapped_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatMultilineTypesWithMapped(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatMultipleFunctionArguments_test.go b/tsc/pkg/fourslash/tests/formatMultipleFunctionArguments_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formatMultipleFunctionArguments_test.go rename to tsc/pkg/fourslash/tests/formatMultipleFunctionArguments_test.go index a82cfc9c1b964..47dc2bfb130e1 100644 --- a/tsc/internal/fourslash/tests/formatMultipleFunctionArguments_test.go +++ b/tsc/pkg/fourslash/tests/formatMultipleFunctionArguments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatMultipleFunctionArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go b/tsc/pkg/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go rename to tsc/pkg/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go index cffae91ca6619..3e1bc3243568e 100644 --- a/tsc/internal/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go +++ b/tsc/pkg/fourslash/tests/formatNestedClassWithOpenBraceOnNewLines_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNestedClassWithOpenBraceOnNewLines(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go index 5c6d47b564b74..354477f6755b3 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceAfterTemplateHeadAndMiddle_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceAfterTemplateHeadAndMiddle(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go index 81ef1a53b4f54..cfc5ae38fce2e 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go index 0a1fe91ec14b6..3282db3f7abe1 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go index c568940afe846..a10fb9b2664ee 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go index 97cd8c2a14ef1..c34f6c5716642 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go index cca616391cdf0..d7981344746ce 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go index 249138b9d9967..2e729d718deb1 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go index 65b7e8b83e921..91d8f4f1cad43 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBeforeCloseBrace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBeforeCloseBrace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go b/tsc/pkg/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go rename to tsc/pkg/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go index 5e8326b956fb6..347ad1180e8ad 100644 --- a/tsc/internal/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go +++ b/tsc/pkg/fourslash/tests/formatNoSpaceBetweenClosingParenAndTemplateString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatNoSpaceBetweenClosingParenAndTemplateString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go b/tsc/pkg/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go rename to tsc/pkg/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go index 27f6bb5b0c089..e6688003f0ccc 100644 --- a/tsc/internal/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go +++ b/tsc/pkg/fourslash/tests/formatObjectBindingPattern_restElementWithPropertyName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatObjectBindingPattern_restElementWithPropertyName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatObjectBindingPattern_test.go b/tsc/pkg/fourslash/tests/formatObjectBindingPattern_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatObjectBindingPattern_test.go rename to tsc/pkg/fourslash/tests/formatObjectBindingPattern_test.go index df16c0391a530..be8ec9dcded84 100644 --- a/tsc/internal/fourslash/tests/formatObjectBindingPattern_test.go +++ b/tsc/pkg/fourslash/tests/formatObjectBindingPattern_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatObjectBindingPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatOnEnterFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/formatOnEnterFunctionDeclaration_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatOnEnterFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/formatOnEnterFunctionDeclaration_test.go index 774314d635db2..9f826b58987db 100644 --- a/tsc/internal/fourslash/tests/formatOnEnterFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/formatOnEnterFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatOnEnterFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatOnEnterInComment_test.go b/tsc/pkg/fourslash/tests/formatOnEnterInComment_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatOnEnterInComment_test.go rename to tsc/pkg/fourslash/tests/formatOnEnterInComment_test.go index 24683e023f049..6c3b940987b9a 100644 --- a/tsc/internal/fourslash/tests/formatOnEnterInComment_test.go +++ b/tsc/pkg/fourslash/tests/formatOnEnterInComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatOnEnterInComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go b/tsc/pkg/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go rename to tsc/pkg/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go index f6c9a2713b4c4..e629b13605bea 100644 --- a/tsc/internal/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go +++ b/tsc/pkg/fourslash/tests/formatOnEnterOpenBraceAddNewLine_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatOnEnterOpenBraceAddNewLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go b/tsc/pkg/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go similarity index 75% rename from tsc/internal/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go rename to tsc/pkg/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go index de4f5ee97647e..fc22e624dd175 100644 --- a/tsc/internal/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go +++ b/tsc/pkg/fourslash/tests/formatOnOpenCurlyBraceRemoveNewLine_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatOnOpenCurlyBraceRemoveNewLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatOnSemiColonAfterBreak_test.go b/tsc/pkg/fourslash/tests/formatOnSemiColonAfterBreak_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatOnSemiColonAfterBreak_test.go rename to tsc/pkg/fourslash/tests/formatOnSemiColonAfterBreak_test.go index 0cc5484a84ec0..57c7caa4d1068 100644 --- a/tsc/internal/fourslash/tests/formatOnSemiColonAfterBreak_test.go +++ b/tsc/pkg/fourslash/tests/formatOnSemiColonAfterBreak_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatOnSemiColonAfterBreak(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatParameter_test.go b/tsc/pkg/fourslash/tests/formatParameter_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formatParameter_test.go rename to tsc/pkg/fourslash/tests/formatParameter_test.go index 49829693d186a..bb0bd80cd3b4c 100644 --- a/tsc/internal/fourslash/tests/formatParameter_test.go +++ b/tsc/pkg/fourslash/tests/formatParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go b/tsc/pkg/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go rename to tsc/pkg/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go index a5e8d7c8e294a..a2731185be8c5 100644 --- a/tsc/internal/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go +++ b/tsc/pkg/fourslash/tests/formatRangeEndingAfterCommaOfCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatRangeEndingAfterCommaOfCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go b/tsc/pkg/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go rename to tsc/pkg/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go index a26415fb38f01..b338b0bad8c56 100644 --- a/tsc/internal/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go +++ b/tsc/pkg/fourslash/tests/formatRemoveNewLineAfterOpenBrace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatRemoveNewLineAfterOpenBrace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go b/tsc/pkg/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go rename to tsc/pkg/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go index 77fdc1279c88a..95e737e6da544 100644 --- a/tsc/internal/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go +++ b/tsc/pkg/fourslash/tests/formatRemoveSpaceBetweenDotDotDotAndTypeName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatRemoveSpaceBetweenDotDotDotAndTypeName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSatisfiesExpression_test.go b/tsc/pkg/fourslash/tests/formatSatisfiesExpression_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatSatisfiesExpression_test.go rename to tsc/pkg/fourslash/tests/formatSatisfiesExpression_test.go index 7789f0e9bcb4a..c336e53c36303 100644 --- a/tsc/internal/fourslash/tests/formatSatisfiesExpression_test.go +++ b/tsc/pkg/fourslash/tests/formatSatisfiesExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSatisfiesExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go b/tsc/pkg/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go rename to tsc/pkg/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go index a5d5be6a74be6..792e19037a1d0 100644 --- a/tsc/internal/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionAfterTemplateLiteral1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionAfterTemplateLiteral1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionDocCommentInBlock_test.go b/tsc/pkg/fourslash/tests/formatSelectionDocCommentInBlock_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formatSelectionDocCommentInBlock_test.go rename to tsc/pkg/fourslash/tests/formatSelectionDocCommentInBlock_test.go index 6c9358d226cc8..50e806be2cfd8 100644 --- a/tsc/internal/fourslash/tests/formatSelectionDocCommentInBlock_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionDocCommentInBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionDocCommentInBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionEditAtEndOfRange_test.go b/tsc/pkg/fourslash/tests/formatSelectionEditAtEndOfRange_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formatSelectionEditAtEndOfRange_test.go rename to tsc/pkg/fourslash/tests/formatSelectionEditAtEndOfRange_test.go index 9bb0d2ab04e56..5359449537891 100644 --- a/tsc/internal/fourslash/tests/formatSelectionEditAtEndOfRange_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionEditAtEndOfRange_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionEditAtEndOfRange(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go b/tsc/pkg/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go rename to tsc/pkg/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go index 1967ce32ea7e1..55b8326d958a5 100644 --- a/tsc/internal/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionInJSDocTypeLiteralNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionInJSDocTypeLiteralNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go b/tsc/pkg/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go rename to tsc/pkg/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go index 544bb4b7b4e69..7bc31187d95ed 100644 --- a/tsc/internal/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionJsxWithBinaryExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionJsxWithBinaryExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go b/tsc/pkg/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go similarity index 76% rename from tsc/internal/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go rename to tsc/pkg/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go index 33fe50f89bf38..d2bcde469c5d6 100644 --- a/tsc/internal/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionPreserveTrailingWhitespace_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionPreserveTrailingWhitespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionSingleProperty_test.go b/tsc/pkg/fourslash/tests/formatSelectionSingleProperty_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatSelectionSingleProperty_test.go rename to tsc/pkg/fourslash/tests/formatSelectionSingleProperty_test.go index b129d43d0c9b4..2a222aebcb519 100644 --- a/tsc/internal/fourslash/tests/formatSelectionSingleProperty_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionSingleProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionSingleProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go b/tsc/pkg/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go rename to tsc/pkg/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go index a39711f83ae36..12f7d0d8ca5d6 100644 --- a/tsc/internal/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionUnterminatedBacktickInJSDocNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionUnterminatedBacktickInJSDocNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia2_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia2_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia2_test.go index dc41c07ea037a..e8d162b24486f 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia2_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia3_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia3_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia3_test.go index 9cbbb8d69e537..9f8115d17205b 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia3_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia4_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia4_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia4_test.go index 8e0b5bc6192be..187307f93aa0c 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia4_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia5_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia5_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia5_test.go index 6d0fa42532866..5a5a6e37992b5 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia5_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia6_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia6_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia6_test.go index 65611a759a4ba..a7a416f247612 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia6_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia7_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia7_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia7_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia7_test.go index 93a7d3c255405..2ae867e41295c 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia7_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia8_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia8_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia8_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia8_test.go index 7853a83ac01f6..eb95fd33dba83 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia8_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSelectionWithTrivia_test.go b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatSelectionWithTrivia_test.go rename to tsc/pkg/fourslash/tests/formatSelectionWithTrivia_test.go index 3e297924bb886..fdcaa0bf1d81d 100644 --- a/tsc/internal/fourslash/tests/formatSelectionWithTrivia_test.go +++ b/tsc/pkg/fourslash/tests/formatSelectionWithTrivia_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSelectionWithTrivia(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSimulatingScriptBlocks_test.go b/tsc/pkg/fourslash/tests/formatSimulatingScriptBlocks_test.go similarity index 92% rename from tsc/internal/fourslash/tests/formatSimulatingScriptBlocks_test.go rename to tsc/pkg/fourslash/tests/formatSimulatingScriptBlocks_test.go index 3475de567c340..47615b26dc102 100644 --- a/tsc/internal/fourslash/tests/formatSimulatingScriptBlocks_test.go +++ b/tsc/pkg/fourslash/tests/formatSimulatingScriptBlocks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSimulatingScriptBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSpaceAfterImplementsExtends_test.go b/tsc/pkg/fourslash/tests/formatSpaceAfterImplementsExtends_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatSpaceAfterImplementsExtends_test.go rename to tsc/pkg/fourslash/tests/formatSpaceAfterImplementsExtends_test.go index 38fcdd1e0080e..d167f652b23cb 100644 --- a/tsc/internal/fourslash/tests/formatSpaceAfterImplementsExtends_test.go +++ b/tsc/pkg/fourslash/tests/formatSpaceAfterImplementsExtends_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSpaceAfterImplementsExtends(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go b/tsc/pkg/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go rename to tsc/pkg/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go index f579c8215b003..da82eeb03e28b 100644 --- a/tsc/internal/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go +++ b/tsc/pkg/fourslash/tests/formatSpaceAfterTemplateHeadAndMiddle_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSpaceAfterTemplateHeadAndMiddle(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go b/tsc/pkg/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go rename to tsc/pkg/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go index 1e8867ec45e1b..5d11da016c57b 100644 --- a/tsc/internal/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go +++ b/tsc/pkg/fourslash/tests/formatSpaceBetweenFunctionAndArrayIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatSpaceBetweenFunctionAndArrayIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTSXWithInlineComment_test.go b/tsc/pkg/fourslash/tests/formatTSXWithInlineComment_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatTSXWithInlineComment_test.go rename to tsc/pkg/fourslash/tests/formatTSXWithInlineComment_test.go index 63e4545b15dae..c41c15e2dfc63 100644 --- a/tsc/internal/fourslash/tests/formatTSXWithInlineComment_test.go +++ b/tsc/pkg/fourslash/tests/formatTSXWithInlineComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTSXWithInlineComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTemplateStringOnPaste_test.go b/tsc/pkg/fourslash/tests/formatTemplateStringOnPaste_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatTemplateStringOnPaste_test.go rename to tsc/pkg/fourslash/tests/formatTemplateStringOnPaste_test.go index 369ada0de1460..f7c16af3b9c76 100644 --- a/tsc/internal/fourslash/tests/formatTemplateStringOnPaste_test.go +++ b/tsc/pkg/fourslash/tests/formatTemplateStringOnPaste_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTemplateStringOnPaste(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTrimRemainingRange_test.go b/tsc/pkg/fourslash/tests/formatTrimRemainingRange_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatTrimRemainingRange_test.go rename to tsc/pkg/fourslash/tests/formatTrimRemainingRange_test.go index f2334b495381e..a04560209d9ab 100644 --- a/tsc/internal/fourslash/tests/formatTrimRemainingRange_test.go +++ b/tsc/pkg/fourslash/tests/formatTrimRemainingRange_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTrimRemainingRange(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTryCatch_test.go b/tsc/pkg/fourslash/tests/formatTryCatch_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formatTryCatch_test.go rename to tsc/pkg/fourslash/tests/formatTryCatch_test.go index 3531c65bd2c43..963213ff60aed 100644 --- a/tsc/internal/fourslash/tests/formatTryCatch_test.go +++ b/tsc/pkg/fourslash/tests/formatTryCatch_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTryCatch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTryFinally_test.go b/tsc/pkg/fourslash/tests/formatTryFinally_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatTryFinally_test.go rename to tsc/pkg/fourslash/tests/formatTryFinally_test.go index a04b1330640cc..66f604b4d67a9 100644 --- a/tsc/internal/fourslash/tests/formatTryFinally_test.go +++ b/tsc/pkg/fourslash/tests/formatTryFinally_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTryFinally(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTsxClosingAfterJsxText_test.go b/tsc/pkg/fourslash/tests/formatTsxClosingAfterJsxText_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatTsxClosingAfterJsxText_test.go rename to tsc/pkg/fourslash/tests/formatTsxClosingAfterJsxText_test.go index ad3f79179edd4..30a4fd0800673 100644 --- a/tsc/internal/fourslash/tests/formatTsxClosingAfterJsxText_test.go +++ b/tsc/pkg/fourslash/tests/formatTsxClosingAfterJsxText_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTsxClosingAfterJsxText(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTsxMultilineAttributeString_test.go b/tsc/pkg/fourslash/tests/formatTsxMultilineAttributeString_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatTsxMultilineAttributeString_test.go rename to tsc/pkg/fourslash/tests/formatTsxMultilineAttributeString_test.go index 5f9a35f089982..31b2cd1939832 100644 --- a/tsc/internal/fourslash/tests/formatTsxMultilineAttributeString_test.go +++ b/tsc/pkg/fourslash/tests/formatTsxMultilineAttributeString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTsxMultilineAttributeString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTsx_test.go b/tsc/pkg/fourslash/tests/formatTsx_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatTsx_test.go rename to tsc/pkg/fourslash/tests/formatTsx_test.go index ce6211dfdd414..2fc02fa25b361 100644 --- a/tsc/internal/fourslash/tests/formatTsx_test.go +++ b/tsc/pkg/fourslash/tests/formatTsx_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTypeAnnotation1_test.go b/tsc/pkg/fourslash/tests/formatTypeAnnotation1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formatTypeAnnotation1_test.go rename to tsc/pkg/fourslash/tests/formatTypeAnnotation1_test.go index c6962763d46ad..0fc5cf642a04e 100644 --- a/tsc/internal/fourslash/tests/formatTypeAnnotation1_test.go +++ b/tsc/pkg/fourslash/tests/formatTypeAnnotation1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTypeAnnotation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTypeAnnotation2_test.go b/tsc/pkg/fourslash/tests/formatTypeAnnotation2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formatTypeAnnotation2_test.go rename to tsc/pkg/fourslash/tests/formatTypeAnnotation2_test.go index f7eb1b7b25b86..da005c8d5dbdb 100644 --- a/tsc/internal/fourslash/tests/formatTypeAnnotation2_test.go +++ b/tsc/pkg/fourslash/tests/formatTypeAnnotation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTypeAnnotation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTypeArgumentOnNewLine_test.go b/tsc/pkg/fourslash/tests/formatTypeArgumentOnNewLine_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formatTypeArgumentOnNewLine_test.go rename to tsc/pkg/fourslash/tests/formatTypeArgumentOnNewLine_test.go index 7f2943613c658..3aaa6815224f1 100644 --- a/tsc/internal/fourslash/tests/formatTypeArgumentOnNewLine_test.go +++ b/tsc/pkg/fourslash/tests/formatTypeArgumentOnNewLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTypeArgumentOnNewLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatTypeParameters_test.go b/tsc/pkg/fourslash/tests/formatTypeParameters_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatTypeParameters_test.go rename to tsc/pkg/fourslash/tests/formatTypeParameters_test.go index 6f02ee0f7dce1..b6fa02e114eaa 100644 --- a/tsc/internal/fourslash/tests/formatTypeParameters_test.go +++ b/tsc/pkg/fourslash/tests/formatTypeParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatTypeParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatV8Directive_test.go b/tsc/pkg/fourslash/tests/formatV8Directive_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formatV8Directive_test.go rename to tsc/pkg/fourslash/tests/formatV8Directive_test.go index d62aec178241b..53f514e7d882f 100644 --- a/tsc/internal/fourslash/tests/formatV8Directive_test.go +++ b/tsc/pkg/fourslash/tests/formatV8Directive_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatV8Directive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatVariableDeclarationList_test.go b/tsc/pkg/fourslash/tests/formatVariableDeclarationList_test.go similarity index 94% rename from tsc/internal/fourslash/tests/formatVariableDeclarationList_test.go rename to tsc/pkg/fourslash/tests/formatVariableDeclarationList_test.go index fb7839612006a..8c8688c82ba82 100644 --- a/tsc/internal/fourslash/tests/formatVariableDeclarationList_test.go +++ b/tsc/pkg/fourslash/tests/formatVariableDeclarationList_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatVariableDeclarationList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatWithStatement_test.go b/tsc/pkg/fourslash/tests/formatWithStatement_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formatWithStatement_test.go rename to tsc/pkg/fourslash/tests/formatWithStatement_test.go index 581843b0f1afb..818c9ebc754ac 100644 --- a/tsc/internal/fourslash/tests/formatWithStatement_test.go +++ b/tsc/pkg/fourslash/tests/formatWithStatement_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatWithStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formatonkey01_test.go b/tsc/pkg/fourslash/tests/formatonkey01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formatonkey01_test.go rename to tsc/pkg/fourslash/tests/formatonkey01_test.go index b8f7db2ad1cb3..21b2d588b7c99 100644 --- a/tsc/internal/fourslash/tests/formatonkey01_test.go +++ b/tsc/pkg/fourslash/tests/formatonkey01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormatonkey01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingAfterChainedFatArrow_test.go b/tsc/pkg/fourslash/tests/formattingAfterChainedFatArrow_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingAfterChainedFatArrow_test.go rename to tsc/pkg/fourslash/tests/formattingAfterChainedFatArrow_test.go index 203c172909e7f..c8a9c47795795 100644 --- a/tsc/internal/fourslash/tests/formattingAfterChainedFatArrow_test.go +++ b/tsc/pkg/fourslash/tests/formattingAfterChainedFatArrow_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingAfterChainedFatArrow(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingAfterMultiLineIfCondition_test.go b/tsc/pkg/fourslash/tests/formattingAfterMultiLineIfCondition_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingAfterMultiLineIfCondition_test.go rename to tsc/pkg/fourslash/tests/formattingAfterMultiLineIfCondition_test.go index 9ab66ad479b3c..bcfac64a3fda2 100644 --- a/tsc/internal/fourslash/tests/formattingAfterMultiLineIfCondition_test.go +++ b/tsc/pkg/fourslash/tests/formattingAfterMultiLineIfCondition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingAfterMultiLineIfCondition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingAfterMultiLineString_test.go b/tsc/pkg/fourslash/tests/formattingAfterMultiLineString_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formattingAfterMultiLineString_test.go rename to tsc/pkg/fourslash/tests/formattingAfterMultiLineString_test.go index 53823dcaf1246..6cea75de46397 100644 --- a/tsc/internal/fourslash/tests/formattingAfterMultiLineString_test.go +++ b/tsc/pkg/fourslash/tests/formattingAfterMultiLineString_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingAfterMultiLineString(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingArrayLiteral_test.go b/tsc/pkg/fourslash/tests/formattingArrayLiteral_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingArrayLiteral_test.go rename to tsc/pkg/fourslash/tests/formattingArrayLiteral_test.go index 6dc69c2e3a41a..d84c64bace221 100644 --- a/tsc/internal/fourslash/tests/formattingArrayLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formattingArrayLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingArrayLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingAwait_test.go b/tsc/pkg/fourslash/tests/formattingAwait_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingAwait_test.go rename to tsc/pkg/fourslash/tests/formattingAwait_test.go index f0f58d60b5eaf..33efbc8173bb4 100644 --- a/tsc/internal/fourslash/tests/formattingAwait_test.go +++ b/tsc/pkg/fourslash/tests/formattingAwait_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingAwait(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingBlockInCaseClauses_test.go b/tsc/pkg/fourslash/tests/formattingBlockInCaseClauses_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingBlockInCaseClauses_test.go rename to tsc/pkg/fourslash/tests/formattingBlockInCaseClauses_test.go index 0eb711aa84f6a..71a2c5d6faeb6 100644 --- a/tsc/internal/fourslash/tests/formattingBlockInCaseClauses_test.go +++ b/tsc/pkg/fourslash/tests/formattingBlockInCaseClauses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingBlockInCaseClauses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingChainingMethods_test.go b/tsc/pkg/fourslash/tests/formattingChainingMethods_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formattingChainingMethods_test.go rename to tsc/pkg/fourslash/tests/formattingChainingMethods_test.go index 955f30175a09b..b7ef3d73035cc 100644 --- a/tsc/internal/fourslash/tests/formattingChainingMethods_test.go +++ b/tsc/pkg/fourslash/tests/formattingChainingMethods_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingChainingMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingComma_test.go b/tsc/pkg/fourslash/tests/formattingComma_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formattingComma_test.go rename to tsc/pkg/fourslash/tests/formattingComma_test.go index ed2c2eaa31265..6595ec241908f 100644 --- a/tsc/internal/fourslash/tests/formattingComma_test.go +++ b/tsc/pkg/fourslash/tests/formattingComma_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingComma(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingCommentsBeforeErrors_test.go b/tsc/pkg/fourslash/tests/formattingCommentsBeforeErrors_test.go similarity index 83% rename from tsc/internal/fourslash/tests/formattingCommentsBeforeErrors_test.go rename to tsc/pkg/fourslash/tests/formattingCommentsBeforeErrors_test.go index d622abe9bbe05..d8f52ffb58c95 100644 --- a/tsc/internal/fourslash/tests/formattingCommentsBeforeErrors_test.go +++ b/tsc/pkg/fourslash/tests/formattingCommentsBeforeErrors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingCommentsBeforeErrors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingConditionalOperator_test.go b/tsc/pkg/fourslash/tests/formattingConditionalOperator_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingConditionalOperator_test.go rename to tsc/pkg/fourslash/tests/formattingConditionalOperator_test.go index e6f21a2586555..a377b39b315ba 100644 --- a/tsc/internal/fourslash/tests/formattingConditionalOperator_test.go +++ b/tsc/pkg/fourslash/tests/formattingConditionalOperator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingConditionalOperator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingConditionalTypes_test.go b/tsc/pkg/fourslash/tests/formattingConditionalTypes_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formattingConditionalTypes_test.go rename to tsc/pkg/fourslash/tests/formattingConditionalTypes_test.go index e68b0c3a089b7..a5f7d55ff83ff 100644 --- a/tsc/internal/fourslash/tests/formattingConditionalTypes_test.go +++ b/tsc/pkg/fourslash/tests/formattingConditionalTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingConditionalTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingCrash_test.go b/tsc/pkg/fourslash/tests/formattingCrash_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingCrash_test.go rename to tsc/pkg/fourslash/tests/formattingCrash_test.go index 311720d817459..1358eb30e67e4 100644 --- a/tsc/internal/fourslash/tests/formattingCrash_test.go +++ b/tsc/pkg/fourslash/tests/formattingCrash_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingDecorators_test.go b/tsc/pkg/fourslash/tests/formattingDecorators_test.go similarity index 97% rename from tsc/internal/fourslash/tests/formattingDecorators_test.go rename to tsc/pkg/fourslash/tests/formattingDecorators_test.go index f7e3839fa08d4..af81108b46676 100644 --- a/tsc/internal/fourslash/tests/formattingDecorators_test.go +++ b/tsc/pkg/fourslash/tests/formattingDecorators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingDecorators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingDoubleLessThan_test.go b/tsc/pkg/fourslash/tests/formattingDoubleLessThan_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formattingDoubleLessThan_test.go rename to tsc/pkg/fourslash/tests/formattingDoubleLessThan_test.go index b5af59688852b..705cbc43e3b94 100644 --- a/tsc/internal/fourslash/tests/formattingDoubleLessThan_test.go +++ b/tsc/pkg/fourslash/tests/formattingDoubleLessThan_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingDoubleLessThan(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingElseInsideAFunction_test.go b/tsc/pkg/fourslash/tests/formattingElseInsideAFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingElseInsideAFunction_test.go rename to tsc/pkg/fourslash/tests/formattingElseInsideAFunction_test.go index c6302c8be96ac..77afca864063f 100644 --- a/tsc/internal/fourslash/tests/formattingElseInsideAFunction_test.go +++ b/tsc/pkg/fourslash/tests/formattingElseInsideAFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingElseInsideAFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go b/tsc/pkg/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go rename to tsc/pkg/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go index a2c4cfad6ffd8..40f97f211e601 100644 --- a/tsc/internal/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/formattingEqualsBeforeBracketInTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingEqualsBeforeBracketInTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingExpressionsInIfCondition_test.go b/tsc/pkg/fourslash/tests/formattingExpressionsInIfCondition_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingExpressionsInIfCondition_test.go rename to tsc/pkg/fourslash/tests/formattingExpressionsInIfCondition_test.go index 7a482ea558b43..bfdb888b81fef 100644 --- a/tsc/internal/fourslash/tests/formattingExpressionsInIfCondition_test.go +++ b/tsc/pkg/fourslash/tests/formattingExpressionsInIfCondition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingExpressionsInIfCondition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingFatArrowFunctions_test.go b/tsc/pkg/fourslash/tests/formattingFatArrowFunctions_test.go similarity index 99% rename from tsc/internal/fourslash/tests/formattingFatArrowFunctions_test.go rename to tsc/pkg/fourslash/tests/formattingFatArrowFunctions_test.go index 76e63ab102abc..0ce4bc2ad24e6 100644 --- a/tsc/internal/fourslash/tests/formattingFatArrowFunctions_test.go +++ b/tsc/pkg/fourslash/tests/formattingFatArrowFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingFatArrowFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingForIn_test.go b/tsc/pkg/fourslash/tests/formattingForIn_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingForIn_test.go rename to tsc/pkg/fourslash/tests/formattingForIn_test.go index b61448c50d127..e450b9363fdf5 100644 --- a/tsc/internal/fourslash/tests/formattingForIn_test.go +++ b/tsc/pkg/fourslash/tests/formattingForIn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingForIn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingForLoopSemicolons_test.go b/tsc/pkg/fourslash/tests/formattingForLoopSemicolons_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formattingForLoopSemicolons_test.go rename to tsc/pkg/fourslash/tests/formattingForLoopSemicolons_test.go index 2e1f4d49b6185..e5cd12491e126 100644 --- a/tsc/internal/fourslash/tests/formattingForLoopSemicolons_test.go +++ b/tsc/pkg/fourslash/tests/formattingForLoopSemicolons_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingForLoopSemicolons(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingForOfKeyword_test.go b/tsc/pkg/fourslash/tests/formattingForOfKeyword_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingForOfKeyword_test.go rename to tsc/pkg/fourslash/tests/formattingForOfKeyword_test.go index da6a5095f5c59..9246668fb9e58 100644 --- a/tsc/internal/fourslash/tests/formattingForOfKeyword_test.go +++ b/tsc/pkg/fourslash/tests/formattingForOfKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingForOfKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingGlobalAugmentation1_test.go b/tsc/pkg/fourslash/tests/formattingGlobalAugmentation1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingGlobalAugmentation1_test.go rename to tsc/pkg/fourslash/tests/formattingGlobalAugmentation1_test.go index a4927f516f347..c8ea9609c7a77 100644 --- a/tsc/internal/fourslash/tests/formattingGlobalAugmentation1_test.go +++ b/tsc/pkg/fourslash/tests/formattingGlobalAugmentation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingGlobalAugmentation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingGlobalAugmentation2_test.go b/tsc/pkg/fourslash/tests/formattingGlobalAugmentation2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingGlobalAugmentation2_test.go rename to tsc/pkg/fourslash/tests/formattingGlobalAugmentation2_test.go index 327ba21fbc9be..a33c2d9ad8101 100644 --- a/tsc/internal/fourslash/tests/formattingGlobalAugmentation2_test.go +++ b/tsc/pkg/fourslash/tests/formattingGlobalAugmentation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingGlobalAugmentation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingHexLiteral_test.go b/tsc/pkg/fourslash/tests/formattingHexLiteral_test.go similarity index 73% rename from tsc/internal/fourslash/tests/formattingHexLiteral_test.go rename to tsc/pkg/fourslash/tests/formattingHexLiteral_test.go index 135c56f81ce11..8778d90e4c654 100644 --- a/tsc/internal/fourslash/tests/formattingHexLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formattingHexLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingHexLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingIfInElseBlock_test.go b/tsc/pkg/fourslash/tests/formattingIfInElseBlock_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formattingIfInElseBlock_test.go rename to tsc/pkg/fourslash/tests/formattingIfInElseBlock_test.go index 42f845502fa3f..d37d751f98436 100644 --- a/tsc/internal/fourslash/tests/formattingIfInElseBlock_test.go +++ b/tsc/pkg/fourslash/tests/formattingIfInElseBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingIfInElseBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingIllegalImportClause_test.go b/tsc/pkg/fourslash/tests/formattingIllegalImportClause_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingIllegalImportClause_test.go rename to tsc/pkg/fourslash/tests/formattingIllegalImportClause_test.go index c53624fad552d..5e7f6c7e2c078 100644 --- a/tsc/internal/fourslash/tests/formattingIllegalImportClause_test.go +++ b/tsc/pkg/fourslash/tests/formattingIllegalImportClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingIllegalImportClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInComment_test.go b/tsc/pkg/fourslash/tests/formattingInComment_test.go similarity index 83% rename from tsc/internal/fourslash/tests/formattingInComment_test.go rename to tsc/pkg/fourslash/tests/formattingInComment_test.go index d85509dcf2ef7..d9170c8127817 100644 --- a/tsc/internal/fourslash/tests/formattingInComment_test.go +++ b/tsc/pkg/fourslash/tests/formattingInComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInDestructuring1_test.go b/tsc/pkg/fourslash/tests/formattingInDestructuring1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingInDestructuring1_test.go rename to tsc/pkg/fourslash/tests/formattingInDestructuring1_test.go index 91ce1865fd5f3..98672c89a7fc3 100644 --- a/tsc/internal/fourslash/tests/formattingInDestructuring1_test.go +++ b/tsc/pkg/fourslash/tests/formattingInDestructuring1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInDestructuring1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInDestructuring2_test.go b/tsc/pkg/fourslash/tests/formattingInDestructuring2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingInDestructuring2_test.go rename to tsc/pkg/fourslash/tests/formattingInDestructuring2_test.go index 2ee30957d100b..a348826b248b6 100644 --- a/tsc/internal/fourslash/tests/formattingInDestructuring2_test.go +++ b/tsc/pkg/fourslash/tests/formattingInDestructuring2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInDestructuring2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInDestructuring3_test.go b/tsc/pkg/fourslash/tests/formattingInDestructuring3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/formattingInDestructuring3_test.go rename to tsc/pkg/fourslash/tests/formattingInDestructuring3_test.go index 44b64fdcbcb8f..6f319640d3e7d 100644 --- a/tsc/internal/fourslash/tests/formattingInDestructuring3_test.go +++ b/tsc/pkg/fourslash/tests/formattingInDestructuring3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInDestructuring3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInDestructuring4_test.go b/tsc/pkg/fourslash/tests/formattingInDestructuring4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingInDestructuring4_test.go rename to tsc/pkg/fourslash/tests/formattingInDestructuring4_test.go index 55bffb2b69241..8272b835a5e76 100644 --- a/tsc/internal/fourslash/tests/formattingInDestructuring4_test.go +++ b/tsc/pkg/fourslash/tests/formattingInDestructuring4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInDestructuring4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInDestructuring5_test.go b/tsc/pkg/fourslash/tests/formattingInDestructuring5_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formattingInDestructuring5_test.go rename to tsc/pkg/fourslash/tests/formattingInDestructuring5_test.go index e549bf239b4fc..09c1df5e533cd 100644 --- a/tsc/internal/fourslash/tests/formattingInDestructuring5_test.go +++ b/tsc/pkg/fourslash/tests/formattingInDestructuring5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInDestructuring5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInExpressionsInTsx_test.go b/tsc/pkg/fourslash/tests/formattingInExpressionsInTsx_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingInExpressionsInTsx_test.go rename to tsc/pkg/fourslash/tests/formattingInExpressionsInTsx_test.go index 40074cbd890c5..624bfa082b6ad 100644 --- a/tsc/internal/fourslash/tests/formattingInExpressionsInTsx_test.go +++ b/tsc/pkg/fourslash/tests/formattingInExpressionsInTsx_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInExpressionsInTsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingInMultilineComments_test.go b/tsc/pkg/fourslash/tests/formattingInMultilineComments_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingInMultilineComments_test.go rename to tsc/pkg/fourslash/tests/formattingInMultilineComments_test.go index 918b72a1737eb..eba97e4feaa6c 100644 --- a/tsc/internal/fourslash/tests/formattingInMultilineComments_test.go +++ b/tsc/pkg/fourslash/tests/formattingInMultilineComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingInMultilineComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingJsxTexts1_test.go b/tsc/pkg/fourslash/tests/formattingJsxTexts1_test.go similarity index 94% rename from tsc/internal/fourslash/tests/formattingJsxTexts1_test.go rename to tsc/pkg/fourslash/tests/formattingJsxTexts1_test.go index f033dd2c7fe1c..39e3df3d69222 100644 --- a/tsc/internal/fourslash/tests/formattingJsxTexts1_test.go +++ b/tsc/pkg/fourslash/tests/formattingJsxTexts1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingJsxTexts1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingJsxTexts2_test.go b/tsc/pkg/fourslash/tests/formattingJsxTexts2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formattingJsxTexts2_test.go rename to tsc/pkg/fourslash/tests/formattingJsxTexts2_test.go index d4b16766557a4..cb6bb1fab4b4a 100644 --- a/tsc/internal/fourslash/tests/formattingJsxTexts2_test.go +++ b/tsc/pkg/fourslash/tests/formattingJsxTexts2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingJsxTexts2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingJsxTexts3_test.go b/tsc/pkg/fourslash/tests/formattingJsxTexts3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingJsxTexts3_test.go rename to tsc/pkg/fourslash/tests/formattingJsxTexts3_test.go index 6312275a82018..b773afcbbe865 100644 --- a/tsc/internal/fourslash/tests/formattingJsxTexts3_test.go +++ b/tsc/pkg/fourslash/tests/formattingJsxTexts3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingJsxTexts3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingJsxTexts4_test.go b/tsc/pkg/fourslash/tests/formattingJsxTexts4_test.go similarity index 83% rename from tsc/internal/fourslash/tests/formattingJsxTexts4_test.go rename to tsc/pkg/fourslash/tests/formattingJsxTexts4_test.go index 7b33586080df4..ff72218db5987 100644 --- a/tsc/internal/fourslash/tests/formattingJsxTexts4_test.go +++ b/tsc/pkg/fourslash/tests/formattingJsxTexts4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingJsxTexts4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingKeywordAsIdentifier_test.go b/tsc/pkg/fourslash/tests/formattingKeywordAsIdentifier_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingKeywordAsIdentifier_test.go rename to tsc/pkg/fourslash/tests/formattingKeywordAsIdentifier_test.go index 3da3f77a8afcd..08721a4396529 100644 --- a/tsc/internal/fourslash/tests/formattingKeywordAsIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/formattingKeywordAsIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingKeywordAsIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingMappedType_test.go b/tsc/pkg/fourslash/tests/formattingMappedType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingMappedType_test.go rename to tsc/pkg/fourslash/tests/formattingMappedType_test.go index 3a24257a2af4a..6e8f502bd73e2 100644 --- a/tsc/internal/fourslash/tests/formattingMappedType_test.go +++ b/tsc/pkg/fourslash/tests/formattingMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go b/tsc/pkg/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go rename to tsc/pkg/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go index 18ce87bf55b90..5fa0f77b6ca03 100644 --- a/tsc/internal/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go +++ b/tsc/pkg/fourslash/tests/formattingMultilineCommentsWithTabs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingMultilineCommentsWithTabs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingMultilineTemplateLiterals_test.go b/tsc/pkg/fourslash/tests/formattingMultilineTemplateLiterals_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingMultilineTemplateLiterals_test.go rename to tsc/pkg/fourslash/tests/formattingMultilineTemplateLiterals_test.go index 6a39d6594f242..105154a5049db 100644 --- a/tsc/internal/fourslash/tests/formattingMultilineTemplateLiterals_test.go +++ b/tsc/pkg/fourslash/tests/formattingMultilineTemplateLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingMultilineTemplateLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingNestedScopes_test.go b/tsc/pkg/fourslash/tests/formattingNestedScopes_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formattingNestedScopes_test.go rename to tsc/pkg/fourslash/tests/formattingNestedScopes_test.go index a388dbea73fec..515102a43d7c0 100644 --- a/tsc/internal/fourslash/tests/formattingNestedScopes_test.go +++ b/tsc/pkg/fourslash/tests/formattingNestedScopes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingNestedScopes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingNonNullAssertionOperator_test.go b/tsc/pkg/fourslash/tests/formattingNonNullAssertionOperator_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingNonNullAssertionOperator_test.go rename to tsc/pkg/fourslash/tests/formattingNonNullAssertionOperator_test.go index 63477d040bbed..5d2d631da5e4e 100644 --- a/tsc/internal/fourslash/tests/formattingNonNullAssertionOperator_test.go +++ b/tsc/pkg/fourslash/tests/formattingNonNullAssertionOperator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingNonNullAssertionOperator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go rename to tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go index 8662c0e9cf993..fb2926cee93d3 100644 --- a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go +++ b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineAssignment_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingObjectLiteralOpenCurlyNewlineAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go rename to tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go index 2d729cb631caa..5010a65ce4c9c 100644 --- a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go +++ b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewlineTyping_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingObjectLiteralOpenCurlyNewlineTyping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go rename to tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go index fc58ee8c61401..d1ae06c968d20 100644 --- a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go +++ b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlyNewline_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingObjectLiteralOpenCurlyNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go rename to tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go index 2c1a695f59459..3e647158ead5e 100644 --- a/tsc/internal/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go +++ b/tsc/pkg/fourslash/tests/formattingObjectLiteralOpenCurlySingleLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingObjectLiteralOpenCurlySingleLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingObjectLiteral_test.go b/tsc/pkg/fourslash/tests/formattingObjectLiteral_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/formattingObjectLiteral_test.go index 40284c74d1c4f..5d9b3057ae6ae 100644 --- a/tsc/internal/fourslash/tests/formattingObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formattingObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOfChainedLambda_test.go b/tsc/pkg/fourslash/tests/formattingOfChainedLambda_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingOfChainedLambda_test.go rename to tsc/pkg/fourslash/tests/formattingOfChainedLambda_test.go index e1f773edc16b4..4366004d6112c 100644 --- a/tsc/internal/fourslash/tests/formattingOfChainedLambda_test.go +++ b/tsc/pkg/fourslash/tests/formattingOfChainedLambda_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOfChainedLambda(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOfExportDefault_test.go b/tsc/pkg/fourslash/tests/formattingOfExportDefault_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formattingOfExportDefault_test.go rename to tsc/pkg/fourslash/tests/formattingOfExportDefault_test.go index 7b957c6b5117e..94523e7f0da82 100644 --- a/tsc/internal/fourslash/tests/formattingOfExportDefault_test.go +++ b/tsc/pkg/fourslash/tests/formattingOfExportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOfExportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOfMultilineBlockConstructs_test.go b/tsc/pkg/fourslash/tests/formattingOfMultilineBlockConstructs_test.go similarity index 93% rename from tsc/internal/fourslash/tests/formattingOfMultilineBlockConstructs_test.go rename to tsc/pkg/fourslash/tests/formattingOfMultilineBlockConstructs_test.go index 7d3e810d1ff6b..944d52631241b 100644 --- a/tsc/internal/fourslash/tests/formattingOfMultilineBlockConstructs_test.go +++ b/tsc/pkg/fourslash/tests/formattingOfMultilineBlockConstructs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOfMultilineBlockConstructs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go b/tsc/pkg/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go similarity index 89% rename from tsc/internal/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go rename to tsc/pkg/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go index 6537001db6eca..b33b0945cbce2 100644 --- a/tsc/internal/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnChainedCallbacksAndPropertyAccesses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnChainedCallbacksAndPropertyAccesses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnClasses_test.go b/tsc/pkg/fourslash/tests/formattingOnClasses_test.go similarity index 99% rename from tsc/internal/fourslash/tests/formattingOnClasses_test.go rename to tsc/pkg/fourslash/tests/formattingOnClasses_test.go index 8a01cf8dbfcf3..a259449319e24 100644 --- a/tsc/internal/fourslash/tests/formattingOnClasses_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnClasses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnClasses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnCloseBrace_test.go b/tsc/pkg/fourslash/tests/formattingOnCloseBrace_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingOnCloseBrace_test.go rename to tsc/pkg/fourslash/tests/formattingOnCloseBrace_test.go index 884fb7f83a7d9..1511d4a8c91f1 100644 --- a/tsc/internal/fourslash/tests/formattingOnCloseBrace_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnCloseBrace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnCloseBrace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnClosingBracket_test.go b/tsc/pkg/fourslash/tests/formattingOnClosingBracket_test.go similarity index 94% rename from tsc/internal/fourslash/tests/formattingOnClosingBracket_test.go rename to tsc/pkg/fourslash/tests/formattingOnClosingBracket_test.go index bfcb0f24d0d24..84e0363a21a09 100644 --- a/tsc/internal/fourslash/tests/formattingOnClosingBracket_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnClosingBracket_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnClosingBracket(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnCommaOperator_test.go b/tsc/pkg/fourslash/tests/formattingOnCommaOperator_test.go similarity index 83% rename from tsc/internal/fourslash/tests/formattingOnCommaOperator_test.go rename to tsc/pkg/fourslash/tests/formattingOnCommaOperator_test.go index 2989b5b3453db..e9a15fdcc3627 100644 --- a/tsc/internal/fourslash/tests/formattingOnCommaOperator_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnCommaOperator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnCommaOperator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnConstructorSignature_test.go b/tsc/pkg/fourslash/tests/formattingOnConstructorSignature_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingOnConstructorSignature_test.go rename to tsc/pkg/fourslash/tests/formattingOnConstructorSignature_test.go index 15d1a49e48eb7..40ed683ec82c2 100644 --- a/tsc/internal/fourslash/tests/formattingOnConstructorSignature_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnConstructorSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnConstructorSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go b/tsc/pkg/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go similarity index 86% rename from tsc/internal/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go rename to tsc/pkg/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go index 7cc9595f41270..23344a3112ae8 100644 --- a/tsc/internal/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnDoWhileNoSemicolon_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnDoWhileNoSemicolon(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnDocumentReadyFunction_test.go b/tsc/pkg/fourslash/tests/formattingOnDocumentReadyFunction_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formattingOnDocumentReadyFunction_test.go rename to tsc/pkg/fourslash/tests/formattingOnDocumentReadyFunction_test.go index 570e9d18c00c8..11d7a791fb587 100644 --- a/tsc/internal/fourslash/tests/formattingOnDocumentReadyFunction_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnDocumentReadyFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnDocumentReadyFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go b/tsc/pkg/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go similarity index 89% rename from tsc/internal/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go rename to tsc/pkg/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go index 06b11a4ce6602..e8d63865fbf0c 100644 --- a/tsc/internal/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnEmptyInterfaceLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnEmptyInterfaceLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnEnterInComments_test.go b/tsc/pkg/fourslash/tests/formattingOnEnterInComments_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingOnEnterInComments_test.go rename to tsc/pkg/fourslash/tests/formattingOnEnterInComments_test.go index 81ada8d31f65e..4a4b8443b7a64 100644 --- a/tsc/internal/fourslash/tests/formattingOnEnterInComments_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnEnterInComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnEnterInComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnEnterInStrings_test.go b/tsc/pkg/fourslash/tests/formattingOnEnterInStrings_test.go similarity index 80% rename from tsc/internal/fourslash/tests/formattingOnEnterInStrings_test.go rename to tsc/pkg/fourslash/tests/formattingOnEnterInStrings_test.go index f63fbfdb9f39e..4df434ed36c83 100644 --- a/tsc/internal/fourslash/tests/formattingOnEnterInStrings_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnEnterInStrings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnEnterInStrings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnEnter_test.go b/tsc/pkg/fourslash/tests/formattingOnEnter_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingOnEnter_test.go rename to tsc/pkg/fourslash/tests/formattingOnEnter_test.go index f5851669fb0e0..813942ff095e1 100644 --- a/tsc/internal/fourslash/tests/formattingOnEnter_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnEnter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnEnter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnInterfaces_test.go b/tsc/pkg/fourslash/tests/formattingOnInterfaces_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingOnInterfaces_test.go rename to tsc/pkg/fourslash/tests/formattingOnInterfaces_test.go index c5345aed910af..7abbac28058db 100644 --- a/tsc/internal/fourslash/tests/formattingOnInterfaces_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnInterfaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnInterfaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnInvalidCodes_test.go b/tsc/pkg/fourslash/tests/formattingOnInvalidCodes_test.go similarity index 98% rename from tsc/internal/fourslash/tests/formattingOnInvalidCodes_test.go rename to tsc/pkg/fourslash/tests/formattingOnInvalidCodes_test.go index b5163cfeaef0a..618d325ffdeff 100644 --- a/tsc/internal/fourslash/tests/formattingOnInvalidCodes_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnInvalidCodes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnInvalidCodes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnModuleIndentation_test.go b/tsc/pkg/fourslash/tests/formattingOnModuleIndentation_test.go similarity index 84% rename from tsc/internal/fourslash/tests/formattingOnModuleIndentation_test.go rename to tsc/pkg/fourslash/tests/formattingOnModuleIndentation_test.go index d0bc139302349..46827f6085f8f 100644 --- a/tsc/internal/fourslash/tests/formattingOnModuleIndentation_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnModuleIndentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnModuleIndentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go b/tsc/pkg/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go similarity index 88% rename from tsc/internal/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go rename to tsc/pkg/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go index dd0adc5d9ca40..8c5dff108d7f5 100644 --- a/tsc/internal/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnNestedDoWhileByEnter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnNestedDoWhileByEnter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnNestedStatements_test.go b/tsc/pkg/fourslash/tests/formattingOnNestedStatements_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingOnNestedStatements_test.go rename to tsc/pkg/fourslash/tests/formattingOnNestedStatements_test.go index 81c221faad8c1..e238937b002d0 100644 --- a/tsc/internal/fourslash/tests/formattingOnNestedStatements_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnNestedStatements_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnNestedStatements(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnObjectLiteral_test.go b/tsc/pkg/fourslash/tests/formattingOnObjectLiteral_test.go similarity index 96% rename from tsc/internal/fourslash/tests/formattingOnObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/formattingOnObjectLiteral_test.go index 9715098adc81b..65715d5eab8ec 100644 --- a/tsc/internal/fourslash/tests/formattingOnObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go b/tsc/pkg/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go rename to tsc/pkg/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go index f01be495ff9be..c00d68fe06b4e 100644 --- a/tsc/internal/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnOpenBraceOfFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnOpenBraceOfFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnSemiColon_test.go b/tsc/pkg/fourslash/tests/formattingOnSemiColon_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingOnSemiColon_test.go rename to tsc/pkg/fourslash/tests/formattingOnSemiColon_test.go index ad74734603b89..c10ec6914729e 100644 --- a/tsc/internal/fourslash/tests/formattingOnSemiColon_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnSemiColon_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnSemiColon(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnSingleLineBlocks_test.go b/tsc/pkg/fourslash/tests/formattingOnSingleLineBlocks_test.go similarity index 77% rename from tsc/internal/fourslash/tests/formattingOnSingleLineBlocks_test.go rename to tsc/pkg/fourslash/tests/formattingOnSingleLineBlocks_test.go index 69fc642d08880..6e781531781a0 100644 --- a/tsc/internal/fourslash/tests/formattingOnSingleLineBlocks_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnSingleLineBlocks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnSingleLineBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go b/tsc/pkg/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go similarity index 97% rename from tsc/internal/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go rename to tsc/pkg/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go index 969999496ae35..d076b8f89e17a 100644 --- a/tsc/internal/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnStatementsWithNoSemicolon_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnStatementsWithNoSemicolon(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnTabAfterCloseCurly_test.go b/tsc/pkg/fourslash/tests/formattingOnTabAfterCloseCurly_test.go similarity index 90% rename from tsc/internal/fourslash/tests/formattingOnTabAfterCloseCurly_test.go rename to tsc/pkg/fourslash/tests/formattingOnTabAfterCloseCurly_test.go index f2fbefd90a08e..fc8b2aed8d52f 100644 --- a/tsc/internal/fourslash/tests/formattingOnTabAfterCloseCurly_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnTabAfterCloseCurly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnTabAfterCloseCurly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOnVariety_test.go b/tsc/pkg/fourslash/tests/formattingOnVariety_test.go similarity index 94% rename from tsc/internal/fourslash/tests/formattingOnVariety_test.go rename to tsc/pkg/fourslash/tests/formattingOnVariety_test.go index 4c6a58fd6eee3..825e9b3fa2d28 100644 --- a/tsc/internal/fourslash/tests/formattingOnVariety_test.go +++ b/tsc/pkg/fourslash/tests/formattingOnVariety_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOnVariety(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingOverrideKeyword_test.go b/tsc/pkg/fourslash/tests/formattingOverrideKeyword_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingOverrideKeyword_test.go rename to tsc/pkg/fourslash/tests/formattingOverrideKeyword_test.go index 1c0c741e66784..1124e88a4bffd 100644 --- a/tsc/internal/fourslash/tests/formattingOverrideKeyword_test.go +++ b/tsc/pkg/fourslash/tests/formattingOverrideKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingOverrideKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingQMark_test.go b/tsc/pkg/fourslash/tests/formattingQMark_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingQMark_test.go rename to tsc/pkg/fourslash/tests/formattingQMark_test.go index 172a0f010a49a..124f933325fb4 100644 --- a/tsc/internal/fourslash/tests/formattingQMark_test.go +++ b/tsc/pkg/fourslash/tests/formattingQMark_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingQMark(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingReadonly_test.go b/tsc/pkg/fourslash/tests/formattingReadonly_test.go similarity index 82% rename from tsc/internal/fourslash/tests/formattingReadonly_test.go rename to tsc/pkg/fourslash/tests/formattingReadonly_test.go index f936354c6658b..678481033459e 100644 --- a/tsc/internal/fourslash/tests/formattingReadonly_test.go +++ b/tsc/pkg/fourslash/tests/formattingReadonly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingReadonly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingRegexes_test.go b/tsc/pkg/fourslash/tests/formattingRegexes_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingRegexes_test.go rename to tsc/pkg/fourslash/tests/formattingRegexes_test.go index 6be953f3f9e2f..fa4104aee1a3c 100644 --- a/tsc/internal/fourslash/tests/formattingRegexes_test.go +++ b/tsc/pkg/fourslash/tests/formattingRegexes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingRegexes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingReplaceTabsWithSpaces_test.go b/tsc/pkg/fourslash/tests/formattingReplaceTabsWithSpaces_test.go similarity index 89% rename from tsc/internal/fourslash/tests/formattingReplaceTabsWithSpaces_test.go rename to tsc/pkg/fourslash/tests/formattingReplaceTabsWithSpaces_test.go index 15cff5aab1fd7..f8d0c0394f709 100644 --- a/tsc/internal/fourslash/tests/formattingReplaceTabsWithSpaces_test.go +++ b/tsc/pkg/fourslash/tests/formattingReplaceTabsWithSpaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingReplaceTabsWithSpaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go b/tsc/pkg/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go similarity index 85% rename from tsc/internal/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go rename to tsc/pkg/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go index 1cd06b4e06b62..dbdaa0d9b334d 100644 --- a/tsc/internal/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go +++ b/tsc/pkg/fourslash/tests/formattingSingleLineWithNewLineOptionSet_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSingleLineWithNewLineOptionSet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSkippedTokens_test.go b/tsc/pkg/fourslash/tests/formattingSkippedTokens_test.go similarity index 87% rename from tsc/internal/fourslash/tests/formattingSkippedTokens_test.go rename to tsc/pkg/fourslash/tests/formattingSkippedTokens_test.go index d4f4694be7589..831f30f721531 100644 --- a/tsc/internal/fourslash/tests/formattingSkippedTokens_test.go +++ b/tsc/pkg/fourslash/tests/formattingSkippedTokens_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSkippedTokens(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go b/tsc/pkg/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go rename to tsc/pkg/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go index aa5be3c21e678..5ab432e8a1398 100644 --- a/tsc/internal/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpaceAfterCommaBeforeOpenParen_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpaceAfterCommaBeforeOpenParen(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpaceBeforeCloseParen_test.go b/tsc/pkg/fourslash/tests/formattingSpaceBeforeCloseParen_test.go similarity index 89% rename from tsc/internal/fourslash/tests/formattingSpaceBeforeCloseParen_test.go rename to tsc/pkg/fourslash/tests/formattingSpaceBeforeCloseParen_test.go index 7e1b69fa406fa..d8b84b4689701 100644 --- a/tsc/internal/fourslash/tests/formattingSpaceBeforeCloseParen_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpaceBeforeCloseParen_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpaceBeforeCloseParen(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go b/tsc/pkg/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go similarity index 88% rename from tsc/internal/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go rename to tsc/pkg/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go index d2a91489af1a8..f90fceca9d208 100644 --- a/tsc/internal/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpaceBeforeFunctionParen_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpaceBeforeFunctionParen(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go b/tsc/pkg/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go rename to tsc/pkg/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go index c980482b784ea..bf99dfb4a7df3 100644 --- a/tsc/internal/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpaceBetweenOptionalChaining_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpaceBetweenOptionalChaining(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpaceBetweenParent_test.go b/tsc/pkg/fourslash/tests/formattingSpaceBetweenParent_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingSpaceBetweenParent_test.go rename to tsc/pkg/fourslash/tests/formattingSpaceBetweenParent_test.go index 8bd5cab4d56ff..4a87ebe7a564d 100644 --- a/tsc/internal/fourslash/tests/formattingSpaceBetweenParent_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpaceBetweenParent_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpaceBetweenParent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingSpacesAfterConstructor_test.go b/tsc/pkg/fourslash/tests/formattingSpacesAfterConstructor_test.go similarity index 81% rename from tsc/internal/fourslash/tests/formattingSpacesAfterConstructor_test.go rename to tsc/pkg/fourslash/tests/formattingSpacesAfterConstructor_test.go index 91a695a7b0918..bdbdd9ecf3cdc 100644 --- a/tsc/internal/fourslash/tests/formattingSpacesAfterConstructor_test.go +++ b/tsc/pkg/fourslash/tests/formattingSpacesAfterConstructor_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingSpacesAfterConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingTemplatesWithNewline_test.go b/tsc/pkg/fourslash/tests/formattingTemplatesWithNewline_test.go similarity index 78% rename from tsc/internal/fourslash/tests/formattingTemplatesWithNewline_test.go rename to tsc/pkg/fourslash/tests/formattingTemplatesWithNewline_test.go index 1d47ac35d72bc..a14f1444a4c1a 100644 --- a/tsc/internal/fourslash/tests/formattingTemplatesWithNewline_test.go +++ b/tsc/pkg/fourslash/tests/formattingTemplatesWithNewline_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingTemplatesWithNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingTemplates_test.go b/tsc/pkg/fourslash/tests/formattingTemplates_test.go similarity index 83% rename from tsc/internal/fourslash/tests/formattingTemplates_test.go rename to tsc/pkg/fourslash/tests/formattingTemplates_test.go index 87a231838c64a..bc8b33d8e651a 100644 --- a/tsc/internal/fourslash/tests/formattingTemplates_test.go +++ b/tsc/pkg/fourslash/tests/formattingTemplates_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingTemplates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingTypeInfer_test.go b/tsc/pkg/fourslash/tests/formattingTypeInfer_test.go similarity index 94% rename from tsc/internal/fourslash/tests/formattingTypeInfer_test.go rename to tsc/pkg/fourslash/tests/formattingTypeInfer_test.go index 4d9d7e57a58b8..abfff7b0a16b6 100644 --- a/tsc/internal/fourslash/tests/formattingTypeInfer_test.go +++ b/tsc/pkg/fourslash/tests/formattingTypeInfer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingTypeInfer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingVoid_test.go b/tsc/pkg/fourslash/tests/formattingVoid_test.go similarity index 89% rename from tsc/internal/fourslash/tests/formattingVoid_test.go rename to tsc/pkg/fourslash/tests/formattingVoid_test.go index 9a16107a54209..bdad8fe868e58 100644 --- a/tsc/internal/fourslash/tests/formattingVoid_test.go +++ b/tsc/pkg/fourslash/tests/formattingVoid_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingVoid(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingWithMultilineComments_test.go b/tsc/pkg/fourslash/tests/formattingWithMultilineComments_test.go similarity index 79% rename from tsc/internal/fourslash/tests/formattingWithMultilineComments_test.go rename to tsc/pkg/fourslash/tests/formattingWithMultilineComments_test.go index d38c373ca5599..643097aa19fad 100644 --- a/tsc/internal/fourslash/tests/formattingWithMultilineComments_test.go +++ b/tsc/pkg/fourslash/tests/formattingWithMultilineComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingWithMultilineComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/formattingofSingleLineBlockConstructs_test.go b/tsc/pkg/fourslash/tests/formattingofSingleLineBlockConstructs_test.go similarity index 93% rename from tsc/internal/fourslash/tests/formattingofSingleLineBlockConstructs_test.go rename to tsc/pkg/fourslash/tests/formattingofSingleLineBlockConstructs_test.go index c0d5f4e8f76a1..ff0cb9a097fb9 100644 --- a/tsc/internal/fourslash/tests/formattingofSingleLineBlockConstructs_test.go +++ b/tsc/pkg/fourslash/tests/formattingofSingleLineBlockConstructs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFormattingofSingleLineBlockConstructs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/forwardReference_test.go b/tsc/pkg/fourslash/tests/forwardReference_test.go similarity index 78% rename from tsc/internal/fourslash/tests/forwardReference_test.go rename to tsc/pkg/fourslash/tests/forwardReference_test.go index 96ff3d4e03799..12fdbad99a52d 100644 --- a/tsc/internal/fourslash/tests/forwardReference_test.go +++ b/tsc/pkg/fourslash/tests/forwardReference_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestForwardReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionFormatting_test.go b/tsc/pkg/fourslash/tests/functionFormatting_test.go similarity index 79% rename from tsc/internal/fourslash/tests/functionFormatting_test.go rename to tsc/pkg/fourslash/tests/functionFormatting_test.go index bdde04f30c756..5428c7fb819e6 100644 --- a/tsc/internal/fourslash/tests/functionFormatting_test.go +++ b/tsc/pkg/fourslash/tests/functionFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionIndentation_test.go b/tsc/pkg/fourslash/tests/functionIndentation_test.go similarity index 91% rename from tsc/internal/fourslash/tests/functionIndentation_test.go rename to tsc/pkg/fourslash/tests/functionIndentation_test.go index f3c13d65f77ca..1e8bae82540f1 100644 --- a/tsc/internal/fourslash/tests/functionIndentation_test.go +++ b/tsc/pkg/fourslash/tests/functionIndentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionIndentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionOverloadCount_test.go b/tsc/pkg/fourslash/tests/functionOverloadCount_test.go similarity index 83% rename from tsc/internal/fourslash/tests/functionOverloadCount_test.go rename to tsc/pkg/fourslash/tests/functionOverloadCount_test.go index c921f0de3132b..388a1f08f2b53 100644 --- a/tsc/internal/fourslash/tests/functionOverloadCount_test.go +++ b/tsc/pkg/fourslash/tests/functionOverloadCount_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionOverloadCount(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionProperty_test.go b/tsc/pkg/fourslash/tests/functionProperty_test.go similarity index 89% rename from tsc/internal/fourslash/tests/functionProperty_test.go rename to tsc/pkg/fourslash/tests/functionProperty_test.go index d794ef7d78523..23dc41c40378e 100644 --- a/tsc/internal/fourslash/tests/functionProperty_test.go +++ b/tsc/pkg/fourslash/tests/functionProperty_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionTypeFormatting_test.go b/tsc/pkg/fourslash/tests/functionTypeFormatting_test.go similarity index 77% rename from tsc/internal/fourslash/tests/functionTypeFormatting_test.go rename to tsc/pkg/fourslash/tests/functionTypeFormatting_test.go index 830ec01e7484c..cdc55d2d1ffa3 100644 --- a/tsc/internal/fourslash/tests/functionTypeFormatting_test.go +++ b/tsc/pkg/fourslash/tests/functionTypeFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionTypeFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionTypePredicateFormatting_test.go b/tsc/pkg/fourslash/tests/functionTypePredicateFormatting_test.go similarity index 79% rename from tsc/internal/fourslash/tests/functionTypePredicateFormatting_test.go rename to tsc/pkg/fourslash/tests/functionTypePredicateFormatting_test.go index 624741363e26f..4dfc628190c27 100644 --- a/tsc/internal/fourslash/tests/functionTypePredicateFormatting_test.go +++ b/tsc/pkg/fourslash/tests/functionTypePredicateFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionTypePredicateFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/functionTypes_test.go b/tsc/pkg/fourslash/tests/functionTypes_test.go similarity index 88% rename from tsc/internal/fourslash/tests/functionTypes_test.go rename to tsc/pkg/fourslash/tests/functionTypes_test.go index d42a441081fe4..7372acae1c716 100644 --- a/tsc/internal/fourslash/tests/functionTypes_test.go +++ b/tsc/pkg/fourslash/tests/functionTypes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunctionTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/funduleWithRecursiveReference_test.go b/tsc/pkg/fourslash/tests/funduleWithRecursiveReference_test.go similarity index 81% rename from tsc/internal/fourslash/tests/funduleWithRecursiveReference_test.go rename to tsc/pkg/fourslash/tests/funduleWithRecursiveReference_test.go index 66b589797c153..ade0918cf11dc 100644 --- a/tsc/internal/fourslash/tests/funduleWithRecursiveReference_test.go +++ b/tsc/pkg/fourslash/tests/funduleWithRecursiveReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestFunduleWithRecursiveReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/generatorDeclarationFormatting_test.go b/tsc/pkg/fourslash/tests/generatorDeclarationFormatting_test.go similarity index 81% rename from tsc/internal/fourslash/tests/generatorDeclarationFormatting_test.go rename to tsc/pkg/fourslash/tests/generatorDeclarationFormatting_test.go index 5481b0b5ddc32..01c914426621b 100644 --- a/tsc/internal/fourslash/tests/generatorDeclarationFormatting_test.go +++ b/tsc/pkg/fourslash/tests/generatorDeclarationFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGeneratorDeclarationFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericArityEnforcementAfterEdit_test.go b/tsc/pkg/fourslash/tests/genericArityEnforcementAfterEdit_test.go similarity index 80% rename from tsc/internal/fourslash/tests/genericArityEnforcementAfterEdit_test.go rename to tsc/pkg/fourslash/tests/genericArityEnforcementAfterEdit_test.go index 47b6462194c5a..474ab4997dc1b 100644 --- a/tsc/internal/fourslash/tests/genericArityEnforcementAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/genericArityEnforcementAfterEdit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericArityEnforcementAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericAssignmentCompat_test.go b/tsc/pkg/fourslash/tests/genericAssignmentCompat_test.go similarity index 81% rename from tsc/internal/fourslash/tests/genericAssignmentCompat_test.go rename to tsc/pkg/fourslash/tests/genericAssignmentCompat_test.go index 38369c30190bc..10b3fe09744ae 100644 --- a/tsc/internal/fourslash/tests/genericAssignmentCompat_test.go +++ b/tsc/pkg/fourslash/tests/genericAssignmentCompat_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericAssignmentCompat(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go b/tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go rename to tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go index c2bfab33e1bf2..c230580d1cf1d 100644 --- a/tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go +++ b/tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCallSignaturesInNonGenericTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go b/tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go rename to tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go index 3f05eedcd062a..1e2c5fb755158 100644 --- a/tsc/internal/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go +++ b/tsc/pkg/fourslash/tests/genericCallSignaturesInNonGenericTypes2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCallSignaturesInNonGenericTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCallsWithOptionalParams1_test.go b/tsc/pkg/fourslash/tests/genericCallsWithOptionalParams1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericCallsWithOptionalParams1_test.go rename to tsc/pkg/fourslash/tests/genericCallsWithOptionalParams1_test.go index 909598b2b5209..cf384ad39cc5a 100644 --- a/tsc/internal/fourslash/tests/genericCallsWithOptionalParams1_test.go +++ b/tsc/pkg/fourslash/tests/genericCallsWithOptionalParams1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCallsWithOptionalParams1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCloduleCompletionList_test.go b/tsc/pkg/fourslash/tests/genericCloduleCompletionList_test.go similarity index 79% rename from tsc/internal/fourslash/tests/genericCloduleCompletionList_test.go rename to tsc/pkg/fourslash/tests/genericCloduleCompletionList_test.go index 7a41e4692bbe9..f558960eab10b 100644 --- a/tsc/internal/fourslash/tests/genericCloduleCompletionList_test.go +++ b/tsc/pkg/fourslash/tests/genericCloduleCompletionList_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCloduleCompletionList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCombinatorWithConstraints1_test.go b/tsc/pkg/fourslash/tests/genericCombinatorWithConstraints1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/genericCombinatorWithConstraints1_test.go rename to tsc/pkg/fourslash/tests/genericCombinatorWithConstraints1_test.go index 2903e17e4b67a..34976b6c457f8 100644 --- a/tsc/internal/fourslash/tests/genericCombinatorWithConstraints1_test.go +++ b/tsc/pkg/fourslash/tests/genericCombinatorWithConstraints1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCombinatorWithConstraints1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCombinators1_test.go b/tsc/pkg/fourslash/tests/genericCombinators1_test.go similarity index 96% rename from tsc/internal/fourslash/tests/genericCombinators1_test.go rename to tsc/pkg/fourslash/tests/genericCombinators1_test.go index c5bd198fa2a20..047198d00098f 100644 --- a/tsc/internal/fourslash/tests/genericCombinators1_test.go +++ b/tsc/pkg/fourslash/tests/genericCombinators1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCombinators1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericCombinators3_test.go b/tsc/pkg/fourslash/tests/genericCombinators3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/genericCombinators3_test.go rename to tsc/pkg/fourslash/tests/genericCombinators3_test.go index 6f8af8f06668c..f8539054774fd 100644 --- a/tsc/internal/fourslash/tests/genericCombinators3_test.go +++ b/tsc/pkg/fourslash/tests/genericCombinators3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericCombinators3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go b/tsc/pkg/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go rename to tsc/pkg/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go index db93caf004d01..8e3f98c04a9d0 100644 --- a/tsc/internal/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go +++ b/tsc/pkg/fourslash/tests/genericDerivedTypeAcrossModuleBoundary1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericDerivedTypeAcrossModuleBoundary1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionReturnType2_test.go b/tsc/pkg/fourslash/tests/genericFunctionReturnType2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/genericFunctionReturnType2_test.go rename to tsc/pkg/fourslash/tests/genericFunctionReturnType2_test.go index b2ed517084a93..022f61ee10559 100644 --- a/tsc/internal/fourslash/tests/genericFunctionReturnType2_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionReturnType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionReturnType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionReturnType_test.go b/tsc/pkg/fourslash/tests/genericFunctionReturnType_test.go similarity index 87% rename from tsc/internal/fourslash/tests/genericFunctionReturnType_test.go rename to tsc/pkg/fourslash/tests/genericFunctionReturnType_test.go index bd041529dfdc5..bb3a54676e51a 100644 --- a/tsc/internal/fourslash/tests/genericFunctionReturnType_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionReturnType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionReturnType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp1_test.go b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/genericFunctionSignatureHelp1_test.go rename to tsc/pkg/fourslash/tests/genericFunctionSignatureHelp1_test.go index c1643c8a12f0b..6d302f9aebd1c 100644 --- a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp1_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionSignatureHelp1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp2_test.go b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/genericFunctionSignatureHelp2_test.go rename to tsc/pkg/fourslash/tests/genericFunctionSignatureHelp2_test.go index 21b4c84457e4f..5750a13cd1640 100644 --- a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp2_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionSignatureHelp2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go similarity index 95% rename from tsc/internal/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go rename to tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go index 93f7d8c68b002..0d6438f11af23 100644 --- a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3MultiFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionSignatureHelp3MultiFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp3_test.go b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3_test.go similarity index 95% rename from tsc/internal/fourslash/tests/genericFunctionSignatureHelp3_test.go rename to tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3_test.go index 001d746f200fe..d6727d3be4bc4 100644 --- a/tsc/internal/fourslash/tests/genericFunctionSignatureHelp3_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionSignatureHelp3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionSignatureHelp3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericFunctionWithGenericParams1_test.go b/tsc/pkg/fourslash/tests/genericFunctionWithGenericParams1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/genericFunctionWithGenericParams1_test.go rename to tsc/pkg/fourslash/tests/genericFunctionWithGenericParams1_test.go index c4f4803de1cb4..e098450a9de78 100644 --- a/tsc/internal/fourslash/tests/genericFunctionWithGenericParams1_test.go +++ b/tsc/pkg/fourslash/tests/genericFunctionWithGenericParams1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericFunctionWithGenericParams1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericInterfacePropertyInference1_test.go b/tsc/pkg/fourslash/tests/genericInterfacePropertyInference1_test.go similarity index 97% rename from tsc/internal/fourslash/tests/genericInterfacePropertyInference1_test.go rename to tsc/pkg/fourslash/tests/genericInterfacePropertyInference1_test.go index 4751723904855..39e01f3e1e7bd 100644 --- a/tsc/internal/fourslash/tests/genericInterfacePropertyInference1_test.go +++ b/tsc/pkg/fourslash/tests/genericInterfacePropertyInference1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericInterfacePropertyInference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericInterfacePropertyInference2_test.go b/tsc/pkg/fourslash/tests/genericInterfacePropertyInference2_test.go similarity index 96% rename from tsc/internal/fourslash/tests/genericInterfacePropertyInference2_test.go rename to tsc/pkg/fourslash/tests/genericInterfacePropertyInference2_test.go index dd989b58b41e1..41707d2142a0e 100644 --- a/tsc/internal/fourslash/tests/genericInterfacePropertyInference2_test.go +++ b/tsc/pkg/fourslash/tests/genericInterfacePropertyInference2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericInterfacePropertyInference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go b/tsc/pkg/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go rename to tsc/pkg/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go index a901924605998..55db61721c825 100644 --- a/tsc/internal/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go +++ b/tsc/pkg/fourslash/tests/genericInterfaceWithInheritanceEdit1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericInterfaceWithInheritanceEdit1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericInterfacesWithConstraints1_test.go b/tsc/pkg/fourslash/tests/genericInterfacesWithConstraints1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/genericInterfacesWithConstraints1_test.go rename to tsc/pkg/fourslash/tests/genericInterfacesWithConstraints1_test.go index c96893ec9dcf7..4f074e7958816 100644 --- a/tsc/internal/fourslash/tests/genericInterfacesWithConstraints1_test.go +++ b/tsc/pkg/fourslash/tests/genericInterfacesWithConstraints1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericInterfacesWithConstraints1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericMapTyping1_test.go b/tsc/pkg/fourslash/tests/genericMapTyping1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/genericMapTyping1_test.go rename to tsc/pkg/fourslash/tests/genericMapTyping1_test.go index 0728d1d4e299c..74fd40c244e73 100644 --- a/tsc/internal/fourslash/tests/genericMapTyping1_test.go +++ b/tsc/pkg/fourslash/tests/genericMapTyping1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericMapTyping1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericMethodParam_test.go b/tsc/pkg/fourslash/tests/genericMethodParam_test.go similarity index 84% rename from tsc/internal/fourslash/tests/genericMethodParam_test.go rename to tsc/pkg/fourslash/tests/genericMethodParam_test.go index 160e21f875a72..cce2422a8c946 100644 --- a/tsc/internal/fourslash/tests/genericMethodParam_test.go +++ b/tsc/pkg/fourslash/tests/genericMethodParam_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericMethodParam(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericObjectBaseType_test.go b/tsc/pkg/fourslash/tests/genericObjectBaseType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/genericObjectBaseType_test.go rename to tsc/pkg/fourslash/tests/genericObjectBaseType_test.go index f8b3c6f304dcc..bd7b19421d610 100644 --- a/tsc/internal/fourslash/tests/genericObjectBaseType_test.go +++ b/tsc/pkg/fourslash/tests/genericObjectBaseType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericObjectBaseType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericParameterHelpConstructorCalls_test.go b/tsc/pkg/fourslash/tests/genericParameterHelpConstructorCalls_test.go similarity index 92% rename from tsc/internal/fourslash/tests/genericParameterHelpConstructorCalls_test.go rename to tsc/pkg/fourslash/tests/genericParameterHelpConstructorCalls_test.go index ad709e60fbceb..562614350b58f 100644 --- a/tsc/internal/fourslash/tests/genericParameterHelpConstructorCalls_test.go +++ b/tsc/pkg/fourslash/tests/genericParameterHelpConstructorCalls_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericParameterHelpConstructorCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericParameterHelpTypeReferences_test.go b/tsc/pkg/fourslash/tests/genericParameterHelpTypeReferences_test.go similarity index 93% rename from tsc/internal/fourslash/tests/genericParameterHelpTypeReferences_test.go rename to tsc/pkg/fourslash/tests/genericParameterHelpTypeReferences_test.go index fdcdca7a42c9e..cdd45da82982d 100644 --- a/tsc/internal/fourslash/tests/genericParameterHelpTypeReferences_test.go +++ b/tsc/pkg/fourslash/tests/genericParameterHelpTypeReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericParameterHelpTypeReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericParameterHelp_test.go b/tsc/pkg/fourslash/tests/genericParameterHelp_test.go similarity index 92% rename from tsc/internal/fourslash/tests/genericParameterHelp_test.go rename to tsc/pkg/fourslash/tests/genericParameterHelp_test.go index 2c8f36b09a6bb..e70e37c61f7a0 100644 --- a/tsc/internal/fourslash/tests/genericParameterHelp_test.go +++ b/tsc/pkg/fourslash/tests/genericParameterHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericParameterHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericRespecialization1_test.go b/tsc/pkg/fourslash/tests/genericRespecialization1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/genericRespecialization1_test.go rename to tsc/pkg/fourslash/tests/genericRespecialization1_test.go index 188b552fd1427..9fd11f2be7226 100644 --- a/tsc/internal/fourslash/tests/genericRespecialization1_test.go +++ b/tsc/pkg/fourslash/tests/genericRespecialization1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericRespecialization1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go b/tsc/pkg/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go similarity index 82% rename from tsc/internal/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go rename to tsc/pkg/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go index 534af45ee8351..b5763d4520087 100644 --- a/tsc/internal/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go +++ b/tsc/pkg/fourslash/tests/genericSignaturesAreProperlyCleaned_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericSignaturesAreProperlyCleaned(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go b/tsc/pkg/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go similarity index 87% rename from tsc/internal/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go rename to tsc/pkg/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go index 9bd285bca1619..e50de7a015ee3 100644 --- a/tsc/internal/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go +++ b/tsc/pkg/fourslash/tests/genericTypeAliasIntersectionCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericTypeAliasIntersectionCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go b/tsc/pkg/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go rename to tsc/pkg/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go index 2b0c6e23a8392..4498c8950fedd 100644 --- a/tsc/internal/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go +++ b/tsc/pkg/fourslash/tests/genericTypeParamUnrelatedToArguments1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericTypeParamUnrelatedToArguments1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go b/tsc/pkg/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go rename to tsc/pkg/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go index 7cf06b60b7815..4b87e657e6fa8 100644 --- a/tsc/internal/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go +++ b/tsc/pkg/fourslash/tests/genericTypeWithMultipleBases1MultiFile_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericTypeWithMultipleBases1MultiFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericWithSpecializedProperties1_test.go b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericWithSpecializedProperties1_test.go rename to tsc/pkg/fourslash/tests/genericWithSpecializedProperties1_test.go index 5a30f9c2af672..c1850310f0881 100644 --- a/tsc/internal/fourslash/tests/genericWithSpecializedProperties1_test.go +++ b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericWithSpecializedProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericWithSpecializedProperties2_test.go b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/genericWithSpecializedProperties2_test.go rename to tsc/pkg/fourslash/tests/genericWithSpecializedProperties2_test.go index 6ae8570cdd529..507e68618eada 100644 --- a/tsc/internal/fourslash/tests/genericWithSpecializedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericWithSpecializedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericWithSpecializedProperties3_test.go b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/genericWithSpecializedProperties3_test.go rename to tsc/pkg/fourslash/tests/genericWithSpecializedProperties3_test.go index 8275efcacf5a1..26b0e4f3d5e93 100644 --- a/tsc/internal/fourslash/tests/genericWithSpecializedProperties3_test.go +++ b/tsc/pkg/fourslash/tests/genericWithSpecializedProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericWithSpecializedProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericsFormattingMultiline_test.go b/tsc/pkg/fourslash/tests/genericsFormattingMultiline_test.go similarity index 94% rename from tsc/internal/fourslash/tests/genericsFormattingMultiline_test.go rename to tsc/pkg/fourslash/tests/genericsFormattingMultiline_test.go index 0285f5eeddfeb..3a746ef45e907 100644 --- a/tsc/internal/fourslash/tests/genericsFormattingMultiline_test.go +++ b/tsc/pkg/fourslash/tests/genericsFormattingMultiline_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericsFormattingMultiline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/genericsFormatting_test.go b/tsc/pkg/fourslash/tests/genericsFormatting_test.go similarity index 94% rename from tsc/internal/fourslash/tests/genericsFormatting_test.go rename to tsc/pkg/fourslash/tests/genericsFormatting_test.go index 05eae3f5ddd64..d112960cd4cd9 100644 --- a/tsc/internal/fourslash/tests/genericsFormatting_test.go +++ b/tsc/pkg/fourslash/tests/genericsFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGenericsFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getDeclarationDiagnostics_test.go b/tsc/pkg/fourslash/tests/getDeclarationDiagnostics_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getDeclarationDiagnostics_test.go rename to tsc/pkg/fourslash/tests/getDeclarationDiagnostics_test.go index 8551e933f299f..6c3fd3af21bdb 100644 --- a/tsc/internal/fourslash/tests/getDeclarationDiagnostics_test.go +++ b/tsc/pkg/fourslash/tests/getDeclarationDiagnostics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetDeclarationDiagnostics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go similarity index 92% rename from tsc/internal/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go index 22f2f16cd1912..c6de55341c51a 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRenameWithSolutionConfigFile_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRenameWithSolutionConfigFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_ambientModule_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_ambientModule_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getEditsForFileRename_ambientModule_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_ambientModule_test.go index be2b8c04f6176..2fd1fafc4015f 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_ambientModule_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_ambientModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_ambientModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_amd_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_amd_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_amd_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_amd_test.go index 8b7a7693d33ff..d3f3d7ac6174a 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_amd_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_amd_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_amd(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go index e6e32de47f51c..887cb604cdb7b 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_caseInsensitive_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_caseInsensitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_casing_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_casing_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_casing_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_casing_test.go index b177f2a1cdaef..aacb60a19f603 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_casing_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_casing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_casing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport2_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/getEditsForFileRename_cssImport2_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport2_test.go index aa3ca6d4b7c0f..e35eda2032e58 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport2_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_cssImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport3_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/getEditsForFileRename_cssImport3_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport3_test.go index 666ce6fc7234e..9e0c6b674a1f6 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport3_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_cssImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport4_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport4_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getEditsForFileRename_cssImport4_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport4_test.go index 70f6f474016d4..c388955795f59 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_cssImport4_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_cssImport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_cssImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_down_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_down_test.go similarity index 94% rename from tsc/internal/fourslash/tests/getEditsForFileRename_directory_down_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_directory_down_test.go index c6beaaa8c29a8..e04c883d87702 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_down_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_down_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_directory_down(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go index 802f72476a3e1..0067e3fd3c973 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_noUpdateNodeModulesImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_directory_noUpdateNodeModulesImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getEditsForFileRename_directory_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_directory_test.go index 8825feb2197b6..370bfb215d686 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_directory(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_up_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_up_test.go similarity index 94% rename from tsc/internal/fourslash/tests/getEditsForFileRename_directory_up_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_directory_up_test.go index 13aec1447367b..c69846a24a1b9 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_directory_up_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_directory_up_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_directory_up(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go similarity index 94% rename from tsc/internal/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go index a4accf32e77c5..0c28b8770c02d 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_duplicateUnresolvedImports_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // A single file that imports the same *unresolvable* module many times used to force diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_jsExtension_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_jsExtension_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_jsExtension_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_jsExtension_test.go index 95a960264c775..a3e76aa2d1930 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_jsExtension_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_jsExtension_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_jsExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_jsRename_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_jsRename_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getEditsForFileRename_jsRename_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_jsRename_test.go index d23b4ee386275..4cec5295c42b3 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_jsRename_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_jsRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_jsRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_js_simple_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_js_simple_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getEditsForFileRename_js_simple_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_js_simple_test.go index 2ed06dd91eb30..e7e7035a83542 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_js_simple_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_js_simple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_js_simple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go index e03e32eb42117..a81c4c4337725 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_keepFileExtensions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_keepFileExtensions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go index 8ab7e774bb818..ad39f1f4a3089 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_nodeModuleDirectoryCase_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_nodeModuleDirectoryCase(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go index 6f1664533d386..ae4f07172faeb 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_notAffectedByJsFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_notAffectedByJsFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_preferences_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_preferences_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getEditsForFileRename_preferences_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_preferences_test.go index 0d04c11b6f6e7..a928773ad5eb7 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_preferences_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_preferences_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_preferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go index 5b0f21e046299..43ebf96ac64d2 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_preservePathEnding_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_preservePathEnding(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go index a541c86213ca6..5bd3c18602cd5 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_renameFromIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_renameFromIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_renameToIndex_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_renameToIndex_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getEditsForFileRename_renameToIndex_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_renameToIndex_test.go index b9189538b99df..e5a95c38ad8fa 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_renameToIndex_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_renameToIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_renameToIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go index a3b6c4381380f..d29d13a28504e 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_resolveJsonModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_resolveJsonModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go index cc72d2386bb0e..619eeffb6e0d7 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_shortenRelativePaths_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_shortenRelativePaths(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_subDir_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_subDir_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getEditsForFileRename_subDir_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_subDir_test.go index fadbbed174ec1..05693b0044ba8 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_subDir_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_subDir_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_subDir(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_symlink_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_symlink_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getEditsForFileRename_symlink_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_symlink_test.go index d80f6644f92e6..d87a059245a0b 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_symlink_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_symlink_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_symlink(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getEditsForFileRename_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_test.go index e1209ae13e096..015c8c663d135 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go index f6a33abf3c508..a9a416365ca4b 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_empty_include_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_tsconfig_empty_include(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go index 8a005ff987569..8d725aaaa9dd3 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_add_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_tsconfig_include_add(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go index ed9a189dbded9..c6adba47dbdbc 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_include_noChange_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_tsconfig_include_noChange(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_test.go index 74266be97773b..2ba7483dda1e4 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_tsconfig_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_tsconfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_tsconfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go index 62d6f607ecac1..ca5404da9da70 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_unaffectedNonRelativePath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_unaffectedNonRelativePath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go similarity index 88% rename from tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go index e29e189f88198..c4f871d745da2 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_unresolvableImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go b/tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go rename to tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go index dce2a9d0859df..7e3323682471a 100644 --- a/tsc/internal/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go +++ b/tsc/pkg/fourslash/tests/getEditsForFileRename_unresolvableNodeModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetEditsForFileRename_unresolvableNodeModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJSXOutliningSpans_test.go b/tsc/pkg/fourslash/tests/getJSXOutliningSpans_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getJSXOutliningSpans_test.go rename to tsc/pkg/fourslash/tests/getJSXOutliningSpans_test.go index 49ea2fba35e7b..1393c42d0dcc8 100644 --- a/tsc/internal/fourslash/tests/getJSXOutliningSpans_test.go +++ b/tsc/pkg/fourslash/tests/getJSXOutliningSpans_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJSXOutliningSpans(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions10_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions10_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions10_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions10_test.go index bda7105e7cb39..1928abb5cf166 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions10_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions10_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions11_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions11_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions11_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions11_test.go index 6279edc066572..8fb246ea935fa 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions11_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions11_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions12_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions12_test.go similarity index 88% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions12_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions12_test.go index 83740d1e98489..4b512e4bc0ea5 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions12_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions12_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions13_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions13_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions13_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions13_test.go index ddfb6c64f6b77..7d3db50f694bc 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions13_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions13_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions14_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions14_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions14_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions14_test.go index a087dc66ec18d..888be027d7e90 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions14_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions14_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions15_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions15_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions15_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions15_test.go index 94e773c4a2d5e..f6f7f7d61a016 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions15_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions15_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions16_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions16_test.go similarity index 87% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions16_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions16_test.go index 2366b68d962c8..65e32524cb085 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions16_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions16_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions18_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions18_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions18_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions18_test.go index b3278ed71ad30..5043a2f30419a 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions18_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions18_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions19_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions19_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions19_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions19_test.go index c8192fdbd31a3..7e1b52c9e8011 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions19_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions19_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions1_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions1_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions1_test.go index 329eec1859558..536514e88fdf5 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions1_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions20_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions20_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions20_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions20_test.go index 548ca4e93af7f..82bd15fc418ef 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions20_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions20_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions21_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions21_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions21_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions21_test.go index 0ad5e6a678445..2eb514d11bbcc 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions21_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions21_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions22_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions22_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions22_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions22_test.go index 40afbca58bf98..f8380100acd29 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions22_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions22_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions2_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions2_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions2_test.go index 9b551a906a414..992d60560e4cf 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions2_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions3_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions3_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions3_test.go index bef38a5424d18..0e9dde3393867 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions3_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions4_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions4_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions4_test.go index f626d99b6fe6a..9a02bdce95c85 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions4_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions5_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions5_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions5_test.go index 985b449e573c1..5adf456e326eb 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions5_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions8_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions8_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions8_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions8_test.go index d07712c4e5694..75fe13cf22de9 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions8_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions9_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions9_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions9_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions9_test.go index c578415ea4bcd..b7c4e2468d8b6 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions9_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions9_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go b/tsc/pkg/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go index ec455f3235c62..55e72f4e46314 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptCompletions_tsCheck_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptCompletions_tsCheck(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptGlobalCompletions1_test.go b/tsc/pkg/fourslash/tests/getJavaScriptGlobalCompletions1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptGlobalCompletions1_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptGlobalCompletions1_test.go index da4f4e10ed507..6388b49a68421 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptGlobalCompletions1_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptGlobalCompletions1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptGlobalCompletions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo1_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo1_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo1_test.go index 528618d1cdbe5..7e4dbfe994073 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo1_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo2_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo2_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo2_test.go index 4edeed23bbbf3..5a61844a76b1e 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo2_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo3_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo3_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo3_test.go index 6dbcb5018da8c..2bc5b6d74b47c 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo3_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo4_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo4_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo4_test.go index 0c8f5be4c903b..3f2a5712d80bf 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo4_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo5_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo5_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo5_test.go index e3c3db27d476e..d23026f48feea 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo5_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo6_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo6_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo6_test.go index 11b9be584f51c..8ad82c08532fb 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo6_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo7_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo7_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo7_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo7_test.go index 313bb34bd9987..d38934e88505c 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo7_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo8_test.go b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo8_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getJavaScriptQuickInfo8_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptQuickInfo8_test.go index fd91e25cd2672..1d62d233e9300 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptQuickInfo8_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptQuickInfo8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptQuickInfo8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go index 97f1b5d633f6e..dbe64edfd72f5 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go index ef2cffbc856ef..fecd2ca7b2443 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go index 8f897710109be..dfb6e38f3c57c 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go index d0b207652987c..4426af5900621 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go index 08a9b07c18143..da6f2d8e56335 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go index 7a5775903072b..71c9e1448963f 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go index 76703e9d09411..492ba57f37b16 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go index dc75ff7446e91..33d6be68879f4 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go index 89a090d84d537..ebe3ea0921fec 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics16_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go index 3c817882a6da2..b90267eff33dd 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics17_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go index def52696c1f5d..ad7e9db198f72 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics18_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go index f76fa2227cc8f..237635ccab204 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics19_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go index d21087e20b06a..bf57ed34a5f04 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go index 3ba076de06aad..2d73951a5e1cc 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics21_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go index 4559e70fa91c7..02bb347b5926a 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics22_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go index a62880ac405ac..9f2f986144935 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics23_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics23(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go index 1943c2d8d4fcf..f04ff0cf5be6f 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics24_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics24(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go index 1952bb956ffe5..ae4a84887cd81 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go index fafdde6503674..74d0f325ecc69 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go index 75f3385ff412d..3f7fb5676bc0c 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go index 26897f1dae5fb..c4dfde9e46a60 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go index bc169a16baee7..a1b550a4703a2 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go index 9500aafb13882..542fde0fd7a9d 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go index 0a9b49c4dd59c..fe3e042e18466 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go rename to tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go index 0d8ce13fe8170..3e7dd2d679d4f 100644 --- a/tsc/internal/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go +++ b/tsc/pkg/fourslash/tests/getJavaScriptSyntacticDiagnostics9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetJavaScriptSyntacticDiagnostics9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getNavigationBarItems_test.go b/tsc/pkg/fourslash/tests/getNavigationBarItems_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getNavigationBarItems_test.go rename to tsc/pkg/fourslash/tests/getNavigationBarItems_test.go index 1cacea8cffbf3..2b19d318c5f7d 100644 --- a/tsc/internal/fourslash/tests/getNavigationBarItems_test.go +++ b/tsc/pkg/fourslash/tests/getNavigationBarItems_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetNavigationBarItems(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAbstract01_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAbstract01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesAbstract01_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAbstract01_test.go index 5c78ab3fb5f60..495585a01e9b0 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAbstract01_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAbstract01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAbstract01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAbstract02_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAbstract02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesAbstract02_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAbstract02_test.go index edfdefe9f322e..16e35d45f964b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAbstract02_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAbstract02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAbstract02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAbstract03_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAbstract03_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getOccurrencesAbstract03_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAbstract03_test.go index 9974045d7ef3c..cb21609189fa8 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAbstract03_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAbstract03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAbstract03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAfterEdit_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAfterEdit_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOccurrencesAfterEdit_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAfterEdit_test.go index 00e4dbfa7b514..4fb2479edb995 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAfterEdit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait2_test.go similarity index 72% rename from tsc/internal/fourslash/tests/getOccurrencesAsyncAwait2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait2_test.go index 311cafe81d16c..e8efdd6cf5aca 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAsyncAwait2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesAsyncAwait3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait3_test.go index 2fe6cd06a3c61..e5a7369ccfbac 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAsyncAwait3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait_test.go b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesAsyncAwait_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait_test.go index c3ec311f9aca1..5089fbb27421d 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesAsyncAwait_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesAsyncAwait_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesAsyncAwait(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go index 67fdf71ac4006..8a7afffe56554 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionConstructor_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go index 47c62a17b1661..3036b81675938 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPrivate_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionPrivate(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionPublic_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPublic_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionPublic_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPublic_test.go index 4cc22111f2121..981f9841d56e0 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionPublic_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionPublic_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionPublic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go index 76c6a33a437b0..d38ab09a5711c 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStaticThis_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionStaticThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionStatic_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStatic_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionStatic_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStatic_test.go index b8ff3d52b278a..73deccb8cff47 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionStatic_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionStatic_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionStatic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionThis_test.go b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionThis_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getOccurrencesClassExpressionThis_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesClassExpressionThis_test.go index 734dab862fa98..9633072f5f7ef 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesClassExpressionThis_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesClassExpressionThis_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesClassExpressionThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConst01_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConst01_test.go similarity index 71% rename from tsc/internal/fourslash/tests/getOccurrencesConst01_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConst01_test.go index 2b71ec30d0838..bb836c75a0a0a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConst01_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConst01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConst01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConst02_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConst02_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesConst02_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConst02_test.go index 65b9c5b08a9a5..f11fe8c08de4a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConst02_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConst02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConst02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConst03_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConst03_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesConst03_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConst03_test.go index 3824295d03ae2..aabd8faa9f15d 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConst03_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConst03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConst03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConst04_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConst04_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getOccurrencesConst04_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConst04_test.go index 1eb65b867ce01..36c73d147c7aa 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConst04_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConst04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConst04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConstructor2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConstructor2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesConstructor2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConstructor2_test.go index 00150b58834d9..5cd2bbbb1e57f 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConstructor2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConstructor2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConstructor2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesConstructor_test.go b/tsc/pkg/fourslash/tests/getOccurrencesConstructor_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesConstructor_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesConstructor_test.go index f3e95080ca627..5424c18f9d56a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesConstructor_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesConstructor_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesDeclare1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesDeclare1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesDeclare1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesDeclare1_test.go index bdf3bb270dab1..02508cca1009c 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesDeclare1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesDeclare1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesDeclare1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesDeclare2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesDeclare2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesDeclare2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesDeclare2_test.go index d67232785e3ad..11534f03ed08d 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesDeclare2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesDeclare2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesDeclare2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesDeclare3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesDeclare3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesDeclare3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesDeclare3_test.go index 4ae2f1f9e74a1..100ada6c7e901 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesDeclare3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesDeclare3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesDeclare3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesExport1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesExport1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesExport1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesExport1_test.go index 02d8ddc9897fa..0196e42e40961 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesExport1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesExport1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesExport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesExport2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesExport2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesExport2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesExport2_test.go index b1798e956994b..5f1142b3d6377 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesExport2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesExport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesExport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesExport3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesExport3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesExport3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesExport3_test.go index 92df014c8da16..2627d7cb00076 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesExport3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesExport3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesExport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElse2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElse2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIfElse2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElse2_test.go index 404b3859ef1d0..e5bcb2512443e 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElse2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElse2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElse2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElse3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElse3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIfElse3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElse3_test.go index 67b50ed9e3b04..ee50765bdc9f6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElse3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElse3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElse3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElse4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElse4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIfElse4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElse4_test.go index 95a9beab72a25..b394da0f1e223 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElse4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElse4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElse4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElse5_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElse5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesIfElse5_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElse5_test.go index 04d324da96720..fe9a5f62fa9dd 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElse5_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElse5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElse5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElseBroken_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElseBroken_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesIfElseBroken_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElseBroken_test.go index a04b88a8abd08..d4421b6e3f60b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElseBroken_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElseBroken_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElseBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIfElse_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIfElse_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIfElse_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIfElse_test.go index 9ea5f4dc33840..b80d0036c0926 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIfElse_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIfElse_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIfElse(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go index 55d71d8a612b6..b6874fdefcfde 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfArrowFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfArrowFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go index 97beb8cead7ab..9ca05a713c3f6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfBindingPattern_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfBindingPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go index fbc65a539ddbd..837d5ec6127c7 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go index 64119172e59f9..8eaa415a64324 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfComputedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfComputedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go index 5b8634e9c0544..4a8effbd4c2c7 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go index 03ce27160906f..978b02f829c4d 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go index e891a788e2037..085f79d41b2b2 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go index d292f0d8df175..1d875780c48e0 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterfaceClassMerge_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfInterfaceClassMerge(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go index 401c5d2f0b522..9e6876a95cc34 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go index 56ecc5f8418ed..2b81826997fcf 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go index 3aeb0f3d7ff11..cfac9c5b547c6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfNumberNamedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfNumberNamedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go index 05afc65647a13..4d24d7a6b7aaf 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go index 36097491c96f8..2f16af81ba854 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfStringNamedProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfStringNamedProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go index 3eb47ddb1523d..7d5993702472e 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go index 41ec81da500d5..347a4c077041f 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsDefinitionOfVariable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsDefinitionOfVariable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesIsWriteAccess_test.go b/tsc/pkg/fourslash/tests/getOccurrencesIsWriteAccess_test.go similarity index 90% rename from tsc/internal/fourslash/tests/getOccurrencesIsWriteAccess_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesIsWriteAccess_test.go index cadfd3e5df735..d050f34c119e5 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesIsWriteAccess_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesIsWriteAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesIsWriteAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go index bfd4c513f714d..7dd4f0cb9231b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go index c804e384e8116..51ac11519ee6b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go index 02919e9b4df89..63f9c158ab1f8 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go index 872008794333b..68a4aa3a05272 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go index 8c57a6aa21699..13c023ddcaf5b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go index b261e010931a9..d30e001de2b11 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinueNegatives_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinueNegatives(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue_test.go b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue_test.go index afb87ca6bf90d..fbbe596a82667 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesLoopBreakContinue_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesLoopBreakContinue_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesLoopBreakContinue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesModifiersNegatives1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesModifiersNegatives1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/getOccurrencesModifiersNegatives1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesModifiersNegatives1_test.go index cb50cc5689d32..f50d7768d20ee 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesModifiersNegatives1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesModifiersNegatives1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesModifiersNegatives1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go b/tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go index 9f814ed3948ff..8f66b456e8955 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAssertion_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesNonStringImportAssertion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go b/tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go index ee6c38c5cccf3..c7261bd13d3e5 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesNonStringImportAttributes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesNonStringImportAttributes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go index 35ee5ab050771..39cf868606dbf 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesOfAnonymousFunction2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go b/tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go similarity index 70% rename from tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go index 16c37c5bfb15b..c7ac202673bc6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesOfAnonymousFunction_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesOfAnonymousFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesOfDecorators_test.go b/tsc/pkg/fourslash/tests/getOccurrencesOfDecorators_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getOccurrencesOfDecorators_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesOfDecorators_test.go index 7ee55427d0558..66ef02edd81c8 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesOfDecorators_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesOfDecorators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesOfDecorators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go b/tsc/pkg/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go index 4b92c1a6ff199..99dac2deb2fba 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesOfUndefinedSymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesOfUndefinedSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesPrivate1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesPrivate1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesPrivate1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesPrivate1_test.go index acaee8900cde2..b25521f6271a4 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesPrivate1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesPrivate1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesPrivate1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesPrivate2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesPrivate2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesPrivate2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesPrivate2_test.go index 830f9df3dd7f9..f4fd3345e75e8 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesPrivate2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesPrivate2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesPrivate2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go b/tsc/pkg/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go index 80d0acd7a1e73..18cf99b5e1f86 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesPropertyInAliasedInterface_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesPropertyInAliasedInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesProtected1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesProtected1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesProtected1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesProtected1_test.go index beb7880f94ea6..f1fd508f90474 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesProtected1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesProtected1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesProtected1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesProtected2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesProtected2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesProtected2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesProtected2_test.go index 67554fa02013c..c8603572d7198 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesProtected2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesProtected2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesProtected2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesPublic1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesPublic1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesPublic1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesPublic1_test.go index 694e26a9876e3..9d88ae0fe5bf3 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesPublic1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesPublic1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesPublic1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesPublic2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesPublic2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesPublic2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesPublic2_test.go index c9159b9cbd762..8715c2491e451 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesPublic2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesPublic2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesPublic2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReadonly1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReadonly1_test.go similarity index 68% rename from tsc/internal/fourslash/tests/getOccurrencesReadonly1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReadonly1_test.go index 56272b71a61e5..50bd97cb5b502 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReadonly1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReadonly1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReadonly1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReadonly2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReadonly2_test.go similarity index 68% rename from tsc/internal/fourslash/tests/getOccurrencesReadonly2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReadonly2_test.go index feeb3d5be04a7..9b0f7e53ca3a5 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReadonly2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReadonly2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReadonly2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReadonly3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReadonly3_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getOccurrencesReadonly3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReadonly3_test.go index f44809c502769..58e5349616cb0 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReadonly3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReadonly3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReadonly3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReturn2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReturn2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesReturn2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReturn2_test.go index fe8475bb2c21f..162b2c2593253 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReturn2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReturn2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReturn2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReturn3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReturn3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesReturn3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReturn3_test.go index 08f1d11c344a4..5a70b6c896784 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReturn3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReturn3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReturn3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReturn4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReturn4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesReturn4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReturn4_test.go index 8b9ba5a85519c..03c01f58f7208 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReturn4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReturn4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReturn4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReturnBroken_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReturnBroken_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOccurrencesReturnBroken_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReturnBroken_test.go index 5ba6d6d394605..663e84583b4fc 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReturnBroken_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReturnBroken_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReturnBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesReturn_test.go b/tsc/pkg/fourslash/tests/getOccurrencesReturn_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesReturn_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesReturn_test.go index 7c57ee22ba1d1..b309b29fb1b8a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesReturn_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesReturn_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesReturn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesSetAndGet2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSetAndGet2_test.go index fd68b5bcc32e3..bcf08eb758552 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSetAndGet2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesSetAndGet3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSetAndGet3_test.go index 25b2b90f69ca0..e25d2918cfaf7 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSetAndGet3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesSetAndGet_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSetAndGet_test.go index a74c2d6abf22e..d8fc76cd37bf3 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSetAndGet_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSetAndGet_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSetAndGet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesStatic1_test.go b/tsc/pkg/fourslash/tests/getOccurrencesStatic1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/getOccurrencesStatic1_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesStatic1_test.go index 424a0000dd5dc..58e5363091b67 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesStatic1_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesStatic1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesStatic1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesStringLiteralTypes_test.go b/tsc/pkg/fourslash/tests/getOccurrencesStringLiteralTypes_test.go similarity index 69% rename from tsc/internal/fourslash/tests/getOccurrencesStringLiteralTypes_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesStringLiteralTypes_test.go index 61842cf502612..9452e5b36dee3 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesStringLiteralTypes_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesStringLiteralTypes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesStringLiteralTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesStringLiterals_test.go b/tsc/pkg/fourslash/tests/getOccurrencesStringLiterals_test.go similarity index 69% rename from tsc/internal/fourslash/tests/getOccurrencesStringLiterals_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesStringLiterals_test.go index 91ce07d2b82ab..007916702a036 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesStringLiterals_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesStringLiterals_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesStringLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSuper2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSuper2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/getOccurrencesSuper2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSuper2_test.go index 0d320b102ea81..a9ffb29aae42b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSuper2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSuper2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSuper2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSuper3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSuper3_test.go similarity index 74% rename from tsc/internal/fourslash/tests/getOccurrencesSuper3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSuper3_test.go index 03e4ee7d8903c..c2519cc75284c 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSuper3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSuper3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSuper3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSuperNegatives_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSuperNegatives_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getOccurrencesSuperNegatives_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSuperNegatives_test.go index 12502964de648..ca7e1bf055003 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSuperNegatives_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSuperNegatives_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSuperNegatives(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSuper_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSuper_test.go similarity index 87% rename from tsc/internal/fourslash/tests/getOccurrencesSuper_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSuper_test.go index 0a7d6f75cf675..cbe031f0cc64c 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSuper_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSuper_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSuper(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go index e9b86c207af0b..168158f7e84ab 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefault2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go index dcfff5f2fe5ce..0cbffc6b7b8ab 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefault3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go index 0446ca5882cba..80a2ec390fa71 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefault4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go index a0943ab22b696..6837d7a739a28 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefault5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go index 2a5c630829138..7f14de9ea2dd5 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefaultBroken_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefaultBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go index d1cf2478b04f0..e6f6f10f2637b 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesSwitchCaseDefault_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesSwitchCaseDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThis2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis2_test.go index 93bb9d8ab106d..b10cb1075c560 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis3_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThis3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis3_test.go index e67df8aa4899c..52556097340c6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis4_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThis4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis4_test.go index 6b9d874a6d980..c6b2d086c15c4 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis5_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis5_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThis5_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis5_test.go index 529adea6f67ee..eae44e78fb4ea 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis5_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis6_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis6_test.go similarity index 94% rename from tsc/internal/fourslash/tests/getOccurrencesThis6_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis6_test.go index db9b46597a880..183135272ad88 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis6_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThisNegatives2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThisNegatives2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThisNegatives2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThisNegatives2_test.go index dda7b82c9901d..a49f9ed288228 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThisNegatives2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThisNegatives2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThisNegatives2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThis_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThis_test.go similarity index 93% rename from tsc/internal/fourslash/tests/getOccurrencesThis_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThis_test.go index 9433e9866c714..9b2306e6c6111 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThis_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThis_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getOccurrencesThrow2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow2_test.go index 8d2f2668db489..3cbc904069ab3 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getOccurrencesThrow3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow3_test.go index 16b6f8cd7af72..eef8b4f30966d 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getOccurrencesThrow4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow4_test.go index 2b43376c6223f..61943b86692c5 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow5_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow5_test.go similarity index 84% rename from tsc/internal/fourslash/tests/getOccurrencesThrow5_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow5_test.go index d47e7d5d9fd69..bce2535cba0a0 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow5_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow6_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow6_test.go similarity index 73% rename from tsc/internal/fourslash/tests/getOccurrencesThrow6_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow6_test.go index 89946b6ce901a..007df20d23d0c 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow6_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow7_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow7_test.go similarity index 74% rename from tsc/internal/fourslash/tests/getOccurrencesThrow7_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow7_test.go index 73b6b031e0b80..6efc0ae1d18c4 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow7_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow8_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow8_test.go similarity index 74% rename from tsc/internal/fourslash/tests/getOccurrencesThrow8_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow8_test.go index dec21fa26acfe..5f1cc96f33799 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow8_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesThrow_test.go b/tsc/pkg/fourslash/tests/getOccurrencesThrow_test.go similarity index 85% rename from tsc/internal/fourslash/tests/getOccurrencesThrow_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesThrow_test.go index eb98b302bb43f..28fb4974932cd 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesThrow_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesThrow_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesThrow(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally2_test.go b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally2_test.go similarity index 72% rename from tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally2_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally2_test.go index 10cdfc54b6f6d..3fd86a8afda96 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally2_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesTryCatchFinally2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally3_test.go b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally3_test.go similarity index 72% rename from tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally3_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally3_test.go index 12a7bbc876d2d..375d792f3c89a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally3_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesTryCatchFinally3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally4_test.go b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally4_test.go similarity index 73% rename from tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally4_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally4_test.go index 2a9f549ec9d93..30a7e362aa8c9 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally4_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesTryCatchFinally4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go index 052a13eed9509..c5ae81a8b7904 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinallyBroken_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesTryCatchFinallyBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally_test.go b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally_test.go similarity index 72% rename from tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally_test.go index deda228ba0ff3..c689e87dee2c6 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesTryCatchFinally_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesTryCatchFinally_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesTryCatchFinally(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOccurrencesYield_test.go b/tsc/pkg/fourslash/tests/getOccurrencesYield_test.go similarity index 74% rename from tsc/internal/fourslash/tests/getOccurrencesYield_test.go rename to tsc/pkg/fourslash/tests/getOccurrencesYield_test.go index 7067d53178e51..9f79112a6935a 100644 --- a/tsc/internal/fourslash/tests/getOccurrencesYield_test.go +++ b/tsc/pkg/fourslash/tests/getOccurrencesYield_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOccurrencesYield(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForArrayDestructuring_test.go b/tsc/pkg/fourslash/tests/getOutliningForArrayDestructuring_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getOutliningForArrayDestructuring_test.go rename to tsc/pkg/fourslash/tests/getOutliningForArrayDestructuring_test.go index 583db9d91ce57..239b20bfbfad6 100644 --- a/tsc/internal/fourslash/tests/getOutliningForArrayDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForArrayDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForArrayDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForBlockComments_test.go b/tsc/pkg/fourslash/tests/getOutliningForBlockComments_test.go similarity index 97% rename from tsc/internal/fourslash/tests/getOutliningForBlockComments_test.go rename to tsc/pkg/fourslash/tests/getOutliningForBlockComments_test.go index 9588d06f24c87..28f04d4fb42e9 100644 --- a/tsc/internal/fourslash/tests/getOutliningForBlockComments_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForBlockComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForBlockComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForObjectDestructuring_test.go b/tsc/pkg/fourslash/tests/getOutliningForObjectDestructuring_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getOutliningForObjectDestructuring_test.go rename to tsc/pkg/fourslash/tests/getOutliningForObjectDestructuring_test.go index 01ffb670ba138..32d6ad37a6dd3 100644 --- a/tsc/internal/fourslash/tests/getOutliningForObjectDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForObjectDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForObjectDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForObjectsInArray_test.go b/tsc/pkg/fourslash/tests/getOutliningForObjectsInArray_test.go similarity index 87% rename from tsc/internal/fourslash/tests/getOutliningForObjectsInArray_test.go rename to tsc/pkg/fourslash/tests/getOutliningForObjectsInArray_test.go index 805b7ecd39ae2..cedfc6a8705d3 100644 --- a/tsc/internal/fourslash/tests/getOutliningForObjectsInArray_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForObjectsInArray_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForObjectsInArray(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForSingleLineComments_test.go b/tsc/pkg/fourslash/tests/getOutliningForSingleLineComments_test.go similarity index 92% rename from tsc/internal/fourslash/tests/getOutliningForSingleLineComments_test.go rename to tsc/pkg/fourslash/tests/getOutliningForSingleLineComments_test.go index ea93c5f3f3382..14aede5f0d368 100644 --- a/tsc/internal/fourslash/tests/getOutliningForSingleLineComments_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForSingleLineComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForSingleLineComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForTupleType_test.go b/tsc/pkg/fourslash/tests/getOutliningForTupleType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/getOutliningForTupleType_test.go rename to tsc/pkg/fourslash/tests/getOutliningForTupleType_test.go index 9c1914ac92fde..e0d32bfa252d7 100644 --- a/tsc/internal/fourslash/tests/getOutliningForTupleType_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForTupleType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForTupleType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningForTypeLiteral_test.go b/tsc/pkg/fourslash/tests/getOutliningForTypeLiteral_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOutliningForTypeLiteral_test.go rename to tsc/pkg/fourslash/tests/getOutliningForTypeLiteral_test.go index 3f3b22a7d80ec..60fdc8489a457 100644 --- a/tsc/internal/fourslash/tests/getOutliningForTypeLiteral_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningForTypeLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningForTypeLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go similarity index 95% rename from tsc/internal/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go index bd18bc8633785..e0157f0916538 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansDepthChainedCalls_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansDepthChainedCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansDepthElseIf_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansDepthElseIf_test.go similarity index 92% rename from tsc/internal/fourslash/tests/getOutliningSpansDepthElseIf_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansDepthElseIf_test.go index b6f9689158660..d0850ee93f0be 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansDepthElseIf_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansDepthElseIf_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansDepthElseIf(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForComments_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForComments_test.go similarity index 79% rename from tsc/internal/fourslash/tests/getOutliningSpansForComments_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForComments_test.go index 52b4362a4d84a..82ffb2bfd06b9 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForComments_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForComments_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForImports_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForImports_test.go similarity index 77% rename from tsc/internal/fourslash/tests/getOutliningSpansForImports_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForImports_test.go index 80579d26ddba9..ecd03df1c96fe 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForImports_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForImports_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go similarity index 82% rename from tsc/internal/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go index 8bb0f41483101..66e8ccd0d9fbf 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForRegionsNoSingleLineFolds_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForRegionsNoSingleLineFolds(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForRegions_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForRegions_test.go similarity index 86% rename from tsc/internal/fourslash/tests/getOutliningSpansForRegions_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForRegions_test.go index 1fdbe5869fdf7..45b8c88ceb535 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForRegions_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForRegions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForRegions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go similarity index 87% rename from tsc/internal/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go index f85f07e39fa52..6c5c98c30e132 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForTemplateLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForTemplateLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go similarity index 72% rename from tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go index 75885acd9f308..443543ff34d67 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedEndRegion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForUnbalancedEndRegion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go b/tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go similarity index 71% rename from tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go index b842786cd88e0..b1f25585c71a6 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpansForUnbalancedRegion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpansForUnbalancedRegion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getOutliningSpans_test.go b/tsc/pkg/fourslash/tests/getOutliningSpans_test.go similarity index 94% rename from tsc/internal/fourslash/tests/getOutliningSpans_test.go rename to tsc/pkg/fourslash/tests/getOutliningSpans_test.go index c5459a7fe1995..7b9e3e8585df4 100644 --- a/tsc/internal/fourslash/tests/getOutliningSpans_test.go +++ b/tsc/pkg/fourslash/tests/getOutliningSpans_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetOutliningSpans(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getPreProcessedFile_test.go b/tsc/pkg/fourslash/tests/getPreProcessedFile_test.go similarity index 91% rename from tsc/internal/fourslash/tests/getPreProcessedFile_test.go rename to tsc/pkg/fourslash/tests/getPreProcessedFile_test.go index 1e14221a4b8e3..2f71845e8e04c 100644 --- a/tsc/internal/fourslash/tests/getPreProcessedFile_test.go +++ b/tsc/pkg/fourslash/tests/getPreProcessedFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetPreProcessedFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go b/tsc/pkg/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go similarity index 71% rename from tsc/internal/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go rename to tsc/pkg/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go index 8afe7dd7c2e22..c213c7aeb25ff 100644 --- a/tsc/internal/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go +++ b/tsc/pkg/fourslash/tests/getPropertySymbolsFromBaseTypesDoesntCrash_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetPropertySymbolsFromBaseTypesDoesntCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getQuickInfoForIntersectionTypes_test.go b/tsc/pkg/fourslash/tests/getQuickInfoForIntersectionTypes_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getQuickInfoForIntersectionTypes_test.go rename to tsc/pkg/fourslash/tests/getQuickInfoForIntersectionTypes_test.go index f38ecfe1408ba..869fff79fd265 100644 --- a/tsc/internal/fourslash/tests/getQuickInfoForIntersectionTypes_test.go +++ b/tsc/pkg/fourslash/tests/getQuickInfoForIntersectionTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetQuickInfoForIntersectionTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getRenameInfoTests1_test.go b/tsc/pkg/fourslash/tests/getRenameInfoTests1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/getRenameInfoTests1_test.go rename to tsc/pkg/fourslash/tests/getRenameInfoTests1_test.go index aaf194b10eaa4..b93760f893182 100644 --- a/tsc/internal/fourslash/tests/getRenameInfoTests1_test.go +++ b/tsc/pkg/fourslash/tests/getRenameInfoTests1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetRenameInfoTests1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getRenameInfoTests2_test.go b/tsc/pkg/fourslash/tests/getRenameInfoTests2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getRenameInfoTests2_test.go rename to tsc/pkg/fourslash/tests/getRenameInfoTests2_test.go index 7c6c4d9467013..ef2140015fab0 100644 --- a/tsc/internal/fourslash/tests/getRenameInfoTests2_test.go +++ b/tsc/pkg/fourslash/tests/getRenameInfoTests2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetRenameInfoTests2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go rename to tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go index 12a0e19b08c4c..86a49c0308d89 100644 --- a/tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go +++ b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetSemanticDiagnosticForDeclaration1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go rename to tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go index cab9d17d2d965..3f58cb1da45a0 100644 --- a/tsc/internal/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetSemanticDiagnosticForDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go similarity index 78% rename from tsc/internal/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go rename to tsc/pkg/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go index cbf3438998ffd..f84e4d1f8d9a3 100644 --- a/tsc/internal/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/getSemanticDiagnosticForNoDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGetSemanticDiagnosticForNoDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/globalThisCompletion_test.go b/tsc/pkg/fourslash/tests/globalThisCompletion_test.go similarity index 80% rename from tsc/internal/fourslash/tests/globalThisCompletion_test.go rename to tsc/pkg/fourslash/tests/globalThisCompletion_test.go index ff133e0f2ac78..d3b977aa52e52 100644 --- a/tsc/internal/fourslash/tests/globalThisCompletion_test.go +++ b/tsc/pkg/fourslash/tests/globalThisCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGlobalThisCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go index dd302ce68a451..b9e1a7e175f9d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAcrossMultipleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAcrossMultipleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAlias_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAlias_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionAlias_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAlias_test.go index 598cfd64592b6..4dd217ecb38a5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAlias_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAmbiants_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAmbiants_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToDefinitionAmbiants_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAmbiants_test.go index 704c723ed312e..ee14eea5f1fde 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAmbiants_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAmbiants_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAmbiants(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionApparentTypeProperties_test.go b/tsc/pkg/fourslash/tests/goToDefinitionApparentTypeProperties_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionApparentTypeProperties_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionApparentTypeProperties_test.go index 8027875e03151..f6eefb70ca9df 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionApparentTypeProperties_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionApparentTypeProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionApparentTypeProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAwait1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAwait1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionAwait1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAwait1_test.go index 922083dd520fd..bb53cff7fc714 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAwait1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAwait1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAwait1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAwait2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAwait2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/goToDefinitionAwait2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAwait2_test.go index b451870e5e67a..9863be76f4d1e 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAwait2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAwait2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAwait2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAwait3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAwait3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionAwait3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAwait3_test.go index 6c0017663e014..86d7dd6b89769 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAwait3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAwait3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAwait3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionAwait4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionAwait4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionAwait4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionAwait4_test.go index 3b229aa4da578..e78636a6284ab 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionAwait4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionAwait4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionAwait4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionBuiltInTypes_test.go b/tsc/pkg/fourslash/tests/goToDefinitionBuiltInTypes_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionBuiltInTypes_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionBuiltInTypes_test.go index a3dbf9bacdd26..0f461701bb955 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionBuiltInTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionBuiltInTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionBuiltInTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionBuiltInValues_test.go b/tsc/pkg/fourslash/tests/goToDefinitionBuiltInValues_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionBuiltInValues_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionBuiltInValues_test.go index c180c363e2869..c1b490415afdf 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionBuiltInValues_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionBuiltInValues_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionBuiltInValues(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go b/tsc/pkg/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go index ce6822f772bf9..36dc32ad581fa 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionCSSPatternAmbientModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionCSSPatternAmbientModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionClassConstructors_test.go b/tsc/pkg/fourslash/tests/goToDefinitionClassConstructors_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToDefinitionClassConstructors_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionClassConstructors_test.go index ea8b5dc4bb91f..43e0354b3b429 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionClassConstructors_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionClassConstructors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionClassConstructors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionClassStaticBlocks_test.go b/tsc/pkg/fourslash/tests/goToDefinitionClassStaticBlocks_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionClassStaticBlocks_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionClassStaticBlocks_test.go index 6e0e27bf36f3b..fe99488312897 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionClassStaticBlocks_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionClassStaticBlocks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionClassStaticBlocks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go index 382f4beed9e4a..08a24d2797e0b 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassExpression01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionConstructorOfClassExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go index 46bab1e400626..a06c2596dda44 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionConstructorOfClassWhenClassIsPrecededByNamespace01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionConstructorOverloads_test.go b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOverloads_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToDefinitionConstructorOverloads_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionConstructorOverloads_test.go index f34f8f03cecc9..13dc570da44fb 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionConstructorOverloads_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionConstructorOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionConstructorOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDecoratorOverloads_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDecoratorOverloads_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToDefinitionDecoratorOverloads_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDecoratorOverloads_test.go index c7f1b4471c52b..c9d69dbabda2a 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDecoratorOverloads_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDecoratorOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDecoratorOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDecorator_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDecorator_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionDecorator_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDecorator_test.go index e42aba66ad29e..6967c36114f4c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDecorator_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDecorator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDecorator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire1_test.go index 51eb39b89991f..1f0736f7fa629 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDestructuredRequire1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire2_test.go index 2d8a310c4f643..18a90822d19cd 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDestructuredRequire2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDestructuredRequire2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDestructuredRequire2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go similarity index 90% rename from tsc/internal/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go index b17aa64adec01..d4b537941a68d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDifferentFileIndirectly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDifferentFileIndirectly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDifferentFile_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDifferentFile_test.go similarity index 90% rename from tsc/internal/fourslash/tests/goToDefinitionDifferentFile_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDifferentFile_test.go index b42500e971f6e..102e9f4508899 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDifferentFile_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDifferentFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDifferentFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionDynamicImport1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDynamicImport1_test.go index faaee52f9a348..45e2cd74544bb 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDynamicImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionDynamicImport2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDynamicImport2_test.go index d841937385802..3d6414c10ae6d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDynamicImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionDynamicImport3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDynamicImport3_test.go index f70aa99d15784..0418973871473 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDynamicImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionDynamicImport4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionDynamicImport4_test.go index 4c507419efd91..3ea65aeae4091 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionDynamicImport4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionDynamicImport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionDynamicImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExpandoClass1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExpandoClass1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionExpandoClass1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExpandoClass1_test.go index c9511b99d4bdf..6f7baf46049c4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExpandoClass1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExpandoClass1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExpandoClass1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExpandoClass2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExpandoClass2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionExpandoClass2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExpandoClass2_test.go index b027211f999dc..052454c030efe 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExpandoClass2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExpandoClass2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExpandoClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExpandoElementAccess_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExpandoElementAccess_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionExpandoElementAccess_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExpandoElementAccess_test.go index 9bc3c6241d6a3..cc6fc38c4ec3a 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExpandoElementAccess_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExpandoElementAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExpandoElementAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName2_test.go index 853b532d89f23..2377015f51112 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName3_test.go index dc7d0ed3a3b16..d1530b7215fbe 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName4_test.go index 674927f937686..0690a150aab6a 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName5_test.go index 02f5cb14a8d49..adfcc4f4fda58 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName6_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName6_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName6_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName6_test.go index 04e97665a8b86..c2c62a1ee80b4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName6_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName7_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName7_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName7_test.go index b5a2e845041a5..dda08f67f94af 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName7_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName8_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName8_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName8_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName8_test.go index 99dfe07e6cae9..bc41d7e0414a2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName8_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName9_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName9_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName9_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName9_test.go index e2be2b8a5e0f3..d9c9012e0efda 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName9_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName_test.go b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionExternalModuleName_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName_test.go index dc45ea15aae7c..3f39bb12dd0f4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionExternalModuleName_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionExternalModuleName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionExternalModuleName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go b/tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go index 79fe10e1c6497..923216fede3a7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloadsInClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionFunctionOverloadsInClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionFunctionOverloads_test.go b/tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloads_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionFunctionOverloads_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloads_test.go index 8883588115da9..997ce8003cfa3 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionFunctionOverloads_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionFunctionOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionFunctionOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionFunctionType_test.go b/tsc/pkg/fourslash/tests/goToDefinitionFunctionType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinitionFunctionType_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionFunctionType_test.go index af1f26cb4d7b3..0c86c7de76f7d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionFunctionType_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionFunctionType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionFunctionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go b/tsc/pkg/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go index 51f0a96d9b7a7..f545e77cf5187 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionGetterReturningCallableInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionGetterReturningCallableInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImplicitConstructor_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImplicitConstructor_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionImplicitConstructor_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImplicitConstructor_test.go index da5a21cac23d2..316400576b22f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImplicitConstructor_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImplicitConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImplicitConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImport1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImport1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionImport1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImport1_test.go index 798ae47f681f3..b07d9822fedd2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImport1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImport2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImport2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionImport2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImport2_test.go index 914625e296f7e..ffb7eea64b877 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImport2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImport3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImport3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionImport3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImport3_test.go index fddc015692364..29a6fdc876609 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImport3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportMeta_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportMeta_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionImportMeta_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportMeta_test.go index d4c909492583f..11e16e65b8ddc 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportMeta_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportMeta_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportMeta(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames10_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames10_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames10_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames10_test.go index 0bfd05ee06ae2..936fbb2571675 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames10_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames11_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames11_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames11_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames11_test.go index 826f2a4c25c0f..9e41a0196be7c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames11_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames2_test.go index 6146e6f231775..e02e10c9ee81e 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames3_test.go index c331242cbd326..24b0766ee9425 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames4_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames4_test.go index ec5431d90fad2..3487561c178ba 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames5_test.go index 1c6b7bcaf7501..565cbebc5e4ea 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames6_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames6_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames6_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames6_test.go index 645561411ac8e..d6b2b5b3959ab 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames6_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames7_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames7_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames7_test.go index 9c08efea85394..b3a82a1b0c2c2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames7_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames8_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames8_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames8_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames8_test.go index 7a670467a3477..1197770ccbaca 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames8_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames9_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames9_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames9_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames9_test.go index be7c209b0bcce..ac8d34839a695 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames9_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImportedNames_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionImportedNames_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImportedNames_test.go index 661a64a2a375f..40183ae5fb46c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImportedNames_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImportedNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImportedNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionImports_test.go b/tsc/pkg/fourslash/tests/goToDefinitionImports_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionImports_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionImports_test.go index f463808949960..e7dbd83569b03 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionImports_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionInMemberDeclaration_test.go b/tsc/pkg/fourslash/tests/goToDefinitionInMemberDeclaration_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToDefinitionInMemberDeclaration_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionInMemberDeclaration_test.go index d7841843d64ab..7085ea880b09c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionInMemberDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionInMemberDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionInMemberDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionInTypeArgument_test.go b/tsc/pkg/fourslash/tests/goToDefinitionInTypeArgument_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionInTypeArgument_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionInTypeArgument_test.go index b508304a3aa59..20b8b4e8340e7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionInTypeArgument_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionInTypeArgument_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionInTypeArgument(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionIndexSignature2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionIndexSignature2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionIndexSignature2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionIndexSignature2_test.go index cd2cd759296b6..56d0987b0ae68 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionIndexSignature2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionIndexSignature2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionIndexSignature2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionIndexSignature_test.go b/tsc/pkg/fourslash/tests/goToDefinitionIndexSignature_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToDefinitionIndexSignature_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionIndexSignature_test.go index 381d0878bb5b3..4c2665e10f059 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionIndexSignature_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionIndexSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionIndexSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionInstanceof1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionInstanceof1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionInstanceof1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionInstanceof1_test.go index 980fd83d0e58e..3fd0e27fe2ce7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionInstanceof1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionInstanceof1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionInstanceof1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionInstanceof2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionInstanceof2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionInstanceof2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionInstanceof2_test.go index 587a96052bee2..8b02601cd258f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionInstanceof2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionInstanceof2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionInstanceof2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go b/tsc/pkg/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go index 4f96eb754f585..e21f3bfec13f8 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionInterfaceAfterImplement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionInterfaceAfterImplement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag1_test.go index 1cb40717be2f9..e6dec07b1899b 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsDocImportTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag2_test.go index 622c46d75cc6d..ecd25af195b1a 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsDocImportTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag3_test.go index d7a176bebb6d4..7dc0b92b8066e 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsDocImportTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag4_test.go index 4025d720aefce..4704641c5ac73 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsDocImportTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag5_test.go index 22a7898588fe3..fc64128e6b3a0 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsDocImportTag5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsDocImportTag5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsDocImportTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsModuleExports_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleExports_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionJsModuleExports_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsModuleExports_test.go index 0fd187bbacd42..9fe66aa757c98 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsModuleExports_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsModuleExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go index 982ba3ff6cc21..d6667f594c7de 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleNameAtImportName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsModuleNameAtImportName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsModuleName_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleName_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionJsModuleName_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsModuleName_test.go index a0e22e723390a..e23b533e5c455 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsModuleName_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsModuleName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsModuleName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsxCall_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsxCall_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionJsxCall_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsxCall_test.go index 7fd8edf2263c7..74470e76186f5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsxCall_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsxCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsxCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsxNotSet_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsxNotSet_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionJsxNotSet_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsxNotSet_test.go index bce7c3f71eadd..78086bb32716d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsxNotSet_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsxNotSet_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsxNotSet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go b/tsc/pkg/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go index 0cdd11d81ff54..d2af1c8ed1538 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionJsxTagNameRightEdge_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionJsxTagNameRightEdge(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionLabels_test.go b/tsc/pkg/fourslash/tests/goToDefinitionLabels_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionLabels_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionLabels_test.go index a91e71acfad34..cbac19cccff01 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionLabels_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionLabels_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionLabels(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionMember_test.go b/tsc/pkg/fourslash/tests/goToDefinitionMember_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionMember_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionMember_test.go index 539be62c2e70a..f4aee087d6415 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionMember_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionMetaProperty_test.go b/tsc/pkg/fourslash/tests/goToDefinitionMetaProperty_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionMetaProperty_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionMetaProperty_test.go index 964c6c3bf24f9..85038dbf7a913 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionMetaProperty_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionMetaProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionMetaProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionMethodOverloads_test.go b/tsc/pkg/fourslash/tests/goToDefinitionMethodOverloads_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToDefinitionMethodOverloads_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionMethodOverloads_test.go index 9eeabdd817c5f..329ed4e88abbb 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionMethodOverloads_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionMethodOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionMethodOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionModifiers_test.go b/tsc/pkg/fourslash/tests/goToDefinitionModifiers_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionModifiers_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionModifiers_test.go index 66e556dc529f4..99f03dee110bc 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionModifiers_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionModifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionMultipleDefinitions_test.go b/tsc/pkg/fourslash/tests/goToDefinitionMultipleDefinitions_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToDefinitionMultipleDefinitions_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionMultipleDefinitions_test.go index c1b85da960334..62a2a5120913d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionMultipleDefinitions_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionMultipleDefinitions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionMultipleDefinitions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go b/tsc/pkg/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go index 1f988aacce147..f0f4547f07643 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionNewExpressionTargetNotClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionNewExpressionTargetNotClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go index f51f4bafc3169..c4e3aae31dc20 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectBindingElementPropertyName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectBindingElementPropertyName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectBindingPattern_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectBindingPattern_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToDefinitionObjectBindingPattern_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectBindingPattern_test.go index 9544abfd8bac6..aee693cfb9c1c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectBindingPattern_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectBindingPattern_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectBindingPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go index 5aa3f55c579a6..c2259ee216cd0 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectLiteralProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go index 1151e11abc383..ae703ec40e506 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectLiteralProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go index 88cc1b99f1346..37d86ec485d33 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectLiteralProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go index 5ab8e25c7ffa8..7034b944003c6 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectLiteralProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectLiteralProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionObjectSpread_test.go b/tsc/pkg/fourslash/tests/goToDefinitionObjectSpread_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionObjectSpread_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionObjectSpread_test.go index dac524ae76a6e..6b606cf669a94 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionObjectSpread_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionObjectSpread_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionObjectSpread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go index cea2dc2bfa85e..e83cf7fe69bef 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOnInvalidParameterDecorator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOnInvalidParameterDecorator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go index 218ca0e45c195..b93b4337bf036 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverloadsInMultiplePropertyAccesses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverloadsInMultiplePropertyAccesses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember10_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember10_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember10_test.go index 42ed5a1c1cfec..a6c7bcee05798 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember10_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember11_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember11_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember11_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember11_test.go index 80937f1245a6f..8388bf67c6386 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember11_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember12_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember12_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember12_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember12_test.go index 642d070c3129c..c0f3f8af06efc 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember12_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember13_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember13_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember13_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember13_test.go index 38d730a594353..3f5ae9e8eb387 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember13_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember14_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember14_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember14_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember14_test.go index e43207d729984..d5a51f76dacbf 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember14_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember15_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember15_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember15_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember15_test.go index 12c6fd388e8e5..9e74c71407bf9 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember15_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember16_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember16_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember16_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember16_test.go index 5817cfd021a6a..7059f01a83555 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember16_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember16_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember17_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember17_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember17_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember17_test.go index d163be19581e2..4f79aa27eaa2c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember17_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember17_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember18_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember18_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember18_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember18_test.go index e5195e7375500..1700ed00231b6 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember18_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember18_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember19_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember19_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember19_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember19_test.go index 2170b00c28f1d..33e0bd37d0688 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember19_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember19_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember1_test.go index d1e8c65613388..9a037e01412a5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember20_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember20_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember20_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember20_test.go index 50f5b26deab84..d72f6479b6bba 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember20_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember20_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember21_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember21_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember21_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember21_test.go index 3c11baefe726b..e95c31b6d84ec 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember21_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember21_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember22_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember22_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember22_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember22_test.go index d68d03449189c..5146c3e0275cb 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember22_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember22_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember23_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember23_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember23_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember23_test.go index 8a24ea9425799..eec8bd3c7734f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember23_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember23_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember23(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember24_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember24_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember24_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember24_test.go index 8ac1fcd4d782d..f4613f68636ef 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember24_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember24_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember24(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember25_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember25_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember25_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember25_test.go index 8df4d6cac1f4f..6496250effb82 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember25_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember25_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember25(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember26_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember26_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember26_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember26_test.go index a76e7cc30eec0..572a4a5843a34 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember26_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember26_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember26(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember2_test.go index 8a55d0c20f796..0ea64e5da1fda 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember3_test.go index 5e4fb618d8d1e..71c84f1801522 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember4_test.go index 536d4a29de0af..5a1be94d04669 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember5_test.go index ae8d57a210924..c460708a0fbcf 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember6_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember6_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember6_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember6_test.go index b2b1fbde4ab40..8f915f9883bb9 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember6_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember7_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember7_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember7_test.go index 82aca650336e5..dcda469bf196d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember7_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember8_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember8_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember8_test.go index ea0e47074108f..c68283b4f3c86 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember8_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember9_test.go b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember9_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionOverriddenMember9_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember9_test.go index cdec0802a026c..8f1298b15c330 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionOverriddenMember9_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionOverriddenMember9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionOverriddenMember9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionPartialImplementation_test.go b/tsc/pkg/fourslash/tests/goToDefinitionPartialImplementation_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionPartialImplementation_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionPartialImplementation_test.go index c01912eca1028..5a86654573519 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionPartialImplementation_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionPartialImplementation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionPartialImplementation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go b/tsc/pkg/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go similarity index 92% rename from tsc/internal/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go index 30fbe9d6463d7..307e3fd80f384 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionPreferSourceDefinition_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionPreferSourceDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionPrimitives_test.go b/tsc/pkg/fourslash/tests/goToDefinitionPrimitives_test.go similarity index 75% rename from tsc/internal/fourslash/tests/goToDefinitionPrimitives_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionPrimitives_test.go index 6121f188b34a0..2cb0396e6caed 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionPrimitives_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionPrimitives_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionPrimitives(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionPrivateName_test.go b/tsc/pkg/fourslash/tests/goToDefinitionPrivateName_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionPrivateName_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionPrivateName_test.go index ee0373c905bd4..88810976bc196 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionPrivateName_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionPrivateName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionPrivateName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/goToDefinitionPropertyAssignment_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionPropertyAssignment_test.go index 18853f26616c1..6005ff5570e34 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionRest_test.go b/tsc/pkg/fourslash/tests/goToDefinitionRest_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionRest_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionRest_test.go index a914fc263af64..b88dbc3d086ef 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionRest_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionRest_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionRest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionReturn1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn1_test.go index 8570645d9b806..d820993826fed 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionReturn2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn2_test.go index 08270c0abb547..0f64464d8cc5c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionReturn3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn3_test.go index e6f1f342f51b0..49cbb74170445 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn4_test.go similarity index 75% rename from tsc/internal/fourslash/tests/goToDefinitionReturn4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn4_test.go index 71373b9ae3ea3..35710918b2c55 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionReturn5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn5_test.go index fb02407895f81..904c76fa3bc79 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn6_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn6_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionReturn6_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn6_test.go index f5d866d495f5d..4114f1abeeee7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn6_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionReturn7_test.go b/tsc/pkg/fourslash/tests/goToDefinitionReturn7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionReturn7_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionReturn7_test.go index 6c3d5eb58dc76..362f5a20943d6 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionReturn7_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionReturn7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionReturn7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSameFile_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSameFile_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToDefinitionSameFile_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSameFile_test.go index 30d68e076ef45..af51ddf169a47 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSameFile_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSameFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSameFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go index 25f524541b9b5..89ebb3298bcd5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSatisfiesExpression1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSatisfiesExpression1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionScriptImportServer_test.go b/tsc/pkg/fourslash/tests/goToDefinitionScriptImportServer_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToDefinitionScriptImportServer_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionScriptImportServer_test.go index 27fa85f1fa2f7..9e57ee2c1a126 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionScriptImportServer_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionScriptImportServer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionScriptImportServer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionScriptImport_test.go b/tsc/pkg/fourslash/tests/goToDefinitionScriptImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionScriptImport_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionScriptImport_test.go index 3698a678e52c6..2ccaf235a806f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionScriptImport_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionScriptImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionScriptImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go index 888a5219baea5..370ace396bfb2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShadowVariableInsideModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShadowVariableInsideModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShadowVariable_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShadowVariable_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionShadowVariable_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShadowVariable_test.go index f042e65441be4..0befd0ec1e36f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShadowVariable_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShadowVariable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShadowVariable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go index 4b383166e54cb..44abfc6a79f63 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandObjectLiteralWithInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandObjectLiteralWithInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty01_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty01_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty01_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty01_test.go index 3c71bb4516d08..796162fc9a7bb 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty01_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty02_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty02_test.go similarity index 75% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty02_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty02_test.go index 2321b8f83a001..a87c4de5599e4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty02_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty03_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty03_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty03_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty03_test.go index 5454b7d114591..2add510148923 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty03_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty04_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty04_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty04_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty04_test.go index d8a0988bd5280..e1fbbda9b6e1f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty04_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty05_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty05_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty05_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty05_test.go index 054a07ec529cc..016eb686f98aa 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty05_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty06_test.go b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty06_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionShorthandProperty06_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty06_test.go index aed37fa8e8976..1ba060dd67da0 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionShorthandProperty06_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionShorthandProperty06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionShorthandProperty06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_require_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_require_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_require_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_require_test.go index b52861b36fdb4..fed83ec12e28f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_require_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_require_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSignatureAlias_require(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_test.go similarity index 93% rename from tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_test.go index f36644e4a9bae..d9725f2a28bb2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSignatureAlias_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSignatureAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSignatureAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSimple_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSimple_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionSimple_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSimple_test.go index 538aa54667dc6..a8a354004c9b8 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSimple_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSimple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSimple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSourceUnit_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSourceUnit_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionSourceUnit_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSourceUnit_test.go index 05373bc028a27..151b245f909e7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSourceUnit_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSourceUnit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSourceUnit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase1_test.go index c1bcc78b6a0ad..94321dc8464f8 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase2_test.go index 58ce8262a408a..f742503c99d1b 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase3_test.go index 58cf5431325f6..9604ba2bcd87e 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase4_test.go index 773c4926257fe..9aef2c2938bbd 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase5_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase5_test.go similarity index 75% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase5_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase5_test.go index d4501a9489ac5..3365d3d2ecee1 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase5_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase6_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase6_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase6_test.go index 451cd736e6815..e5c6f09f2b03d 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase6_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase7_test.go b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToDefinitionSwitchCase7_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionSwitchCase7_test.go index 41ff1a5584240..4fa8f8dd016d1 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionSwitchCase7_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionSwitchCase7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionSwitchCase7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go b/tsc/pkg/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go index 7c7353c130d21..4f79add56f85c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionTaggedTemplateOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionTaggedTemplateOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionThis_test.go b/tsc/pkg/fourslash/tests/goToDefinitionThis_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionThis_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionThis_test.go index 3f571a045b239..3762e8db804e7 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionThis_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionTypeOnlyImport_test.go b/tsc/pkg/fourslash/tests/goToDefinitionTypeOnlyImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionTypeOnlyImport_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionTypeOnlyImport_test.go index 46b17219d790c..3ba4ea668d209 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionTypeOnlyImport_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionTypeOnlyImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionTypeOnlyImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionTypePredicate_test.go b/tsc/pkg/fourslash/tests/goToDefinitionTypePredicate_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToDefinitionTypePredicate_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionTypePredicate_test.go index b532667572425..904e548f2b40a 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionTypePredicate_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionTypePredicate_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionTypePredicate(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go b/tsc/pkg/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go index 678d01f70b5b2..a5de88c04be32 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionTypeReferenceDirective_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionTypeReferenceDirective(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionTypeofThis_test.go b/tsc/pkg/fourslash/tests/goToDefinitionTypeofThis_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionTypeofThis_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionTypeofThis_test.go index 8e7118755eebe..a91ae15af1b0c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionTypeofThis_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionTypeofThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionTypeofThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUndefinedSymbols_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUndefinedSymbols_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionUndefinedSymbols_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUndefinedSymbols_test.go index b42eac68c65a7..de91634fb6a66 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUndefinedSymbols_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUndefinedSymbols_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUndefinedSymbols(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go index 989e3869e6793..22fd85ce6cb82 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUnionTypeProperty1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go index b98f650412730..39ffc82130fd5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUnionTypeProperty2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go index 63af68f7825d0..789dcb3cdf3e0 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUnionTypeProperty3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go index 0176da6fec5d3..864614d69d9d5 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUnionTypeProperty4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go index cbe2d60f5ceb1..d43c8be08c6c2 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionUnionTypeProperty_discriminated_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionUnionTypeProperty_discriminated(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionVariableAssignment1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment1_test.go index 35f8699de1c24..e53f4e29b57e3 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionVariableAssignment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionVariableAssignment2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment2_test.go index 00e75ba3cfef4..691f8baf59340 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionVariableAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionVariableAssignment3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment3_test.go index 35cf97b803a61..13becc2967f1f 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionVariableAssignment3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment_test.go b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToDefinitionVariableAssignment_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment_test.go index d359a5e417500..da7d733c44f8b 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionVariableAssignment_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionVariableAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionVariableAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionYield1_test.go b/tsc/pkg/fourslash/tests/goToDefinitionYield1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionYield1_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionYield1_test.go index 53dc01d8a1838..5b3022d8ed21c 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionYield1_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionYield1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionYield1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionYield2_test.go b/tsc/pkg/fourslash/tests/goToDefinitionYield2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinitionYield2_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionYield2_test.go index b1606d1d702d2..3b3e62ecc01e4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionYield2_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionYield2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionYield2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionYield3_test.go b/tsc/pkg/fourslash/tests/goToDefinitionYield3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinitionYield3_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionYield3_test.go index 7172f4d0569d4..456381c7ab329 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionYield3_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionYield3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionYield3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinitionYield4_test.go b/tsc/pkg/fourslash/tests/goToDefinitionYield4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToDefinitionYield4_test.go rename to tsc/pkg/fourslash/tests/goToDefinitionYield4_test.go index f370a5cbd9a2d..71754c34721a4 100644 --- a/tsc/internal/fourslash/tests/goToDefinitionYield4_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinitionYield4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinitionYield4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go b/tsc/pkg/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go rename to tsc/pkg/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go index 16cf0702981bd..cc2d773ae7890 100644 --- a/tsc/internal/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinition_filteringGenericMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinition_filteringGenericMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinition_filteringMappedType_test.go b/tsc/pkg/fourslash/tests/goToDefinition_filteringMappedType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToDefinition_filteringMappedType_test.go rename to tsc/pkg/fourslash/tests/goToDefinition_filteringMappedType_test.go index a652e209a59ff..2a10024ddf2aa 100644 --- a/tsc/internal/fourslash/tests/goToDefinition_filteringMappedType_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinition_filteringMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinition_filteringMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinition_mappedType_test.go b/tsc/pkg/fourslash/tests/goToDefinition_mappedType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToDefinition_mappedType_test.go rename to tsc/pkg/fourslash/tests/goToDefinition_mappedType_test.go index e575767cf2f17..905b2cf7ccaa0 100644 --- a/tsc/internal/fourslash/tests/goToDefinition_mappedType_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinition_mappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinition_mappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinition_super_test.go b/tsc/pkg/fourslash/tests/goToDefinition_super_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToDefinition_super_test.go rename to tsc/pkg/fourslash/tests/goToDefinition_super_test.go index eb49b32318485..ec3976b301faf 100644 --- a/tsc/internal/fourslash/tests/goToDefinition_super_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinition_super_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinition_super(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToDefinition_untypedModule_test.go b/tsc/pkg/fourslash/tests/goToDefinition_untypedModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToDefinition_untypedModule_test.go rename to tsc/pkg/fourslash/tests/goToDefinition_untypedModule_test.go index 63b228cd5af79..503e8aacef873 100644 --- a/tsc/internal/fourslash/tests/goToDefinition_untypedModule_test.go +++ b/tsc/pkg/fourslash/tests/goToDefinition_untypedModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToDefinition_untypedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationClassMethod_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationClassMethod_00_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToImplementationClassMethod_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationClassMethod_00_test.go index 24e63aac84205..65fe8d9642d8a 100644 --- a/tsc/internal/fourslash/tests/goToImplementationClassMethod_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationClassMethod_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationClassMethod_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationClassMethod_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationClassMethod_01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToImplementationClassMethod_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationClassMethod_01_test.go index 5a15c66734256..c3c47bbdcb204 100644 --- a/tsc/internal/fourslash/tests/goToImplementationClassMethod_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationClassMethod_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationClassMethod_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationEnum_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationEnum_00_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationEnum_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationEnum_00_test.go index 8898b927e6bf0..20e4675eb3c48 100644 --- a/tsc/internal/fourslash/tests/goToImplementationEnum_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationEnum_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationEnum_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationEnum_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationEnum_01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationEnum_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationEnum_01_test.go index 9edf930f81277..037e9bfad766d 100644 --- a/tsc/internal/fourslash/tests/goToImplementationEnum_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationEnum_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationEnum_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_00_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_00_test.go index e457085fca167..e044f7c1f5911 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_01_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_01_test.go index 68fc084ac11d2..e4b2cf222981f 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_02_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_02_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_02_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_02_test.go index 7798f00effcd4..703debf001a0c 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_02_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_03_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_03_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_03_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_03_test.go index 3b3337011b064..d9946349c42ea 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_03_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_04_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_04_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_04_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_04_test.go index 6f5d25a522488..368e1c87ea05b 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_04_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_05_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_05_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_05_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_05_test.go index 594bce43bbc4d..f0492876f5266 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_05_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_06_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_06_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_06_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_06_test.go index a25402ff7a903..c3ae3b22b9d0e 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_06_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_08_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_08_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_08_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_08_test.go index 3eb5b37b0d523..bacc0173d0ed9 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_08_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_08_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_09_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_09_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_09_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_09_test.go index e1a5c0a6d8161..2006d9477d323 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_09_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_09_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_10_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_10_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_10_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_10_test.go index 7e66f45dbb2ff..52385fd1c1492 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_10_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_11_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_11_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_11_test.go index 13f4484b914a7..d618fabd6f2e8 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceMethod_11_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceMethod_11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceMethod_11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go index 84b13e5cbb8b2..cfdbf7b299249 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_00_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_00_test.go index 3529ed21ce5c1..572068c9035ed 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceProperty_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_01_test.go index 27cd2b49c6b52..8c9aa5bccb262 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterfaceProperty_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterfaceProperty_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterfaceProperty_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_00_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToImplementationInterface_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_00_test.go index 84f5d50c225bc..7ddb18d035ec2 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_01_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToImplementationInterface_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_01_test.go index f637a0039cd2b..5d1b037bc4191 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_02_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_02_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToImplementationInterface_02_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_02_test.go index a243006193932..e7bdd9d371fa2 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_02_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_03_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_03_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationInterface_03_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_03_test.go index 76868bf3624a1..a1caad283e51a 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_03_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_04_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_04_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationInterface_04_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_04_test.go index 0fc99d32b38cd..ac0badc1dcb02 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_04_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_05_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_05_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationInterface_05_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_05_test.go index 0a4d77c70a06b..7b3e9a9d7cac0 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_05_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_06_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_06_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationInterface_06_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_06_test.go index 3064310bb50aa..e50216fa67c13 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_06_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_07_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_07_test.go similarity index 92% rename from tsc/internal/fourslash/tests/goToImplementationInterface_07_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_07_test.go index 9c903d48d1803..118d97f8f3715 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_07_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_07_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_08_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_08_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationInterface_08_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_08_test.go index a1ad0659b28e9..fddeb9592c0ff 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_08_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_08_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_09_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_09_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToImplementationInterface_09_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_09_test.go index 8b175ee202ed3..049394a967a9d 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_09_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_09_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInterface_10_test.go b/tsc/pkg/fourslash/tests/goToImplementationInterface_10_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToImplementationInterface_10_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInterface_10_test.go index 000346ca06e21..1e2cd08586f5a 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInterface_10_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInterface_10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInterface_10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationInvalid_test.go b/tsc/pkg/fourslash/tests/goToImplementationInvalid_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToImplementationInvalid_test.go rename to tsc/pkg/fourslash/tests/goToImplementationInvalid_test.go index 09bce95f04980..4ca80a751dfc7 100644 --- a/tsc/internal/fourslash/tests/goToImplementationInvalid_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationInvalid_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationInvalid(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_00_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToImplementationLocal_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_00_test.go index 04bc997271191..55b9d90cf485b 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_01_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToImplementationLocal_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_01_test.go index e9bb959ba9aeb..16fa903f0922d 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_02_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_02_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToImplementationLocal_02_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_02_test.go index c4b734fcab757..d1397cb156fb0 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_02_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_03_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_03_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToImplementationLocal_03_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_03_test.go index fca6baa2eebe7..fbb4fd6314f1b 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_03_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_04_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_04_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToImplementationLocal_04_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_04_test.go index 9c6793fd40089..2cc5dc1f384c0 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_04_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_05_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_05_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationLocal_05_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_05_test.go index e958676a1ed5b..26cbfd08cb892 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_05_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_06_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_06_test.go similarity index 77% rename from tsc/internal/fourslash/tests/goToImplementationLocal_06_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_06_test.go index cc374f85573e2..19b3bcfa5f83a 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_06_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_07_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_07_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationLocal_07_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_07_test.go index 7fe519403415f..489971a2c4d51 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_07_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_07_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationLocal_08_test.go b/tsc/pkg/fourslash/tests/goToImplementationLocal_08_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationLocal_08_test.go rename to tsc/pkg/fourslash/tests/goToImplementationLocal_08_test.go index c64a43dbdf4ce..a47f947c75b09 100644 --- a/tsc/internal/fourslash/tests/goToImplementationLocal_08_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationLocal_08_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationLocal_08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_00_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_00_test.go index fff02dec6446a..8b903f52ddb43 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_01_test.go index c14ddfd32e073..208585b8e050a 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_02_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_02_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_02_test.go index a8505d3c33f5d..e1050fa4fa1f2 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_02_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_03_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_03_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_03_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_03_test.go index 6414402316019..f5d0e10f2d6f3 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_03_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_04_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_04_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_04_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_04_test.go index 8e46375278c28..788051f10d78c 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_04_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_05_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_05_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_05_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_05_test.go index 7c7898f0c7bec..65438992f2e2c 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_05_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNamespace_06_test.go b/tsc/pkg/fourslash/tests/goToImplementationNamespace_06_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationNamespace_06_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNamespace_06_test.go index eddb512acab44..87625dbc86c17 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNamespace_06_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNamespace_06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNamespace_06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go b/tsc/pkg/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go index e2e678903b979..28691629e1bd5 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNoCrashMultiSourceDts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNoCrashMultiSourceDts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go b/tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go index 6570500048049..a6b6e6d8c8f43 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNoCrashTripleSlashRef2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go b/tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go index fd281dd4f93a7..39cc3ec76c42c 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNoCrashTripleSlashRef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNoCrashTripleSlashRef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go b/tsc/pkg/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go rename to tsc/pkg/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go index 8798b65e2df60..cb030f0fd12d7 100644 --- a/tsc/internal/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationNoCrashUMDWithDynamicImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationNoCrashUMDWithDynamicImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go index 591785b8608ac..e51a3c75a8a33 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReachingNonExistentExport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go index 608f728eadbb6..5235725b409ea 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReachingNonExistentExport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go index 4ab8cac39844b..77859c34dbc63 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReachingNonExistentExport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReachingNonExistentExport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go index 21481f8e06bbb..f81bc619c82e3 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReexportedTypeOnlyNamespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go index 7e3291e4c49fe..6cb017f8a2410 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReexportedTypeOnlyNamespace2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go rename to tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go index 07d616cd98f55..aba07ecd1fd65 100644 --- a/tsc/internal/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationReexportedTypeOnlyNamespace3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationReexportedTypeOnlyNamespace3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go index b79bb42860688..2d59f747ec9d6 100644 --- a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationShorthandPropertyAssignment_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go similarity index 90% rename from tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go index bd6c28219d59a..754d0c434e9b2 100644 --- a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationShorthandPropertyAssignment_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go rename to tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go index c25a624332736..c1f4d112f80c1 100644 --- a/tsc/internal/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationShorthandPropertyAssignment_02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationShorthandPropertyAssignment_02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationSuper_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationSuper_00_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationSuper_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationSuper_00_test.go index 4f41db887ba51..e38ba691808ba 100644 --- a/tsc/internal/fourslash/tests/goToImplementationSuper_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationSuper_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationSuper_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationSuper_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationSuper_01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationSuper_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationSuper_01_test.go index db6f4dd49b6f1..8da9a89c1ae5f 100644 --- a/tsc/internal/fourslash/tests/goToImplementationSuper_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationSuper_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationSuper_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationThis_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationThis_00_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementationThis_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationThis_00_test.go index 54ce99005e806..859c6d8eca3fd 100644 --- a/tsc/internal/fourslash/tests/goToImplementationThis_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationThis_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationThis_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationThis_01_test.go b/tsc/pkg/fourslash/tests/goToImplementationThis_01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToImplementationThis_01_test.go rename to tsc/pkg/fourslash/tests/goToImplementationThis_01_test.go index 2e4fc4d419c10..9b203ee099efe 100644 --- a/tsc/internal/fourslash/tests/goToImplementationThis_01_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationThis_01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationThis_01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementationTypeAlias_00_test.go b/tsc/pkg/fourslash/tests/goToImplementationTypeAlias_00_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToImplementationTypeAlias_00_test.go rename to tsc/pkg/fourslash/tests/goToImplementationTypeAlias_00_test.go index b481fc16a75c8..c6980ad77589c 100644 --- a/tsc/internal/fourslash/tests/goToImplementationTypeAlias_00_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementationTypeAlias_00_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementationTypeAlias_00(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementation_inDifferentFiles_test.go b/tsc/pkg/fourslash/tests/goToImplementation_inDifferentFiles_test.go similarity index 84% rename from tsc/internal/fourslash/tests/goToImplementation_inDifferentFiles_test.go rename to tsc/pkg/fourslash/tests/goToImplementation_inDifferentFiles_test.go index fca24ab156267..209b8b7da1fbe 100644 --- a/tsc/internal/fourslash/tests/goToImplementation_inDifferentFiles_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementation_inDifferentFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementation_inDifferentFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToImplementation_satisfies_test.go b/tsc/pkg/fourslash/tests/goToImplementation_satisfies_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToImplementation_satisfies_test.go rename to tsc/pkg/fourslash/tests/goToImplementation_satisfies_test.go index 619a329ad5e00..a600a22765ceb 100644 --- a/tsc/internal/fourslash/tests/goToImplementation_satisfies_test.go +++ b/tsc/pkg/fourslash/tests/goToImplementation_satisfies_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToImplementation_satisfies(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToModuleAliasDefinition_test.go b/tsc/pkg/fourslash/tests/goToModuleAliasDefinition_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToModuleAliasDefinition_test.go rename to tsc/pkg/fourslash/tests/goToModuleAliasDefinition_test.go index db20d86e1956d..35524d174ba9c 100644 --- a/tsc/internal/fourslash/tests/goToModuleAliasDefinition_test.go +++ b/tsc/pkg/fourslash/tests/goToModuleAliasDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToModuleAliasDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource10_mapFromAtTypes3_test.go b/tsc/pkg/fourslash/tests/goToSource10_mapFromAtTypes3_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSource10_mapFromAtTypes3_test.go rename to tsc/pkg/fourslash/tests/goToSource10_mapFromAtTypes3_test.go index b49845d32a03d..d6921efb1bf31 100644 --- a/tsc/internal/fourslash/tests/goToSource10_mapFromAtTypes3_test.go +++ b/tsc/pkg/fourslash/tests/goToSource10_mapFromAtTypes3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource10_mapFromAtTypes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource11_propertyOfAlias_test.go b/tsc/pkg/fourslash/tests/goToSource11_propertyOfAlias_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToSource11_propertyOfAlias_test.go rename to tsc/pkg/fourslash/tests/goToSource11_propertyOfAlias_test.go index f104939c585ff..3d3876883ce0e 100644 --- a/tsc/internal/fourslash/tests/goToSource11_propertyOfAlias_test.go +++ b/tsc/pkg/fourslash/tests/goToSource11_propertyOfAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource11_propertyOfAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource12_callbackParam_test.go b/tsc/pkg/fourslash/tests/goToSource12_callbackParam_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToSource12_callbackParam_test.go rename to tsc/pkg/fourslash/tests/goToSource12_callbackParam_test.go index 2a2450b090b95..01d3c2f0a1990 100644 --- a/tsc/internal/fourslash/tests/goToSource12_callbackParam_test.go +++ b/tsc/pkg/fourslash/tests/goToSource12_callbackParam_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource12_callbackParam(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource13_nodenext_test.go b/tsc/pkg/fourslash/tests/goToSource13_nodenext_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToSource13_nodenext_test.go rename to tsc/pkg/fourslash/tests/goToSource13_nodenext_test.go index 48e4ee718f425..906ddf298f7d8 100644 --- a/tsc/internal/fourslash/tests/goToSource13_nodenext_test.go +++ b/tsc/pkg/fourslash/tests/goToSource13_nodenext_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource13_nodenext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go b/tsc/pkg/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go rename to tsc/pkg/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go index 3df37f76304b8..7b394f20d686d 100644 --- a/tsc/internal/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/goToSource14_unresolvedRequireDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource14_unresolvedRequireDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource15_bundler_test.go b/tsc/pkg/fourslash/tests/goToSource15_bundler_test.go similarity index 92% rename from tsc/internal/fourslash/tests/goToSource15_bundler_test.go rename to tsc/pkg/fourslash/tests/goToSource15_bundler_test.go index cb12934ed813a..8baa2acf870c1 100644 --- a/tsc/internal/fourslash/tests/goToSource15_bundler_test.go +++ b/tsc/pkg/fourslash/tests/goToSource15_bundler_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource15_bundler(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go b/tsc/pkg/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go similarity index 92% rename from tsc/internal/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go rename to tsc/pkg/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go index b4690d34d61a4..0f207387cc61b 100644 --- a/tsc/internal/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go +++ b/tsc/pkg/fourslash/tests/goToSource16_callbackParamDifferentFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource16_callbackParamDifferentFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource17_AddsFileToProject_test.go b/tsc/pkg/fourslash/tests/goToSource17_AddsFileToProject_test.go similarity index 93% rename from tsc/internal/fourslash/tests/goToSource17_AddsFileToProject_test.go rename to tsc/pkg/fourslash/tests/goToSource17_AddsFileToProject_test.go index 79c6a613f0b71..f49f771e17a19 100644 --- a/tsc/internal/fourslash/tests/goToSource17_AddsFileToProject_test.go +++ b/tsc/pkg/fourslash/tests/goToSource17_AddsFileToProject_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource17_AddsFileToProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go b/tsc/pkg/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go similarity index 93% rename from tsc/internal/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go rename to tsc/pkg/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go index 192544c6ab900..a71fe931f9bbe 100644 --- a/tsc/internal/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go +++ b/tsc/pkg/fourslash/tests/goToSource18_reusedFromDifferentFolder_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource18_reusedFromDifferentFolder(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource1_localJsBesideDts_test.go b/tsc/pkg/fourslash/tests/goToSource1_localJsBesideDts_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToSource1_localJsBesideDts_test.go rename to tsc/pkg/fourslash/tests/goToSource1_localJsBesideDts_test.go index a5bef31b07880..e7c76414ffe5c 100644 --- a/tsc/internal/fourslash/tests/goToSource1_localJsBesideDts_test.go +++ b/tsc/pkg/fourslash/tests/goToSource1_localJsBesideDts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource1_localJsBesideDts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go b/tsc/pkg/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go rename to tsc/pkg/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go index ccefc765b9cf9..3c190d61ce802 100644 --- a/tsc/internal/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToSource2_nodeModulesWithTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource2_nodeModulesWithTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go b/tsc/pkg/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go rename to tsc/pkg/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go index 18b12687d57e4..5bacac0cf31ff 100644 --- a/tsc/internal/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToSource3_nodeModulesAtTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource3_nodeModulesAtTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource5_sameAsGoToDef1_test.go b/tsc/pkg/fourslash/tests/goToSource5_sameAsGoToDef1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToSource5_sameAsGoToDef1_test.go rename to tsc/pkg/fourslash/tests/goToSource5_sameAsGoToDef1_test.go index 06e0d420b74d2..bf4d3f6fdd225 100644 --- a/tsc/internal/fourslash/tests/goToSource5_sameAsGoToDef1_test.go +++ b/tsc/pkg/fourslash/tests/goToSource5_sameAsGoToDef1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource5_sameAsGoToDef1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource6_sameAsGoToDef2_test.go b/tsc/pkg/fourslash/tests/goToSource6_sameAsGoToDef2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/goToSource6_sameAsGoToDef2_test.go rename to tsc/pkg/fourslash/tests/goToSource6_sameAsGoToDef2_test.go index 624505e320f07..2f0251b4f52f8 100644 --- a/tsc/internal/fourslash/tests/goToSource6_sameAsGoToDef2_test.go +++ b/tsc/pkg/fourslash/tests/goToSource6_sameAsGoToDef2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource6_sameAsGoToDef2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource7_conditionallyMinified_test.go b/tsc/pkg/fourslash/tests/goToSource7_conditionallyMinified_test.go similarity index 92% rename from tsc/internal/fourslash/tests/goToSource7_conditionallyMinified_test.go rename to tsc/pkg/fourslash/tests/goToSource7_conditionallyMinified_test.go index 6d93d4ba55f79..2e89ba7d62e7c 100644 --- a/tsc/internal/fourslash/tests/goToSource7_conditionallyMinified_test.go +++ b/tsc/pkg/fourslash/tests/goToSource7_conditionallyMinified_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource7_conditionallyMinified(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource8_mapFromAtTypes_test.go b/tsc/pkg/fourslash/tests/goToSource8_mapFromAtTypes_test.go similarity index 96% rename from tsc/internal/fourslash/tests/goToSource8_mapFromAtTypes_test.go rename to tsc/pkg/fourslash/tests/goToSource8_mapFromAtTypes_test.go index a02ef8938114f..7cacd7a1086bf 100644 --- a/tsc/internal/fourslash/tests/goToSource8_mapFromAtTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToSource8_mapFromAtTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource8_mapFromAtTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSource9_mapFromAtTypes2_test.go b/tsc/pkg/fourslash/tests/goToSource9_mapFromAtTypes2_test.go similarity index 96% rename from tsc/internal/fourslash/tests/goToSource9_mapFromAtTypes2_test.go rename to tsc/pkg/fourslash/tests/goToSource9_mapFromAtTypes2_test.go index 4fe160a45af6e..cc069b1873a67 100644 --- a/tsc/internal/fourslash/tests/goToSource9_mapFromAtTypes2_test.go +++ b/tsc/pkg/fourslash/tests/goToSource9_mapFromAtTypes2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSource9_mapFromAtTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go index 15c9af28b47fb..dba83ce32c42d 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportUsage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceAliasedImportAtUsageSite(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go index fd037654d28bc..cd05e469a1eb7 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionAliasedImportWithPrecedingExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceAliasedImportWithPrecedingExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionDefaultExport_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultExport_test.go similarity index 98% rename from tsc/internal/fourslash/tests/goToSourceDefinitionDefaultExport_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultExport_test.go index 2b95c3b61ad32..1ffea47dbbcfd 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionDefaultExport_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceNamedAndDefaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go index 5f1a50200fd05..4db8dfcc75041 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionDefaultUsageSite_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceDefaultImportUsageSiteChecker(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go similarity index 94% rename from tsc/internal/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go index dc00aab2b6b57..7bce254a0b7b6 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionEmptyAndMissing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceDefinitionEmptyJsFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go index 012e164ee29ab..b96a98789962c 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionExtensionlessMappedSource_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // A declaration map can name anything in its `sources`, including a file whose diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionImportVariants_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionImportVariants_test.go similarity index 94% rename from tsc/internal/fourslash/tests/goToSourceDefinitionImportVariants_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionImportVariants_test.go index 0886a0e451c23..0bcc12d5fb39f 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionImportVariants_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionImportVariants_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceRequireCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionImports_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionImports_test.go similarity index 99% rename from tsc/internal/fourslash/tests/goToSourceDefinitionImports_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionImports_test.go index b2e98da807040..0484c1d2f5e58 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionImports_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceAliasedImportExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go similarity index 90% rename from tsc/internal/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go index 50758816316ca..c5826813e613a 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionMergedDeclarations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceMergedDeclarationDedup(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go similarity index 93% rename from tsc/internal/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go index e4e98f7106b86..0467e05c74cf2 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionNestedNodeModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceNestedNodeModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionNestedScope_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionNestedScope_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionNestedScope_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionNestedScope_test.go index 0cc9890334960..dedff1473d0d2 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionNestedScope_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionNestedScope_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceNestedScopeShadowing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go similarity index 87% rename from tsc/internal/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go index 184820df71655..9e01526f61df0 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionNonNodeModulesDts_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceFindImplementationNonNodeModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionPackageResolution_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionPackageResolution_test.go similarity index 97% rename from tsc/internal/fourslash/tests/goToSourceDefinitionPackageResolution_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionPackageResolution_test.go index 35be95b0e8f49..a59b35b5fb79e 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionPackageResolution_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionPackageResolution_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceAtTypesPackage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionProperties_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionProperties_test.go similarity index 97% rename from tsc/internal/fourslash/tests/goToSourceDefinitionProperties_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionProperties_test.go index 0731ed26ed58e..ca53dc7f5bcca 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionProperties_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceAccessExpressionProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go similarity index 96% rename from tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go index d2709625d6a06..da75d5a5d7116 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccessNoDecl_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourcePropertyAccessNoDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go index 7df15a00f66f4..704ebc5aadbfb 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionPropertyAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceMappedTypePropertyWithMatch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionReExportChain_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionReExportChain_test.go similarity index 90% rename from tsc/internal/fourslash/tests/goToSourceDefinitionReExportChain_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionReExportChain_test.go index a0f9808cdedb4..b8d3375f63d78 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionReExportChain_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionReExportChain_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceForwardedReExportChain(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionScopedPackage_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionScopedPackage_test.go similarity index 94% rename from tsc/internal/fourslash/tests/goToSourceDefinitionScopedPackage_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionScopedPackage_test.go index a1dcc254aa54a..b0ddb634d0b16 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionScopedPackage_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionScopedPackage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceScopedPackage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go index 20cb3d795ed60..0bb3f5110d0ad 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlashUnresolved_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceDefinitionUnresolvedTripleSlash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlash_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlash_test.go similarity index 95% rename from tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlash_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlash_test.go index 58ff985176f4f..de4dcec4e3714 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionTripleSlash_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionTripleSlash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceReferenceTypesToJS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go similarity index 96% rename from tsc/internal/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go index 13e2787ae5589..b1aff87cbf568 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionTypeOnlySymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceDefinitionTypeOnlyImportFallsBackToDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinitionTypes_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinitionTypes_test.go similarity index 96% rename from tsc/internal/fourslash/tests/goToSourceDefinitionTypes_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinitionTypes_test.go index 515551aa986fb..593e0c1994308 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinitionTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinitionTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceFallbacksToDefinitionForInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToSourceDefinition_test.go b/tsc/pkg/fourslash/tests/goToSourceDefinition_test.go similarity index 98% rename from tsc/internal/fourslash/tests/goToSourceDefinition_test.go rename to tsc/pkg/fourslash/tests/goToSourceDefinition_test.go index 5aca42950a659..68f7c8218dda1 100644 --- a/tsc/internal/fourslash/tests/goToSourceDefinition_test.go +++ b/tsc/pkg/fourslash/tests/goToSourceDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToSourceNodeModulesWithTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition2_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToTypeDefinition2_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition2_test.go index 537cd36f626dd..e9cc6032c3b44 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition2_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition3_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/goToTypeDefinition3_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition3_test.go index 54cf72cd86215..190096fc870b2 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition3_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition4_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToTypeDefinition4_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition4_test.go index 5acecd7f5b168..918f1a4df0823 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition4_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition5_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToTypeDefinition5_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition5_test.go index 0dc3c683cca60..a2a5b450af481 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition5_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionAliases_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionAliases_test.go similarity index 86% rename from tsc/internal/fourslash/tests/goToTypeDefinitionAliases_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionAliases_test.go index b1c7f8abb6bf1..2ca4bb4744b0b 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionAliases_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionAliases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionAliases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionEnumMembers_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionEnumMembers_test.go similarity index 78% rename from tsc/internal/fourslash/tests/goToTypeDefinitionEnumMembers_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionEnumMembers_test.go index 604d73ac25493..ed1a33dbe39e8 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionEnumMembers_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionEnumMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionEnumMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionImportMeta_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionImportMeta_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToTypeDefinitionImportMeta_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionImportMeta_test.go index 63f9c549abf5e..11e3e65b7d75a 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionImportMeta_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionImportMeta_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionImportMeta(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionModifiers_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionModifiers_test.go similarity index 88% rename from tsc/internal/fourslash/tests/goToTypeDefinitionModifiers_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionModifiers_test.go index 23023ab75a4d7..fd1f9ad079f96 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionModifiers_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionModifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionModule_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToTypeDefinitionModule_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionModule_test.go index ac8bc1a426b82..e7e6898e2c7d8 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionModule_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionPrimitives_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionPrimitives_test.go similarity index 83% rename from tsc/internal/fourslash/tests/goToTypeDefinitionPrimitives_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionPrimitives_test.go index beb25aa944141..35be265412dde 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionPrimitives_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionPrimitives_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionPrimitives(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinitionUnionType_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinitionUnionType_test.go similarity index 81% rename from tsc/internal/fourslash/tests/goToTypeDefinitionUnionType_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinitionUnionType_test.go index 231e4a9af925b..0db229c7dd989 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinitionUnionType_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinitionUnionType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinitionUnionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_Pick_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_Pick_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToTypeDefinition_Pick_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_Pick_test.go index 33200fea3d9c5..9f88e5ef2e466 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_Pick_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_Pick_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_Pick(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_arrayType_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_arrayType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/goToTypeDefinition_arrayType_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_arrayType_test.go index cedeed6b90c28..2c4e25b4ab4b3 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_arrayType_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_arrayType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_arrayType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_promiseType_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_promiseType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/goToTypeDefinition_promiseType_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_promiseType_test.go index b2966bc75d481..8d2d4d448ea46 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_promiseType_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_promiseType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_promiseType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_returnType_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_returnType_test.go similarity index 89% rename from tsc/internal/fourslash/tests/goToTypeDefinition_returnType_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_returnType_test.go index b9689befb32bd..4c4b2a4ea8f2d 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_returnType_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_returnType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_returnType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToTypeDefinition_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_test.go index 6e1249e12a592..cc818ce644222 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_typeReference_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_typeReference_test.go similarity index 79% rename from tsc/internal/fourslash/tests/goToTypeDefinition_typeReference_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_typeReference_test.go index 91a957bcda8b8..7654235086288 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_typeReference_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_typeReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_typeReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeDefinition_typedef_test.go b/tsc/pkg/fourslash/tests/goToTypeDefinition_typedef_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToTypeDefinition_typedef_test.go rename to tsc/pkg/fourslash/tests/goToTypeDefinition_typedef_test.go index 0ad742129f8f8..18a5156d18bf8 100644 --- a/tsc/internal/fourslash/tests/goToTypeDefinition_typedef_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeDefinition_typedef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeDefinition_typedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/goToTypeWithTupleTypes_test.go b/tsc/pkg/fourslash/tests/goToTypeWithTupleTypes_test.go similarity index 80% rename from tsc/internal/fourslash/tests/goToTypeWithTupleTypes_test.go rename to tsc/pkg/fourslash/tests/goToTypeWithTupleTypes_test.go index b13e18b7f1a5f..b1d8240a105b9 100644 --- a/tsc/internal/fourslash/tests/goToTypeWithTupleTypes_test.go +++ b/tsc/pkg/fourslash/tests/goToTypeWithTupleTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGoToTypeWithTupleTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionConstructorFunction_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionConstructorFunction_test.go similarity index 83% rename from tsc/internal/fourslash/tests/gotoDefinitionConstructorFunction_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionConstructorFunction_test.go index 8ef07225c5acc..829ace4b0a4c0 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionConstructorFunction_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionConstructorFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionConstructorFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go index cd59efda25db9..5cf436a1d3a13 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionInObjectBindingPattern1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go index 40ce6ea87515a..a9a7c00331bdf 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionInObjectBindingPattern2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionInObjectBindingPattern2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag1_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag1_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag1_test.go index 861cf9e1d20fb..c3fb735e28669 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag1_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag2_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag2_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag2_test.go index 34f1a1776679f..af68017fb2f02 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag2_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag3_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag3_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag3_test.go index 7315e783ee1cb..f91e1b7d95bfd 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag3_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag4_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag4_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag4_test.go index fee44c412c717..7d2a018f3d890 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag4_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag5_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag5_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag5_test.go index 6727c0b8bb6e7..27c7d80412dd2 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag5_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag6_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag6_test.go similarity index 76% rename from tsc/internal/fourslash/tests/gotoDefinitionLinkTag6_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionLinkTag6_test.go index 827e96b1dab14..f9682e6c5cd3f 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionLinkTag6_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionLinkTag6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionLinkTag6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go similarity index 80% rename from tsc/internal/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go index 933139d071fb3..f428536cf40f9 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionPropertyAccessExpressionHeritageClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionPropertyAccessExpressionHeritageClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionSatisfiesTag_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionSatisfiesTag_test.go similarity index 82% rename from tsc/internal/fourslash/tests/gotoDefinitionSatisfiesTag_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionSatisfiesTag_test.go index f964148deaeaa..b3f0fc32be671 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionSatisfiesTag_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionSatisfiesTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionSatisfiesTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/gotoDefinitionThrowsTag_test.go b/tsc/pkg/fourslash/tests/gotoDefinitionThrowsTag_test.go similarity index 78% rename from tsc/internal/fourslash/tests/gotoDefinitionThrowsTag_test.go rename to tsc/pkg/fourslash/tests/gotoDefinitionThrowsTag_test.go index f0351c78e1941..c98ee6133d719 100644 --- a/tsc/internal/fourslash/tests/gotoDefinitionThrowsTag_test.go +++ b/tsc/pkg/fourslash/tests/gotoDefinitionThrowsTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestGotoDefinitionThrowsTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/highlightsForExportFromUnfoundModule_test.go b/tsc/pkg/fourslash/tests/highlightsForExportFromUnfoundModule_test.go similarity index 81% rename from tsc/internal/fourslash/tests/highlightsForExportFromUnfoundModule_test.go rename to tsc/pkg/fourslash/tests/highlightsForExportFromUnfoundModule_test.go index 1523243cc9e38..6c65681cfe71d 100644 --- a/tsc/internal/fourslash/tests/highlightsForExportFromUnfoundModule_test.go +++ b/tsc/pkg/fourslash/tests/highlightsForExportFromUnfoundModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHighlightsForExportFromUnfoundModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverAliasInImportedFile_test.go b/tsc/pkg/fourslash/tests/hoverAliasInImportedFile_test.go similarity index 87% rename from tsc/internal/fourslash/tests/hoverAliasInImportedFile_test.go rename to tsc/pkg/fourslash/tests/hoverAliasInImportedFile_test.go index ae385e70d8088..32156d3336321 100644 --- a/tsc/internal/fourslash/tests/hoverAliasInImportedFile_test.go +++ b/tsc/pkg/fourslash/tests/hoverAliasInImportedFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverAliasInImportedFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverCallSignatureDocumentation_test.go b/tsc/pkg/fourslash/tests/hoverCallSignatureDocumentation_test.go similarity index 84% rename from tsc/internal/fourslash/tests/hoverCallSignatureDocumentation_test.go rename to tsc/pkg/fourslash/tests/hoverCallSignatureDocumentation_test.go index 65c8c8c8891a2..900b1440a354b 100644 --- a/tsc/internal/fourslash/tests/hoverCallSignatureDocumentation_test.go +++ b/tsc/pkg/fourslash/tests/hoverCallSignatureDocumentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverCallSignatureDocumentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverCircularInheritedDocumentation_test.go b/tsc/pkg/fourslash/tests/hoverCircularInheritedDocumentation_test.go similarity index 93% rename from tsc/internal/fourslash/tests/hoverCircularInheritedDocumentation_test.go rename to tsc/pkg/fourslash/tests/hoverCircularInheritedDocumentation_test.go index e35a931d99453..cd3ce8e072d8f 100644 --- a/tsc/internal/fourslash/tests/hoverCircularInheritedDocumentation_test.go +++ b/tsc/pkg/fourslash/tests/hoverCircularInheritedDocumentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Regression test for a stack overflow in getJSDocOrTag (issue #4380). diff --git a/tsc/internal/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go b/tsc/pkg/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go similarity index 88% rename from tsc/internal/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go rename to tsc/pkg/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go index 1b79314469901..ff6f5c3ab3457 100644 --- a/tsc/internal/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/hoverMappedTypePropertyJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverMappedTypePropertyJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverMixinOverrideDocumentation_test.go b/tsc/pkg/fourslash/tests/hoverMixinOverrideDocumentation_test.go similarity index 86% rename from tsc/internal/fourslash/tests/hoverMixinOverrideDocumentation_test.go rename to tsc/pkg/fourslash/tests/hoverMixinOverrideDocumentation_test.go index 5beebbabc4458..a8337328676c6 100644 --- a/tsc/internal/fourslash/tests/hoverMixinOverrideDocumentation_test.go +++ b/tsc/pkg/fourslash/tests/hoverMixinOverrideDocumentation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverMixinOverrideDocumentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverNilBaseSymbolIntersection_test.go b/tsc/pkg/fourslash/tests/hoverNilBaseSymbolIntersection_test.go similarity index 85% rename from tsc/internal/fourslash/tests/hoverNilBaseSymbolIntersection_test.go rename to tsc/pkg/fourslash/tests/hoverNilBaseSymbolIntersection_test.go index 69e1c2a1fc2d7..bd27cad6862df 100644 --- a/tsc/internal/fourslash/tests/hoverNilBaseSymbolIntersection_test.go +++ b/tsc/pkg/fourslash/tests/hoverNilBaseSymbolIntersection_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverNilBaseSymbolIntersection(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverOptionalMembers_test.go b/tsc/pkg/fourslash/tests/hoverOptionalMembers_test.go similarity index 93% rename from tsc/internal/fourslash/tests/hoverOptionalMembers_test.go rename to tsc/pkg/fourslash/tests/hoverOptionalMembers_test.go index 2fee4fd6822ea..bc65b44fdc459 100644 --- a/tsc/internal/fourslash/tests/hoverOptionalMembers_test.go +++ b/tsc/pkg/fourslash/tests/hoverOptionalMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverOptionalMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverOverComment_test.go b/tsc/pkg/fourslash/tests/hoverOverComment_test.go similarity index 80% rename from tsc/internal/fourslash/tests/hoverOverComment_test.go rename to tsc/pkg/fourslash/tests/hoverOverComment_test.go index 00bc2d0c29f38..21dfc0e31b201 100644 --- a/tsc/internal/fourslash/tests/hoverOverComment_test.go +++ b/tsc/pkg/fourslash/tests/hoverOverComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverOverComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverOverPrivateName_test.go b/tsc/pkg/fourslash/tests/hoverOverPrivateName_test.go similarity index 90% rename from tsc/internal/fourslash/tests/hoverOverPrivateName_test.go rename to tsc/pkg/fourslash/tests/hoverOverPrivateName_test.go index 4c0bac8a3b005..01dd84a38deb7 100644 --- a/tsc/internal/fourslash/tests/hoverOverPrivateName_test.go +++ b/tsc/pkg/fourslash/tests/hoverOverPrivateName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverOverPrivateName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverQualifiedGenericNames_test.go b/tsc/pkg/fourslash/tests/hoverQualifiedGenericNames_test.go similarity index 85% rename from tsc/internal/fourslash/tests/hoverQualifiedGenericNames_test.go rename to tsc/pkg/fourslash/tests/hoverQualifiedGenericNames_test.go index c457461bbc340..274b7bdb3b32e 100644 --- a/tsc/internal/fourslash/tests/hoverQualifiedGenericNames_test.go +++ b/tsc/pkg/fourslash/tests/hoverQualifiedGenericNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestHoverQualifiedGenericNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go b/tsc/pkg/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go similarity index 93% rename from tsc/internal/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go rename to tsc/pkg/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go index df0169ce7247c..c15f2ddf93b7b 100644 --- a/tsc/internal/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/hoverSelfReExportedNamespaceGenericNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // A self-re-exported namespace can merge with a generic type of the same name. diff --git a/tsc/internal/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go b/tsc/pkg/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go similarity index 83% rename from tsc/internal/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go rename to tsc/pkg/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go index 74fc12bf2fa58..50982566f40d2 100644 --- a/tsc/internal/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go +++ b/tsc/pkg/fourslash/tests/hoverThenDiagnosticsJsxIntrinsic_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) -// Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3638 +// Regression test for https://github.com/frida/TypeScript/tsc/issues/3638 // // A `textDocument/hover` on a JSX intrinsic element used to cause the // subsequent `textDocument/diagnostic` pull to spuriously report diff --git a/tsc/internal/fourslash/tests/identifierErrorRecovery_test.go b/tsc/pkg/fourslash/tests/identifierErrorRecovery_test.go similarity index 82% rename from tsc/internal/fourslash/tests/identifierErrorRecovery_test.go rename to tsc/pkg/fourslash/tests/identifierErrorRecovery_test.go index dc053f66e3843..834abe5dd004c 100644 --- a/tsc/internal/fourslash/tests/identifierErrorRecovery_test.go +++ b/tsc/pkg/fourslash/tests/identifierErrorRecovery_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIdentifierErrorRecovery(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/implementation01_test.go b/tsc/pkg/fourslash/tests/implementation01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/implementation01_test.go rename to tsc/pkg/fourslash/tests/implementation01_test.go index b93a8b92fe818..c56c7f8b5e10f 100644 --- a/tsc/internal/fourslash/tests/implementation01_test.go +++ b/tsc/pkg/fourslash/tests/implementation01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImplementation01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importAllowRenameOfImportPath_test.go b/tsc/pkg/fourslash/tests/importAllowRenameOfImportPath_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importAllowRenameOfImportPath_test.go rename to tsc/pkg/fourslash/tests/importAllowRenameOfImportPath_test.go index 6465cfa65b4b5..908e97aa0fe1f 100644 --- a/tsc/internal/fourslash/tests/importAllowRenameOfImportPath_test.go +++ b/tsc/pkg/fourslash/tests/importAllowRenameOfImportPath_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestAllowRenameOfImportPath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importAttributesTypesLanguageService_test.go b/tsc/pkg/fourslash/tests/importAttributesTypesLanguageService_test.go similarity index 95% rename from tsc/internal/fourslash/tests/importAttributesTypesLanguageService_test.go rename to tsc/pkg/fourslash/tests/importAttributesTypesLanguageService_test.go index a6837ce139af1..e318e831eaa94 100644 --- a/tsc/internal/fourslash/tests/importAttributesTypesLanguageService_test.go +++ b/tsc/pkg/fourslash/tests/importAttributesTypesLanguageService_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCompletionsPatternAmbientModuleWithImportAttributes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go index d7b9c39a3f124..b414fffb57af0 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsSpecifierEndsInTs_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonExportsSpecifierEndsInTs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go index 6f0327c30bbaa..e194624a208e4 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonExportsTrailingSlash1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonExportsTrailingSlash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go index 4ae24a4d0d974..9f44e824de1f2 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsConditions1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsConditions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go index 7e389fd54f220..bddf946046046 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsLength1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go index a009ac53c7402..5d28936b85f61 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsLength2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsLength2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go index 8584f63502d18..beaab0b218954 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go index 8ecf64ffce076..a1244bae59231 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPatternRootWildcard_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPatternRootWildcard(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go index c11266c1d894d..d9bd2268435be 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_capsInPath1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go index 87784ebb3292b..67320dbd3884e 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_capsInPath2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_capsInPath2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go index 1b63b588bfad3..854421a72c97f 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go index 40482818fecf8..fbbf30ded9915 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_js_ts_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_js_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go index 34f28034f5ac6..4ddad96e45ced 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go index 434a4e6015279..e45440e9f5ecd 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_js_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_ts_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go index d0302f11626e1..90f38286fb699 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go index 5fafd657ebee9..915d7212ff567 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImportsPattern_ts_ts_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImportsPattern_ts_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_js_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_js_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_js_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_js_test.go index c9083063d8cbf..e7dc76d19e76f 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_js_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_js_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImports_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go rename to tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go index 1dd23783d6263..dfab03e45ebf4 100644 --- a/tsc/internal/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go +++ b/tsc/pkg/fourslash/tests/importCompletionsPackageJsonImports_ts_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletionsPackageJsonImports_ts(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletions_importsMap1_test.go b/tsc/pkg/fourslash/tests/importCompletions_importsMap1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importCompletions_importsMap1_test.go rename to tsc/pkg/fourslash/tests/importCompletions_importsMap1_test.go index cbe948393770b..63becaac1cb6a 100644 --- a/tsc/internal/fourslash/tests/importCompletions_importsMap1_test.go +++ b/tsc/pkg/fourslash/tests/importCompletions_importsMap1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletions_importsMap1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletions_importsMap2_test.go b/tsc/pkg/fourslash/tests/importCompletions_importsMap2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importCompletions_importsMap2_test.go rename to tsc/pkg/fourslash/tests/importCompletions_importsMap2_test.go index 2ba6e528d8ac5..6ccbb204c3d6f 100644 --- a/tsc/internal/fourslash/tests/importCompletions_importsMap2_test.go +++ b/tsc/pkg/fourslash/tests/importCompletions_importsMap2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletions_importsMap2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletions_importsMap3_test.go b/tsc/pkg/fourslash/tests/importCompletions_importsMap3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importCompletions_importsMap3_test.go rename to tsc/pkg/fourslash/tests/importCompletions_importsMap3_test.go index 8df1aada90cca..ad1bf3fca8fb8 100644 --- a/tsc/internal/fourslash/tests/importCompletions_importsMap3_test.go +++ b/tsc/pkg/fourslash/tests/importCompletions_importsMap3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletions_importsMap3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletions_importsMap4_test.go b/tsc/pkg/fourslash/tests/importCompletions_importsMap4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importCompletions_importsMap4_test.go rename to tsc/pkg/fourslash/tests/importCompletions_importsMap4_test.go index b54cfcde9b143..161cf9e530bd1 100644 --- a/tsc/internal/fourslash/tests/importCompletions_importsMap4_test.go +++ b/tsc/pkg/fourslash/tests/importCompletions_importsMap4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletions_importsMap4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importCompletions_importsMap5_test.go b/tsc/pkg/fourslash/tests/importCompletions_importsMap5_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importCompletions_importsMap5_test.go rename to tsc/pkg/fourslash/tests/importCompletions_importsMap5_test.go index 5dddd024c46da..6d3743bc39063 100644 --- a/tsc/internal/fourslash/tests/importCompletions_importsMap5_test.go +++ b/tsc/pkg/fourslash/tests/importCompletions_importsMap5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportCompletions_importsMap5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go b/tsc/pkg/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go similarity index 95% rename from tsc/internal/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go rename to tsc/pkg/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go index 58b9fbf71c905..0cee9772e0c39 100644 --- a/tsc/internal/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go +++ b/tsc/pkg/fourslash/tests/importFixFromAtTypesWithRealPackage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixFromAtTypesWithRealPackage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixIndentedStatements_test.go b/tsc/pkg/fourslash/tests/importFixIndentedStatements_test.go similarity index 96% rename from tsc/internal/fourslash/tests/importFixIndentedStatements_test.go rename to tsc/pkg/fourslash/tests/importFixIndentedStatements_test.go index cf1d1a724b6a1..946f4e46af407 100644 --- a/tsc/internal/fourslash/tests/importFixIndentedStatements_test.go +++ b/tsc/pkg/fourslash/tests/importFixIndentedStatements_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // An added import has to line up with the imports already in the file. The formatter indents a new diff --git a/tsc/internal/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go b/tsc/pkg/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go rename to tsc/pkg/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go index 7b4fd6a2b7654..d07ce002d86c9 100644 --- a/tsc/internal/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go +++ b/tsc/pkg/fourslash/tests/importFixWithMultipleModuleExportAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixWithMultipleModuleExportAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixesGlobalTypingsCache_test.go b/tsc/pkg/fourslash/tests/importFixesGlobalTypingsCache_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importFixesGlobalTypingsCache_test.go rename to tsc/pkg/fourslash/tests/importFixesGlobalTypingsCache_test.go index 4dd2e403d164f..bd97a78c9aa94 100644 --- a/tsc/internal/fourslash/tests/importFixesGlobalTypingsCache_test.go +++ b/tsc/pkg/fourslash/tests/importFixesGlobalTypingsCache_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixesGlobalTypingsCache(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go b/tsc/pkg/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go rename to tsc/pkg/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go index 643d7f9a74b2f..a9fcacb4b883c 100644 --- a/tsc/internal/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go +++ b/tsc/pkg/fourslash/tests/importFixes_ambientCircularDefaultCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixes_ambientCircularDefaultCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go b/tsc/pkg/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go rename to tsc/pkg/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go index 5e42d6e4a52ea..be7ced7058d91 100644 --- a/tsc/internal/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go +++ b/tsc/pkg/fourslash/tests/importFixes_quotePreferenceDouble_importHelpers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixes_quotePreferenceDouble_importHelpers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go b/tsc/pkg/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go rename to tsc/pkg/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go index 6fdc928bf44d8..86daeee80fcc7 100644 --- a/tsc/internal/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go +++ b/tsc/pkg/fourslash/tests/importFixes_quotePreferenceSingle_importHelpers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportFixes_quotePreferenceSingle_importHelpers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go b/tsc/pkg/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go rename to tsc/pkg/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go index 4a1c210a2bf03..4088c8f275d11 100644 --- a/tsc/internal/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go +++ b/tsc/pkg/fourslash/tests/importHelpersAfterScriptBecomesDecoratedModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportHelpersAfterScriptBecomesDecoratedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importMetaCompletionDetails_test.go b/tsc/pkg/fourslash/tests/importMetaCompletionDetails_test.go similarity index 78% rename from tsc/internal/fourslash/tests/importMetaCompletionDetails_test.go rename to tsc/pkg/fourslash/tests/importMetaCompletionDetails_test.go index daaaa5eee7815..4c736e6cc0991 100644 --- a/tsc/internal/fourslash/tests/importMetaCompletionDetails_test.go +++ b/tsc/pkg/fourslash/tests/importMetaCompletionDetails_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportMetaCompletionDetails(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importModuleSpecifierEnding_test.go b/tsc/pkg/fourslash/tests/importModuleSpecifierEnding_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importModuleSpecifierEnding_test.go rename to tsc/pkg/fourslash/tests/importModuleSpecifierEnding_test.go index 58e6bb0733bbe..fc20c7610ab44 100644 --- a/tsc/internal/fourslash/tests/importModuleSpecifierEnding_test.go +++ b/tsc/pkg/fourslash/tests/importModuleSpecifierEnding_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportModuleSpecifierEndingAuto(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importModuleSpecifierPreference_test.go b/tsc/pkg/fourslash/tests/importModuleSpecifierPreference_test.go similarity index 93% rename from tsc/internal/fourslash/tests/importModuleSpecifierPreference_test.go rename to tsc/pkg/fourslash/tests/importModuleSpecifierPreference_test.go index fc4f000c945d7..a0f075d66cf23 100644 --- a/tsc/internal/fourslash/tests/importModuleSpecifierPreference_test.go +++ b/tsc/pkg/fourslash/tests/importModuleSpecifierPreference_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportModuleSpecifierPreferenceShortest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go index 8b8b05641b665..5d7d1af0f68a5 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixConvertTypeOnly1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixConvertTypeOnly1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport1_test.go index a971b644a1cfd..3dcb95e3ae406 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport2_test.go index 189cc422abc04..b4789183546f3 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport3_test.go index cbd2c1c0071f2..792a025581bfc 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport4_test.go index bf9b4b0bd3cb0..cecfde062e787 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport5_test.go similarity index 75% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport5_test.go index 9fa97cfdd3d5b..cfbcbf6dc3113 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport6_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport6_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport6_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport6_test.go index 729c8c9f773d6..88591996ae698 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport6_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport7_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport7_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport7_test.go index 336295e39a6e7..914eb4f0695bf 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport7_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixDefaultExport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport_test.go index 8e70d07861c85..3a0a030b07576 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixDefaultExport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixDefaultExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixDefaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport0_test.go similarity index 80% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport0_test.go index b2fa7ed06fc08..ad0d69670f00d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport10_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport10_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport10_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport10_test.go index 50b6d975dcd7b..7e6f80152e994 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport10_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport11_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport11_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport11_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport11_test.go index fbb15d3f725c4..d682f7a11886a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport11_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport12_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport12_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport12_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport12_test.go index 3ba4f8625a1e0..68d19663c48f4 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport12_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport1_test.go index 37935c16bf0ec..a5e7049eb07de 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport2_test.go index e23a6d6be5e5d..41706720e5140 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport3_test.go index 68f85ab85aa0d..2d98fa3699a8d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport4_test.go index 1edea0e73c71b..dfa6ddf727a6f 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport5_test.go index f9e9c2b651fde..08349ad81af09 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport6_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport6_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport6_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport6_test.go index b2d4b0ce4747b..53937a857e066 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport6_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport7_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport7_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport7_test.go index 9c33c56cc2b6f..280be5a0724f9 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport7_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport8_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport8_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport8_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport8_test.go index ecf57b1395182..e07750dbf6a5c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport8_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport9_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport9_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImport9_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImport9_test.go index 90e97a1c7c718..9e7fff4f86690 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImport9_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImport9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImport9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go index 0169c4d87c000..e4e4e3010f173 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExistingImportEquals0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExistingImportEquals0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go index cd0ada6bd5901..b4e69e593dc87 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefaultExistingImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExportAsDefaultExistingImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixExportAsDefault_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefault_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixExportAsDefault_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefault_test.go index 770d8110ff834..9c0c0cc551953 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixExportAsDefault_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixExportAsDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixExportAsDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go index 1affbac6b6c18..bf5802247c8c0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixIndentedIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixIndentedIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go index 146395ebb2c93..a2484e0d7f420 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_classic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixInferEndingPreference_classic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_test.go index 6f6b2b297f074..3c7962566fae7 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixInferEndingPreference_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixInferEndingPreference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixInferEndingPreference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixJsEnding_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixJsEnding_test.go similarity index 77% rename from tsc/internal/fourslash/tests/importNameCodeFixJsEnding_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixJsEnding_test.go index 5b1c3802eee51..f5e2be977fd71 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixJsEnding_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixJsEnding_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixJsEnding(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go index 640cc2623f98a..ec51c1c803173 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAllowSyntheticDefaultImports0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go index 0f600895282dd..2b81ff0282fb2 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAllowSyntheticDefaultImports1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go index 9ce630a586378..58a9bb4ac0200 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAllowSyntheticDefaultImports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go index 7692c3e0b5e0b..3b1d76f6c912b 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAllowSyntheticDefaultImports3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go index c5144c163c448..3c9db786e0235 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAllowSyntheticDefaultImports5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAllowSyntheticDefaultImports5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go index 1ac7eb8d4033b..f4829c1780427 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAmbient0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go index b38689e57e17e..58fe64b8be7f2 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAmbient1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go index d8d628a6e98e9..43e08501959d9 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAmbient2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go index abcaa9cbb543e..aca56050f67fb 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportAmbient3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportAmbient3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go index e8564800d2459..0096de96fbdb5 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportBaseUrl0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go index daf64e967e2d5..fd90bcf4deb3a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportBaseUrl1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go index 398507031b593..df28238f6b9d7 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportBaseUrl2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportBaseUrl2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportDefault0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportDefault0_test.go similarity index 80% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportDefault0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportDefault0_test.go index 4de47092b210e..13e045dd418ca 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportDefault0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportDefault0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportDefault0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go index 29cada64e8887..8b6d986acc429 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsCommonJSInteropOn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportExportEqualsCommonJSInteropOn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go index ab0f24399584b..595f168cd7b7e 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOff_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportExportEqualsESNextInteropOff(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go index 50ee6abfaeb79..b1c6bd092deb1 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportExportEqualsESNextInteropOn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportExportEqualsESNextInteropOn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile0_test.go similarity index 80% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFile0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile0_test.go index 290da3996858a..eaf97168fec91 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFile0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFile1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile1_test.go index d998921fbaf9c..daf7e06d29609 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFile1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFile2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile2_test.go index 0f31b1b0ff4d9..a27cdb2899df6 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFile2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFile3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile3_test.go index dbfea80dac001..1449b1b797603 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFile3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFile4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile4_test.go index 9bdfe02af5752..2318134e1a41a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFile4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFile4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFile4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go index f08ee1c8cd0d9..d02459f78b61c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileAllComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileAllComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go index 90848232b2025..dfb40ee650ade 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileDetachedComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileDetachedComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go index 393f6676d7e20..b224e992dc804 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyle0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go index f7b76c20139a2..b478a91cc745f 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyle1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go index 20ce7557829b7..ebce6feff4755 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyle2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go index c457059fe8a04..a2488d2169e0c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyle3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyle3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go index b71ea14b380cd..eff57e3ac22d6 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyleMixed0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go index e69d839bc220e..17b6e19ff7711 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFileQuoteStyleMixed1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFileQuoteStyleMixed1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go index e6e76de83da2b..3206abff7d741 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypesScopedPackage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFromAtTypesScopedPackage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go index c052f136e7500..7675b2a249ba0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportFromAtTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportFromAtTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go index e3e7982bd8e93..c051c50275cb3 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_notForClassicResolution_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportIndex_notForClassicResolution(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_test.go index 3180b02b2d7fc..745c6155ecb1a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportIndex_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go index 949de53ba182b..9cd631b4f4097 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go index b176d3c061071..428ddd31fb877 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go index 743ec92886973..e04ade2a6dd99 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go index a3f9434ccb032..24e115c4df3c8 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go index b83460182ec81..c3309e8838e35 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go index 66167f6173d09..22f7489062204 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go index 4994e49609a26..6c5a9c351251f 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go index 76ac2aff28b4e..a91119d6ef979 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportNodeModules8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportNodeModules8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths0_test.go index fa70d113ed32a..d94f3d8ce9518 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths1_test.go index 59f3d92f2b6be..996795f772b93 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths2_test.go index fee3f27c55df2..bd627863d05e8 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go index 23583ea24a1b6..2c749798fd8c0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withExtension_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths_withExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go index a96737825c019..6005785bc8932 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withLeadingDotSlash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths_withLeadingDotSlash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go index 2ceb73fe74cc6..e3a4ce1eeaa82 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportPaths_withParentRelativePath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportPaths_withParentRelativePath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go index e0059af981205..90415dd430d0a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportRootDirs0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go index b4a601c2c0fdf..14ef1961450d2 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportRootDirs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportRootDirs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go index ceb8d731734b6..5242f31c3efcd 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportTypeRoots0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go index c4bad049bc844..785600acb4a79 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixNewImportTypeRoots1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixNewImportTypeRoots1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixOptionalImport0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport0_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFixOptionalImport0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport0_test.go index c22f2b17b3029..e23995106517b 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixOptionalImport0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixOptionalImport0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixOptionalImport1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFixOptionalImport1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport1_test.go index bd96ab050c353..e294d07fa450a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixOptionalImport1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixOptionalImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixOptionalImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixReExport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixReExport_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFixReExport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixReExport_test.go index 6e85340e1cd71..23d708c37132e 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixReExport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixReExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixReExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixShebang_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixShebang_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFixShebang_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixShebang_test.go index f3f4ec19c96d7..e057765cd8818 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixShebang_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixShebang_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixShebang(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal0_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal0_test.go index e094b70c8c1d4..95f3b85f0b45d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobal0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal1_test.go index e61c775b42370..ad5f8580c574a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobal1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobal1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobal1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go index 795a3a230fe3c..19cf077c4e133 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalJavaScript_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobalJavaScript(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go index ae4bd583abf04..a8f67815105a3 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobalReact0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go index 85c5d1a637bb6..044edc1b9bbe1 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobalReact1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go index ee9af254fb4d2..b4bee0fa637f4 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFixUMDGlobalReact2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFixUMDGlobalReact2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment1_test.go index 4591b6695f739..e9c17dcecac0a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_HeaderComment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment2_test.go index 031b99fd0d691..65217e5aa799f 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_HeaderComment2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_HeaderComment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_HeaderComment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go index de1a581374588..bf2917e262b4d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_add_all_missing_imports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_add_all_missing_imports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_all2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_all2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_all2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_all2_test.go index 4476ad8cbb576..7819740b7c256 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_all2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_all2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_all2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_all_js_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_all_js_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_all_js_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_all_js_test.go index 3ac02294a4a61..5ee73d8df0120 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_all_js_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_all_js_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_all_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_all_promoteType_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_all_promoteType_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFix_all_promoteType_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_all_promoteType_test.go index a1283ee0930d5..2272ffcd9bfcf 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_all_promoteType_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_all_promoteType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_all_promoteType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_all_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_all_test.go similarity index 92% rename from tsc/internal/fourslash/tests/importNameCodeFix_all_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_all_test.go index 19922a9016beb..79e4367ec3783 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_all_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_all_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_all(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go index e146ea6084b75..bdb37e078509c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_avoidRelativeNodeModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_avoidRelativeNodeModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_barrelExport2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport2_test.go index ccaac5b910798..6baa3b63d2742 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_barrelExport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_barrelExport3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport3_test.go index ab3443a41b754..e8ceda7a4398c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_barrelExport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport4_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_barrelExport4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport4_test.go index 8880293a23836..523203dc66428 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_barrelExport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_barrelExport5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport5_test.go index 37c3c6d664bd5..783433b6101a6 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_barrelExport5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFix_barrelExport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport_test.go index 0a5590792c30c..c347dfeb22ce8 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_barrelExport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_barrelExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_barrelExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go index 098f5acb665d6..0b0e04fc98963 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_commonjs_allowSynthetic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_commonjs_allowSynthetic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_defaultExport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_defaultExport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_defaultExport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_defaultExport_test.go index b8c19a97205cb..dc27b96691f67 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_defaultExport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_defaultExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_defaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_dollar_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_dollar_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_dollar_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_dollar_test.go index 9c94f52bc9e38..de15677623586 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_dollar_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_dollar_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_dollar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_exportEquals_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_exportEquals_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_exportEquals_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_exportEquals_test.go index 7470cd67bb503..1dcf98a8021f5 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_exportEquals_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_exportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_exportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go index e26c510c70a40..6fc73c94724b5 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelateive2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_externalNonRelateive2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go index 330f76cb4c427..b4e3e4247fd45 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_externalNonRelative1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_externalNonRelative1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go index 19507ff3113c3..044770fdb65b8 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_fileWithNoTrailingNewline_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_fileWithNoTrailingNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_fromPathMapping_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_fromPathMapping_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_fromPathMapping_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_fromPathMapping_test.go index db2feab93f234..724791d109b36 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_fromPathMapping_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_fromPathMapping_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_fromPathMapping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go index 5962bb050ae60..597549aee7d37 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_getCanonicalFileName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_getCanonicalFileName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType1_test.go index 2224d341464f4..be31596f371d2 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType2_test.go index 3f0e2cf59181a..2b5df1ac0edae 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType3_test.go index d65067563de43..92de46fa4c833 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType4_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType4_test.go index e2336dded4df4..ce366a795dfc9 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType5_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType5_test.go index 07e3ecd7a3dbf..82656ec1aefdd 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType6_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType6_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType6_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType6_test.go index 505e0c06aad0a..0191a5d790606 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType6_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType7_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType7_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType7_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType7_test.go index b6e30f160e0b6..3f314aabd56d0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType7_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType8_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType8_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType8_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType8_test.go index 7a5cd97bff6bc..20c0a0b674524 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType8_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_importType_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_importType_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_importType_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_importType_test.go index e3349c470043b..bc2fb818cea71 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_importType_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_importType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_importType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go index 0f592bba2a0d5..5b1a785e14c31 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsCJSvsESM1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go index 3887bcf8a4a66..fc9e21487f5f0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsCJSvsESM2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go index 7e9d593efa7b6..11769d3e6c7e4 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsCJSvsESM3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsCJSvsESM3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsExtension_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsExtension_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsExtension_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsExtension_test.go index 2fa4dae3c7501..6cae5971366d0 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsExtension_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsExtension_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx1_test.go index 5d596a1b821da..619b8af47f00b 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx2_test.go index b8c05c9f8a017..b977eba17b1b9 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx3_test.go index 1ffc199dd6cd7..dc1865f043c69 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx4_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx4_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx4_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx4_test.go index 0c1ac7a4df43f..968c6935b222c 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx4_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx5_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx5_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx5_test.go index 606ec3b49bf4d..6a03e69952ccb 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx5_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx6_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx6_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx6_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx6_test.go index 242e949aa228f..a4b87c3f01025 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx6_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsx7_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx7_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsx7_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsx7_test.go index 3a03c9ceb22e8..c08a2c3568c37 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsx7_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsx7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsx7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go index a24ee27b43d8e..b5d56979c06be 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsxOpeningTagImportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsxOpeningTagImportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_jsxReact17_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_jsxReact17_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_jsxReact17_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_jsxReact17_test.go index e71c8723238aa..7603345ff5108 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_jsxReact17_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_jsxReact17_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_jsxReact17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go index 765c2a653ed22..ddd4eb50aca5a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_noDestructureNonObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_noDestructureNonObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_order2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_order2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_order2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_order2_test.go index 9f0828dddc205..c06842060e967 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_order2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_order2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_order2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_order_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_order_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_order_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_order_test.go index 9efdab5ccb29c..9aae4fef8265a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_order_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_order_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_order(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go index 29752e9ef8a31..1b3c9dc4634f6 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithExtension_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_pathsWithExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go index 25a1d463c0e9d..54ef484a8b8bf 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_pathsWithoutBaseUrl1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go index 1b80cd1a2f5e1..cc18ad653c44d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_pathsWithoutBaseUrl2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_pathsWithoutBaseUrl2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_pnpm1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_pnpm1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_pnpm1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_pnpm1_test.go index 18296867c5dc9..c9fa6ca87b849 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_pnpm1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_pnpm1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_pnpm1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go index b939414344f46..9d4eb13d65171 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_preferBaseUrl_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_preferBaseUrl(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_quoteStyle_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_quoteStyle_test.go similarity index 75% rename from tsc/internal/fourslash/tests/importNameCodeFix_quoteStyle_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_quoteStyle_test.go index 67fe93cb246c6..16cce992596e8 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_quoteStyle_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_quoteStyle_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_quoteStyle(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_reExportDefault_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_reExportDefault_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importNameCodeFix_reExportDefault_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_reExportDefault_test.go index cd212c3d35ee6..2753d0b026f61 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_reExportDefault_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_reExportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_reExportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_reExport_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_reExport_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_reExport_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_reExport_test.go index 9cb4eb6e37811..0615675c3d315 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_reExport_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_reExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_reExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_UMD_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_UMD_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_UMD_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_UMD_test.go index ee7879685f010..76e0174623d04 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_UMD_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_UMD_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_UMD(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_addToExisting_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_addToExisting_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_addToExisting_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_addToExisting_test.go index 7a1fd1b48f14e..fc3e7b3688c93 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_addToExisting_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_addToExisting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_addToExisting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go similarity index 89% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go index 928922805aa9e..a105d44dd3b58 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_addToExistingWins_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_importVsRequire_addToExistingWins(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go similarity index 90% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go index 63be31794bdb3..31d867ac80844 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_importWins_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_importVsRequire_importWins(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go index f3e08ea26c472..d052ec5bbbcd3 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_importVsRequire_moduleTarget_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_importVsRequire_moduleTarget(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go index a316cedd01a2c..e2fbf00204991 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_namedAndDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require_namedAndDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_require_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_require_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_require_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_require_test.go index d0920fe28c289..93202e5b559a2 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_require_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_require_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_require(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go index e261d86b1fd2d..83c9488728751 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_shorthandPropertyAssignment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go index 370c263c5069e..2f8440b0c2cf3 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_shorthandPropertyAssignment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_shorthandPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_sortByDistance_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_sortByDistance_test.go similarity index 88% rename from tsc/internal/fourslash/tests/importNameCodeFix_sortByDistance_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_sortByDistance_test.go index 9c51e077b5058..7e2da78531860 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_sortByDistance_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_sortByDistance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_sortByDistance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go index 88401cfc8a5d5..05a7c42b699a4 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_symlink_own_package_2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_test.go index 06de26df2f7af..3e4759c1383cb 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_own_package_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_own_package_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_symlink_own_package(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importNameCodeFix_symlink_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_symlink_test.go index 450f698d7c3e5..270fa0dfe667a 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_symlink_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_symlink_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_symlink(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_trailingComma_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_trailingComma_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_trailingComma_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_trailingComma_test.go index 7074c0fcc45ef..88e5a88049fc7 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_trailingComma_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_trailingComma_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_trailingComma(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go similarity index 94% rename from tsc/internal/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go index d643f4336d58a..21dc44b67de2e 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_tripleSlashOrdering_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_tripleSlashOrdering(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_typeOnly2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importNameCodeFix_typeOnly2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly2_test.go index 3a65d98645eeb..0f3818bcecf00 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_typeOnly2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_typeOnly2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_typeOnly_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_typeOnly_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly_test.go index 1eaafe572f722..5ae087ce10746 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_typeOnly_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_typeOnly_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_typeOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go index b3e2ebe553d35..3b86d667803ca 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_typeUsedAsValue_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_typeUsedAsValue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_typesVersions_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_typesVersions_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importNameCodeFix_typesVersions_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_typesVersions_test.go index 51fc7c96e228d..9c012304e2b4f 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_typesVersions_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_typesVersions_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_typesVersions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_types_classic_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_types_classic_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_types_classic_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_types_classic_test.go index 3d5f0931ead3d..6d62b25229148 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_types_classic_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_types_classic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_types_classic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go index 58b5ece8e1fa4..0f41b2e7de97d 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_uriStyleNodeCoreModules1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go index a0b7a50d89263..9a27797beb2a6 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_uriStyleNodeCoreModules2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go similarity index 94% rename from tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go index af94f621febc0..2aa970eff3377 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_uriStyleNodeCoreModules3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_uriStyleNodeCoreModules3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importNameCodeFix_withJson_test.go b/tsc/pkg/fourslash/tests/importNameCodeFix_withJson_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importNameCodeFix_withJson_test.go rename to tsc/pkg/fourslash/tests/importNameCodeFix_withJson_test.go index 87e6b883af978..40e869f259bdd 100644 --- a/tsc/internal/fourslash/tests/importNameCodeFix_withJson_test.go +++ b/tsc/pkg/fourslash/tests/importNameCodeFix_withJson_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportNameCodeFix_withJson(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importPreferTypeOnlyAutoImports_test.go b/tsc/pkg/fourslash/tests/importPreferTypeOnlyAutoImports_test.go similarity index 76% rename from tsc/internal/fourslash/tests/importPreferTypeOnlyAutoImports_test.go rename to tsc/pkg/fourslash/tests/importPreferTypeOnlyAutoImports_test.go index 6b585bf3b2b5c..9483fc96c68ff 100644 --- a/tsc/internal/fourslash/tests/importPreferTypeOnlyAutoImports_test.go +++ b/tsc/pkg/fourslash/tests/importPreferTypeOnlyAutoImports_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPreferTypeOnlyAutoImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletion_test.go b/tsc/pkg/fourslash/tests/importStatementCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/importStatementCompletion_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletion_test.go index 0e6ab86333c58..b10952e8e7bd4 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletion_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletion_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletionUsesNamedImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions4_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions4_test.go similarity index 74% rename from tsc/internal/fourslash/tests/importStatementCompletions4_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions4_test.go index c47f93e3a5fb9..7711c18212255 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions4_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go index f5dca8ad10af4..1a7b859faf1cf 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_esModuleInterop1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go index f616c0b693ea6..9e59532a16e19 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_esModuleInterop2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_esModuleInterop2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_js2_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_js2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importStatementCompletions_js2_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_js2_test.go index 9b3849721701d..6d579878516e4 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_js2_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_js2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_js2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_js_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_js_test.go similarity index 86% rename from tsc/internal/fourslash/tests/importStatementCompletions_js_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_js_test.go index bf8d01116320d..eb64b054ee719 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_js_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_js_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_js(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go similarity index 77% rename from tsc/internal/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go index e67016a6ff7f5..caa5e0fec4f1b 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_noPatternAmbient_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_noPatternAmbient(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_noSnippet_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_noSnippet_test.go similarity index 80% rename from tsc/internal/fourslash/tests/importStatementCompletions_noSnippet_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_noSnippet_test.go index c2b173dae770d..453455803d4ec 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_noSnippet_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_noSnippet_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_noSnippet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_pnpm1_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_pnpm1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importStatementCompletions_pnpm1_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_pnpm1_test.go index eae6ee894534d..271a9fc6bc703 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_pnpm1_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_pnpm1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_pnpm1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go index d6c2c8e5ada20..fac911430a11f 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_pnpmTransitive_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_pnpmTransitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_quotes_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_quotes_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importStatementCompletions_quotes_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_quotes_test.go index 47553dbb70193..17693b294432d 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_quotes_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_quotes_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_quotes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importStatementCompletions_semicolons_test.go b/tsc/pkg/fourslash/tests/importStatementCompletions_semicolons_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importStatementCompletions_semicolons_test.go rename to tsc/pkg/fourslash/tests/importStatementCompletions_semicolons_test.go index 9e057ba024cbf..6d1441f494eb9 100644 --- a/tsc/internal/fourslash/tests/importStatementCompletions_semicolons_test.go +++ b/tsc/pkg/fourslash/tests/importStatementCompletions_semicolons_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportStatementCompletions_semicolons(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importSuggestionsCache_exportUndefined_test.go b/tsc/pkg/fourslash/tests/importSuggestionsCache_exportUndefined_test.go similarity index 87% rename from tsc/internal/fourslash/tests/importSuggestionsCache_exportUndefined_test.go rename to tsc/pkg/fourslash/tests/importSuggestionsCache_exportUndefined_test.go index c455355da49b5..5fa8e491ffc06 100644 --- a/tsc/internal/fourslash/tests/importSuggestionsCache_exportUndefined_test.go +++ b/tsc/pkg/fourslash/tests/importSuggestionsCache_exportUndefined_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportSuggestionsCache_exportUndefined(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go b/tsc/pkg/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go rename to tsc/pkg/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go index 1d9589beaef29..a57847078f23a 100644 --- a/tsc/internal/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go +++ b/tsc/pkg/fourslash/tests/importSuggestionsCache_invalidPackageJson_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportSuggestionsCache_invalidPackageJson(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions1_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypeCompletions1_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions1_test.go index 89cac8145171c..f12633e15b494 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions1_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions2_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/importTypeCompletions2_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions2_test.go index 8cf79c49df923..915c09bb75689 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions2_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions3_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypeCompletions3_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions3_test.go index 39bf0bf167c74..0dd339212a086 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions3_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions4_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypeCompletions4_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions4_test.go index a636418bda296..3176fee000807 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions4_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions5_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importTypeCompletions5_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions5_test.go index 39f493bf93ffd..46c114e650039 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions5_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions6_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions6_test.go similarity index 83% rename from tsc/internal/fourslash/tests/importTypeCompletions6_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions6_test.go index cb33679f598fd..2bc15c93774f5 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions6_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions6_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions7_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/importTypeCompletions7_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions7_test.go index b093c6da24efd..c184fcb02dceb 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions7_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions8_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions8_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypeCompletions8_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions8_test.go index 7ed1bf51e8aae..d628a9c414275 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions8_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeCompletions9_test.go b/tsc/pkg/fourslash/tests/importTypeCompletions9_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypeCompletions9_test.go rename to tsc/pkg/fourslash/tests/importTypeCompletions9_test.go index 9294581100e2f..1d4e20c569699 100644 --- a/tsc/internal/fourslash/tests/importTypeCompletions9_test.go +++ b/tsc/pkg/fourslash/tests/importTypeCompletions9_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeCompletions9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeFormatting_test.go b/tsc/pkg/fourslash/tests/importTypeFormatting_test.go similarity index 79% rename from tsc/internal/fourslash/tests/importTypeFormatting_test.go rename to tsc/pkg/fourslash/tests/importTypeFormatting_test.go index e9ea7379b45c4..eecd7d692685b 100644 --- a/tsc/internal/fourslash/tests/importTypeFormatting_test.go +++ b/tsc/pkg/fourslash/tests/importTypeFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeMemberCompletions_test.go b/tsc/pkg/fourslash/tests/importTypeMemberCompletions_test.go similarity index 95% rename from tsc/internal/fourslash/tests/importTypeMemberCompletions_test.go rename to tsc/pkg/fourslash/tests/importTypeMemberCompletions_test.go index 5819902dcc745..38a5cbfbc920b 100644 --- a/tsc/internal/fourslash/tests/importTypeMemberCompletions_test.go +++ b/tsc/pkg/fourslash/tests/importTypeMemberCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeMemberCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypeNodeGoToDefinition_test.go b/tsc/pkg/fourslash/tests/importTypeNodeGoToDefinition_test.go similarity index 85% rename from tsc/internal/fourslash/tests/importTypeNodeGoToDefinition_test.go rename to tsc/pkg/fourslash/tests/importTypeNodeGoToDefinition_test.go index ec3d06ac9920e..d9144dbc29013 100644 --- a/tsc/internal/fourslash/tests/importTypeNodeGoToDefinition_test.go +++ b/tsc/pkg/fourslash/tests/importTypeNodeGoToDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypeNodeGoToDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go b/tsc/pkg/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go similarity index 82% rename from tsc/internal/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go rename to tsc/pkg/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go index a63aa643845af..24e0dbde1dfaf 100644 --- a/tsc/internal/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go +++ b/tsc/pkg/fourslash/tests/importTypesDeclarationDiagnosticsNoServerError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportTypesDeclarationDiagnosticsNoServerError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/importValueUsedAsType_test.go b/tsc/pkg/fourslash/tests/importValueUsedAsType_test.go similarity index 77% rename from tsc/internal/fourslash/tests/importValueUsedAsType_test.go rename to tsc/pkg/fourslash/tests/importValueUsedAsType_test.go index 7526bab590883..7db0cfbbbc2b8 100644 --- a/tsc/internal/fourslash/tests/importValueUsedAsType_test.go +++ b/tsc/pkg/fourslash/tests/importValueUsedAsType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImportValueUsedAsType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incompatibleOverride_test.go b/tsc/pkg/fourslash/tests/incompatibleOverride_test.go similarity index 86% rename from tsc/internal/fourslash/tests/incompatibleOverride_test.go rename to tsc/pkg/fourslash/tests/incompatibleOverride_test.go index 3f42f865586da..7776c3871fa52 100644 --- a/tsc/internal/fourslash/tests/incompatibleOverride_test.go +++ b/tsc/pkg/fourslash/tests/incompatibleOverride_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncompatibleOverride(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go b/tsc/pkg/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go similarity index 84% rename from tsc/internal/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go rename to tsc/pkg/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go index a90fbbe434223..a6fbff75d7c9b 100644 --- a/tsc/internal/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/incrementalEditInvocationExpressionAboveInterfaceDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalEditInvocationExpressionAboveInterfaceDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go b/tsc/pkg/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go similarity index 80% rename from tsc/internal/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go rename to tsc/pkg/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go index 91f6f70f9553b..857f60b7ebdfc 100644 --- a/tsc/internal/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go +++ b/tsc/pkg/fourslash/tests/incrementalJsDocAdjustsLengthsRight_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalJsDocAdjustsLengthsRight(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport1_test.go b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/incrementalParsingDynamicImport1_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingDynamicImport1_test.go index 1743b8fcba36e..b25aabfb2188c 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport1_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingDynamicImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport2_test.go b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/incrementalParsingDynamicImport2_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingDynamicImport2_test.go index 5fab8efcb31f1..86770265991b4 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport2_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingDynamicImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport3_test.go b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/incrementalParsingDynamicImport3_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingDynamicImport3_test.go index 7064929f77489..1c865239eba6e 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport3_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingDynamicImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport4_test.go b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/incrementalParsingDynamicImport4_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingDynamicImport4_test.go index fa6ab8eebc514..1ddc51428713e 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingDynamicImport4_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingDynamicImport4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingDynamicImport4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go b/tsc/pkg/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go index 9a3495a01a6e0..079ea3de41fe2 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingInsertIntoMethod1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingInsertIntoMethod1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait1_test.go b/tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait1_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait1_test.go index 6e344534831ce..bca6646d41916 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait1_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingTopLevelAwait1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait2_test.go b/tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait2_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait2_test.go index ce5d9c201f082..f7abfa49f2b45 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingTopLevelAwait2_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingTopLevelAwait2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingTopLevelAwait2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalParsingWithJsDoc_test.go b/tsc/pkg/fourslash/tests/incrementalParsingWithJsDoc_test.go similarity index 82% rename from tsc/internal/fourslash/tests/incrementalParsingWithJsDoc_test.go rename to tsc/pkg/fourslash/tests/incrementalParsingWithJsDoc_test.go index 3ec04f9cefdd5..6da5c527f83c0 100644 --- a/tsc/internal/fourslash/tests/incrementalParsingWithJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/incrementalParsingWithJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalParsingWithJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalResolveAccessor_test.go b/tsc/pkg/fourslash/tests/incrementalResolveAccessor_test.go similarity index 82% rename from tsc/internal/fourslash/tests/incrementalResolveAccessor_test.go rename to tsc/pkg/fourslash/tests/incrementalResolveAccessor_test.go index 2410cef3605e2..4335c7860a3ad 100644 --- a/tsc/internal/fourslash/tests/incrementalResolveAccessor_test.go +++ b/tsc/pkg/fourslash/tests/incrementalResolveAccessor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalResolveAccessor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalResolveConstructorDeclaration_test.go b/tsc/pkg/fourslash/tests/incrementalResolveConstructorDeclaration_test.go similarity index 81% rename from tsc/internal/fourslash/tests/incrementalResolveConstructorDeclaration_test.go rename to tsc/pkg/fourslash/tests/incrementalResolveConstructorDeclaration_test.go index 0d610454d927d..ca1f96ec22d88 100644 --- a/tsc/internal/fourslash/tests/incrementalResolveConstructorDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/incrementalResolveConstructorDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalResolveConstructorDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go similarity index 89% rename from tsc/internal/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go index aa574f5298197..d28fbce519c72 100644 --- a/tsc/internal/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/incrementalResolveFunctionPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalResolveFunctionPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go b/tsc/pkg/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go similarity index 86% rename from tsc/internal/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go rename to tsc/pkg/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go index 332fbb09bcd94..2f74c67916b1d 100644 --- a/tsc/internal/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go +++ b/tsc/pkg/fourslash/tests/incrementalUpdateToClassImplementingGenericClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIncrementalUpdateToClassImplementingGenericClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indentAfterFunctionClosingBraces_test.go b/tsc/pkg/fourslash/tests/indentAfterFunctionClosingBraces_test.go similarity index 79% rename from tsc/internal/fourslash/tests/indentAfterFunctionClosingBraces_test.go rename to tsc/pkg/fourslash/tests/indentAfterFunctionClosingBraces_test.go index 2facfd1605ef2..6b21ac17d8876 100644 --- a/tsc/internal/fourslash/tests/indentAfterFunctionClosingBraces_test.go +++ b/tsc/pkg/fourslash/tests/indentAfterFunctionClosingBraces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndentAfterFunctionClosingBraces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indentationInJsx3_test.go b/tsc/pkg/fourslash/tests/indentationInJsx3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/indentationInJsx3_test.go rename to tsc/pkg/fourslash/tests/indentationInJsx3_test.go index cc9085031df7a..a9bd870ea0c3d 100644 --- a/tsc/internal/fourslash/tests/indentationInJsx3_test.go +++ b/tsc/pkg/fourslash/tests/indentationInJsx3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndentationInJsx3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indexSignatureWithoutAnnotation_test.go b/tsc/pkg/fourslash/tests/indexSignatureWithoutAnnotation_test.go similarity index 78% rename from tsc/internal/fourslash/tests/indexSignatureWithoutAnnotation_test.go rename to tsc/pkg/fourslash/tests/indexSignatureWithoutAnnotation_test.go index 59e919ca7ec64..3e1c82288d1fd 100644 --- a/tsc/internal/fourslash/tests/indexSignatureWithoutAnnotation_test.go +++ b/tsc/pkg/fourslash/tests/indexSignatureWithoutAnnotation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndexSignatureWithoutAnnotation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indexerReturnTypes1_test.go b/tsc/pkg/fourslash/tests/indexerReturnTypes1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/indexerReturnTypes1_test.go rename to tsc/pkg/fourslash/tests/indexerReturnTypes1_test.go index e2f9b4b2121b1..08993b5d48223 100644 --- a/tsc/internal/fourslash/tests/indexerReturnTypes1_test.go +++ b/tsc/pkg/fourslash/tests/indexerReturnTypes1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndexerReturnTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indirectClassInstantiation_test.go b/tsc/pkg/fourslash/tests/indirectClassInstantiation_test.go similarity index 86% rename from tsc/internal/fourslash/tests/indirectClassInstantiation_test.go rename to tsc/pkg/fourslash/tests/indirectClassInstantiation_test.go index 7524ff668318a..b7d7fd0344947 100644 --- a/tsc/internal/fourslash/tests/indirectClassInstantiation_test.go +++ b/tsc/pkg/fourslash/tests/indirectClassInstantiation_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndirectClassInstantiation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/indirectJsRequireRename_test.go b/tsc/pkg/fourslash/tests/indirectJsRequireRename_test.go similarity index 86% rename from tsc/internal/fourslash/tests/indirectJsRequireRename_test.go rename to tsc/pkg/fourslash/tests/indirectJsRequireRename_test.go index 23de0d1ef5019..ccf41e70476d0 100644 --- a/tsc/internal/fourslash/tests/indirectJsRequireRename_test.go +++ b/tsc/pkg/fourslash/tests/indirectJsRequireRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIndirectJsRequireRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inheritedModuleMembersForClodule2_test.go b/tsc/pkg/fourslash/tests/inheritedModuleMembersForClodule2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/inheritedModuleMembersForClodule2_test.go rename to tsc/pkg/fourslash/tests/inheritedModuleMembersForClodule2_test.go index 362ee136dd3f0..bc54eda4f45ac 100644 --- a/tsc/internal/fourslash/tests/inheritedModuleMembersForClodule2_test.go +++ b/tsc/pkg/fourslash/tests/inheritedModuleMembersForClodule2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInheritedModuleMembersForClodule2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsCrash1_test.go b/tsc/pkg/fourslash/tests/inlayHintsCrash1_test.go similarity index 73% rename from tsc/internal/fourslash/tests/inlayHintsCrash1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsCrash1_test.go index 63d26fb639b67..b68d8c4da97c1 100644 --- a/tsc/internal/fourslash/tests/inlayHintsCrash1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsCrash1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsElementAccess_test.go b/tsc/pkg/fourslash/tests/inlayHintsElementAccess_test.go similarity index 72% rename from tsc/internal/fourslash/tests/inlayHintsElementAccess_test.go rename to tsc/pkg/fourslash/tests/inlayHintsElementAccess_test.go index 9afeac8692d49..f9016d1f34966 100644 --- a/tsc/internal/fourslash/tests/inlayHintsElementAccess_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsElementAccess_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsElementAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsEnumMemberValue_test.go b/tsc/pkg/fourslash/tests/inlayHintsEnumMemberValue_test.go similarity index 68% rename from tsc/internal/fourslash/tests/inlayHintsEnumMemberValue_test.go rename to tsc/pkg/fourslash/tests/inlayHintsEnumMemberValue_test.go index 6d2c55f1e3dc3..3d402c097fac1 100644 --- a/tsc/internal/fourslash/tests/inlayHintsEnumMemberValue_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsEnumMemberValue_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsEnumMemberValue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go index 73813ee47569f..c4178f579bf20 100644 --- a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsFunctionParameterTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go index 12f1ef409130f..8e62e375869f8 100644 --- a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsFunctionParameterTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go rename to tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go index 1dce0bd861c99..287178fbe9603 100644 --- a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsFunctionParameterTypes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go similarity index 74% rename from tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go rename to tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go index 0acd20bd8948d..e25a5e4430cd4 100644 --- a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsFunctionParameterTypes4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go similarity index 72% rename from tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go rename to tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go index 2e179698f3e32..19bc7e450b5a2 100644 --- a/tsc/internal/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsFunctionParameterTypes5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsFunctionParameterTypes5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsIdentifierLocation_test.go b/tsc/pkg/fourslash/tests/inlayHintsIdentifierLocation_test.go similarity index 68% rename from tsc/internal/fourslash/tests/inlayHintsIdentifierLocation_test.go rename to tsc/pkg/fourslash/tests/inlayHintsIdentifierLocation_test.go index 18f4902fe261b..e3b96154b5f4c 100644 --- a/tsc/internal/fourslash/tests/inlayHintsIdentifierLocation_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsIdentifierLocation_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsIdentifierLocation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsImportType1_test.go b/tsc/pkg/fourslash/tests/inlayHintsImportType1_test.go similarity index 71% rename from tsc/internal/fourslash/tests/inlayHintsImportType1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsImportType1_test.go index 0c21dc137c5bc..330180a52fffa 100644 --- a/tsc/internal/fourslash/tests/inlayHintsImportType1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsImportType1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsImportType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsImportType2_test.go b/tsc/pkg/fourslash/tests/inlayHintsImportType2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsImportType2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsImportType2_test.go index 75ac5eff1ee30..2d15ab3bb1766 100644 --- a/tsc/internal/fourslash/tests/inlayHintsImportType2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsImportType2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsImportType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInferredTypePredicate1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInferredTypePredicate1_test.go similarity index 70% rename from tsc/internal/fourslash/tests/inlayHintsInferredTypePredicate1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInferredTypePredicate1_test.go index 0c2bfefbd7d63..b807ed285fb15 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInferredTypePredicate1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInferredTypePredicate1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInferredTypePredicate1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go index 9101223f8de21..5cb6dd9bcbfbd 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveAnyParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go index 3e56d1b35379f..639c65de4af30 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveAnyParameter2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveAnyParameter2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go index 6b97c5e4b7ced..f8df27a377f49 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveFunctionParameterTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go index 5065687717b58..e4867760604cb 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveFunctionParameterTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go index e11b464855bbd..3cd8663578e64 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveFunctionParameterTypes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go similarity index 74% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go index ce8a4b83eb73e..2f4145c98f52b 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveFunctionParameterTypes4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go similarity index 69% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go index 84307e0b8d0ec..256229766052a 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveFunctionParameterTypes5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveFunctionParameterTypes5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveImportType1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType1_test.go similarity index 72% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveImportType1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType1_test.go index c0a1c6c56c770..d57705aee0dd4 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveImportType1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveImportType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveImportType2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveImportType2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType2_test.go index a8fa6539a9b34..f83ba528b360f 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveImportType2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveImportType2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveImportType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go similarity index 70% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go index ed79af702b919..eb754a32189d0 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveInferredTypePredicate1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveInferredTypePredicate1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go index cef91ee543c5f..c4221781b623b 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveJsDocParameterNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveJsDocParameterNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveMultifile1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifile1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveMultifile1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifile1_test.go index 88344443172b8..97669884b67eb 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveMultifile1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifile1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveMultifile1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go similarity index 82% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go index 2b7f7790a28be..99f00e1a82972 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveMultifileFunctionCalls_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveMultifileFunctionCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go similarity index 84% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go index 72fd09b6f7b4c..a68742c9317b7 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveOverloadCall_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveOverloadCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go index 8a0bf006c582f..6de1660b0cdcb 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveParameterNamesInSpan1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go index bf4610196a3ca..ae738beed75c5 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesInSpan2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveParameterNamesInSpan2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go similarity index 85% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go index 874573b1e3d41..db000d572207e 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNamesWithComments_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveParameterNamesWithComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNames_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNames_test.go similarity index 87% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNames_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNames_test.go index 81007ae797ca1..64bfb3f0e9e21 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveParameterNames_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveParameterNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveParameterNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go index 2aafe994ed1b4..2430010b2ad3d 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveRestParameters1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go index 0f159779b6ff9..44a1f18cac2d5 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveRestParameters2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go index 9bad4410a9d96..c5765f1507c13 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveRestParameters3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveRestParameters3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveReturnType_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveReturnType_test.go similarity index 75% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveReturnType_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveReturnType_test.go index c7fa332c900ee..182439fb0c759 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveReturnType_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveReturnType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveReturnType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go index 6dcb64543fc61..09d07e4271140 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveTemplateLiteralTypes_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveTemplateLiteralTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go index 8195fa3b400a4..763d8967d7327 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveVariableTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go index 56d640fc37219..b20e01c208acf 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveVariableTypes2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveVariableTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsInteractiveWithClosures_test.go b/tsc/pkg/fourslash/tests/inlayHintsInteractiveWithClosures_test.go similarity index 79% rename from tsc/internal/fourslash/tests/inlayHintsInteractiveWithClosures_test.go rename to tsc/pkg/fourslash/tests/inlayHintsInteractiveWithClosures_test.go index c9d134c9b8a8d..f5ad9d65517f9 100644 --- a/tsc/internal/fourslash/tests/inlayHintsInteractiveWithClosures_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsInteractiveWithClosures_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsInteractiveWithClosures(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsJsDocParameterNames_test.go b/tsc/pkg/fourslash/tests/inlayHintsJsDocParameterNames_test.go similarity index 79% rename from tsc/internal/fourslash/tests/inlayHintsJsDocParameterNames_test.go rename to tsc/pkg/fourslash/tests/inlayHintsJsDocParameterNames_test.go index 6a3238fb311f4..5aa029fb9f874 100644 --- a/tsc/internal/fourslash/tests/inlayHintsJsDocParameterNames_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsJsDocParameterNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsJsDocParameterNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsMultifile1_test.go b/tsc/pkg/fourslash/tests/inlayHintsMultifile1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/inlayHintsMultifile1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsMultifile1_test.go index 733030bbb3c36..3072d9fcc01f1 100644 --- a/tsc/internal/fourslash/tests/inlayHintsMultifile1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsMultifile1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsMultifile1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go b/tsc/pkg/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go similarity index 75% rename from tsc/internal/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go rename to tsc/pkg/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go index 3452ad726d868..5802eed46242e 100644 --- a/tsc/internal/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsNoHintWhenArgumentMatchesName_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsNoHintWhenArgumentMatchesName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsNoParameterHints_test.go b/tsc/pkg/fourslash/tests/inlayHintsNoParameterHints_test.go similarity index 74% rename from tsc/internal/fourslash/tests/inlayHintsNoParameterHints_test.go rename to tsc/pkg/fourslash/tests/inlayHintsNoParameterHints_test.go index 727868bdf71d6..8b5181cbb927d 100644 --- a/tsc/internal/fourslash/tests/inlayHintsNoParameterHints_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsNoParameterHints_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsNoParameterHints(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsNoVariableTypeHints_test.go b/tsc/pkg/fourslash/tests/inlayHintsNoVariableTypeHints_test.go similarity index 66% rename from tsc/internal/fourslash/tests/inlayHintsNoVariableTypeHints_test.go rename to tsc/pkg/fourslash/tests/inlayHintsNoVariableTypeHints_test.go index a60db6b0d3aa0..573531a9350f6 100644 --- a/tsc/internal/fourslash/tests/inlayHintsNoVariableTypeHints_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsNoVariableTypeHints_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsNoVariableTypeHints(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsOverloadCall1_test.go b/tsc/pkg/fourslash/tests/inlayHintsOverloadCall1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/inlayHintsOverloadCall1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsOverloadCall1_test.go index 4c7221d1d3528..b6fc0bfdca7bc 100644 --- a/tsc/internal/fourslash/tests/inlayHintsOverloadCall1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsOverloadCall1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsOverloadCall1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsOverloadCall2_test.go b/tsc/pkg/fourslash/tests/inlayHintsOverloadCall2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsOverloadCall2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsOverloadCall2_test.go index 4d6283cb0c675..b975f5fca3313 100644 --- a/tsc/internal/fourslash/tests/inlayHintsOverloadCall2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsOverloadCall2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsOverloadCall2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsParameterNames_test.go b/tsc/pkg/fourslash/tests/inlayHintsParameterNames_test.go similarity index 89% rename from tsc/internal/fourslash/tests/inlayHintsParameterNames_test.go rename to tsc/pkg/fourslash/tests/inlayHintsParameterNames_test.go index 16603576f64b2..c0af4e17e3edc 100644 --- a/tsc/internal/fourslash/tests/inlayHintsParameterNames_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsParameterNames_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsParameterNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go similarity index 70% rename from tsc/internal/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go index b072ff37f53bc..4126fe84505c6 100644 --- a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarationComputedName1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsPropertyDeclarationComputedName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations2_test.go b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations2_test.go index 5ebf9b7a08e46..544eff4324ae2 100644 --- a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsPropertyDeclarations2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations_test.go b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations_test.go similarity index 74% rename from tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations_test.go rename to tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations_test.go index 155286f366474..c53dfda2512d0 100644 --- a/tsc/internal/fourslash/tests/inlayHintsPropertyDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsPropertyDeclarations_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsPropertyDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsQuotePreference1_test.go b/tsc/pkg/fourslash/tests/inlayHintsQuotePreference1_test.go similarity index 71% rename from tsc/internal/fourslash/tests/inlayHintsQuotePreference1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsQuotePreference1_test.go index 270fdccf47350..e541eda851b82 100644 --- a/tsc/internal/fourslash/tests/inlayHintsQuotePreference1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsQuotePreference1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsQuotePreference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsQuotePreference2_test.go b/tsc/pkg/fourslash/tests/inlayHintsQuotePreference2_test.go similarity index 71% rename from tsc/internal/fourslash/tests/inlayHintsQuotePreference2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsQuotePreference2_test.go index d0b07810c2f3a..a7b0582d935d1 100644 --- a/tsc/internal/fourslash/tests/inlayHintsQuotePreference2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsQuotePreference2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsQuotePreference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsReparsedNodeCrash_test.go b/tsc/pkg/fourslash/tests/inlayHintsReparsedNodeCrash_test.go similarity index 73% rename from tsc/internal/fourslash/tests/inlayHintsReparsedNodeCrash_test.go rename to tsc/pkg/fourslash/tests/inlayHintsReparsedNodeCrash_test.go index 1d0f7e887cb26..dac1c835401f9 100644 --- a/tsc/internal/fourslash/tests/inlayHintsReparsedNodeCrash_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsReparsedNodeCrash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsReparsedNodeCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsRestParameters1_test.go b/tsc/pkg/fourslash/tests/inlayHintsRestParameters1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/inlayHintsRestParameters1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsRestParameters1_test.go index 6775acbb89762..ddf9b9efd95fa 100644 --- a/tsc/internal/fourslash/tests/inlayHintsRestParameters1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsRestParameters1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsRestParameters1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsRestParameters2_test.go b/tsc/pkg/fourslash/tests/inlayHintsRestParameters2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/inlayHintsRestParameters2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsRestParameters2_test.go index d187c11f960a8..48eab894a5af6 100644 --- a/tsc/internal/fourslash/tests/inlayHintsRestParameters2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsRestParameters2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsRestParameters2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsReturnType_test.go b/tsc/pkg/fourslash/tests/inlayHintsReturnType_test.go similarity index 74% rename from tsc/internal/fourslash/tests/inlayHintsReturnType_test.go rename to tsc/pkg/fourslash/tests/inlayHintsReturnType_test.go index 5448f5be2a619..2d942f4cfe4c1 100644 --- a/tsc/internal/fourslash/tests/inlayHintsReturnType_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsReturnType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsReturnType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsThisParameter_test.go b/tsc/pkg/fourslash/tests/inlayHintsThisParameter_test.go similarity index 73% rename from tsc/internal/fourslash/tests/inlayHintsThisParameter_test.go rename to tsc/pkg/fourslash/tests/inlayHintsThisParameter_test.go index ceafadc139636..ddd3f98530c86 100644 --- a/tsc/internal/fourslash/tests/inlayHintsThisParameter_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsThisParameter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsThisParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsTupleTypeCrash_test.go b/tsc/pkg/fourslash/tests/inlayHintsTupleTypeCrash_test.go similarity index 70% rename from tsc/internal/fourslash/tests/inlayHintsTupleTypeCrash_test.go rename to tsc/pkg/fourslash/tests/inlayHintsTupleTypeCrash_test.go index eba0817e29966..e0b2d89e0a6e9 100644 --- a/tsc/internal/fourslash/tests/inlayHintsTupleTypeCrash_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsTupleTypeCrash_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsTupleTypeCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsTypeMatchesName_test.go b/tsc/pkg/fourslash/tests/inlayHintsTypeMatchesName_test.go similarity index 72% rename from tsc/internal/fourslash/tests/inlayHintsTypeMatchesName_test.go rename to tsc/pkg/fourslash/tests/inlayHintsTypeMatchesName_test.go index f4ae2afe12c91..94c157f27503a 100644 --- a/tsc/internal/fourslash/tests/inlayHintsTypeMatchesName_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsTypeMatchesName_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsTypeMatchesName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go b/tsc/pkg/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go similarity index 69% rename from tsc/internal/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go index 17b530cd86bfb..fa0659828b3ce 100644 --- a/tsc/internal/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsTypeParameterModifiers1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsTypeParameterModifiers1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsUsing_test.go b/tsc/pkg/fourslash/tests/inlayHintsUsing_test.go similarity index 68% rename from tsc/internal/fourslash/tests/inlayHintsUsing_test.go rename to tsc/pkg/fourslash/tests/inlayHintsUsing_test.go index b8e53342331f4..7c0586b5b56f9 100644 --- a/tsc/internal/fourslash/tests/inlayHintsUsing_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsUsing_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsUsing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsVariableTypes1_test.go b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/inlayHintsVariableTypes1_test.go rename to tsc/pkg/fourslash/tests/inlayHintsVariableTypes1_test.go index 369d08d9bd59d..c9f588ad75483 100644 --- a/tsc/internal/fourslash/tests/inlayHintsVariableTypes1_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsVariableTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsVariableTypes2_test.go b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/inlayHintsVariableTypes2_test.go rename to tsc/pkg/fourslash/tests/inlayHintsVariableTypes2_test.go index a7efb18d9e831..e69df12fb73ca 100644 --- a/tsc/internal/fourslash/tests/inlayHintsVariableTypes2_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsVariableTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsVariableTypes3_test.go b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/inlayHintsVariableTypes3_test.go rename to tsc/pkg/fourslash/tests/inlayHintsVariableTypes3_test.go index 0cb397e43aa68..87b31a7fd30a4 100644 --- a/tsc/internal/fourslash/tests/inlayHintsVariableTypes3_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsVariableTypes3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsVariableTypes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/inlayHintsWithClosures_test.go b/tsc/pkg/fourslash/tests/inlayHintsWithClosures_test.go similarity index 78% rename from tsc/internal/fourslash/tests/inlayHintsWithClosures_test.go rename to tsc/pkg/fourslash/tests/inlayHintsWithClosures_test.go index c6b514dc35599..e6aea769448be 100644 --- a/tsc/internal/fourslash/tests/inlayHintsWithClosures_test.go +++ b/tsc/pkg/fourslash/tests/inlayHintsWithClosures_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInlayHintsWithClosures(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go b/tsc/pkg/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go similarity index 78% rename from tsc/internal/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go rename to tsc/pkg/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go index 84442ecc6681f..e30575c816b1b 100644 --- a/tsc/internal/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go +++ b/tsc/pkg/fourslash/tests/insertArgumentBeforeOverloadedConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertArgumentBeforeOverloadedConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go b/tsc/pkg/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go similarity index 80% rename from tsc/internal/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go rename to tsc/pkg/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go index a53667098ebe5..f553828713cea 100644 --- a/tsc/internal/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go +++ b/tsc/pkg/fourslash/tests/insertInterfaceAndCheckTypeLiteralField_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertInterfaceAndCheckTypeLiteralField(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertMethodCallAboveOthers_test.go b/tsc/pkg/fourslash/tests/insertMethodCallAboveOthers_test.go similarity index 77% rename from tsc/internal/fourslash/tests/insertMethodCallAboveOthers_test.go rename to tsc/pkg/fourslash/tests/insertMethodCallAboveOthers_test.go index de8763c9ce26e..ac1a98e3d6feb 100644 --- a/tsc/internal/fourslash/tests/insertMethodCallAboveOthers_test.go +++ b/tsc/pkg/fourslash/tests/insertMethodCallAboveOthers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertMethodCallAboveOthers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertPublicBeforeSetter_test.go b/tsc/pkg/fourslash/tests/insertPublicBeforeSetter_test.go similarity index 77% rename from tsc/internal/fourslash/tests/insertPublicBeforeSetter_test.go rename to tsc/pkg/fourslash/tests/insertPublicBeforeSetter_test.go index d193d4c56111b..49f61b1fce2dc 100644 --- a/tsc/internal/fourslash/tests/insertPublicBeforeSetter_test.go +++ b/tsc/pkg/fourslash/tests/insertPublicBeforeSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertPublicBeforeSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go b/tsc/pkg/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go rename to tsc/pkg/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go index 3d74cb9cd85c6..37d3bdb3f4625 100644 --- a/tsc/internal/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go +++ b/tsc/pkg/fourslash/tests/insertReturnStatementInDuplicateIdentifierFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertReturnStatementInDuplicateIdentifierFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertSecondTryCatchBlock_test.go b/tsc/pkg/fourslash/tests/insertSecondTryCatchBlock_test.go similarity index 75% rename from tsc/internal/fourslash/tests/insertSecondTryCatchBlock_test.go rename to tsc/pkg/fourslash/tests/insertSecondTryCatchBlock_test.go index cc7a5618d43f8..501cd631ecc30 100644 --- a/tsc/internal/fourslash/tests/insertSecondTryCatchBlock_test.go +++ b/tsc/pkg/fourslash/tests/insertSecondTryCatchBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertSecondTryCatchBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go b/tsc/pkg/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go similarity index 76% rename from tsc/internal/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go rename to tsc/pkg/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go index 176b517c24c0f..39fc5c63d0055 100644 --- a/tsc/internal/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go +++ b/tsc/pkg/fourslash/tests/insertVarAfterEmptyTypeParamList_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInsertVarAfterEmptyTypeParamList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/instanceTypesForGenericType1_test.go b/tsc/pkg/fourslash/tests/instanceTypesForGenericType1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/instanceTypesForGenericType1_test.go rename to tsc/pkg/fourslash/tests/instanceTypesForGenericType1_test.go index 85d5328e630ed..a996ba11b00fb 100644 --- a/tsc/internal/fourslash/tests/instanceTypesForGenericType1_test.go +++ b/tsc/pkg/fourslash/tests/instanceTypesForGenericType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInstanceTypesForGenericType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/intellisenseInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/intellisenseInObjectLiteral_test.go similarity index 78% rename from tsc/internal/fourslash/tests/intellisenseInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/intellisenseInObjectLiteral_test.go index fa332ae7463e7..42e4fbed2b5ae 100644 --- a/tsc/internal/fourslash/tests/intellisenseInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/intellisenseInObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIntellisenseInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/interfaceExtendsPrimitive_test.go b/tsc/pkg/fourslash/tests/interfaceExtendsPrimitive_test.go similarity index 78% rename from tsc/internal/fourslash/tests/interfaceExtendsPrimitive_test.go rename to tsc/pkg/fourslash/tests/interfaceExtendsPrimitive_test.go index b714462baa5a2..4cfba8da6f83f 100644 --- a/tsc/internal/fourslash/tests/interfaceExtendsPrimitive_test.go +++ b/tsc/pkg/fourslash/tests/interfaceExtendsPrimitive_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInterfaceExtendsPrimitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/invalidRestArgError_test.go b/tsc/pkg/fourslash/tests/invalidRestArgError_test.go similarity index 75% rename from tsc/internal/fourslash/tests/invalidRestArgError_test.go rename to tsc/pkg/fourslash/tests/invalidRestArgError_test.go index 4c0f1a8c4a74a..534fdea0b09ed 100644 --- a/tsc/internal/fourslash/tests/invalidRestArgError_test.go +++ b/tsc/pkg/fourslash/tests/invalidRestArgError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInvalidRestArgError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/invertedCloduleAfterQuickInfo_test.go b/tsc/pkg/fourslash/tests/invertedCloduleAfterQuickInfo_test.go similarity index 80% rename from tsc/internal/fourslash/tests/invertedCloduleAfterQuickInfo_test.go rename to tsc/pkg/fourslash/tests/invertedCloduleAfterQuickInfo_test.go index ca842617e8358..038d4db77225f 100644 --- a/tsc/internal/fourslash/tests/invertedCloduleAfterQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/invertedCloduleAfterQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInvertedCloduleAfterQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/invertedFunduleAfterQuickInfo_test.go b/tsc/pkg/fourslash/tests/invertedFunduleAfterQuickInfo_test.go similarity index 80% rename from tsc/internal/fourslash/tests/invertedFunduleAfterQuickInfo_test.go rename to tsc/pkg/fourslash/tests/invertedFunduleAfterQuickInfo_test.go index 2b377aaf55991..d37d71a4274f9 100644 --- a/tsc/internal/fourslash/tests/invertedFunduleAfterQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/invertedFunduleAfterQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestInvertedFunduleAfterQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go b/tsc/pkg/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go similarity index 94% rename from tsc/internal/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go rename to tsc/pkg/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go index 94fe61a0d8f9b..0adbdb6fd66cb 100644 --- a/tsc/internal/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionAcrossGlobalProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionAcrossGlobalProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionAcrossModuleProjects_test.go b/tsc/pkg/fourslash/tests/isDefinitionAcrossModuleProjects_test.go similarity index 96% rename from tsc/internal/fourslash/tests/isDefinitionAcrossModuleProjects_test.go rename to tsc/pkg/fourslash/tests/isDefinitionAcrossModuleProjects_test.go index 3c3033b583c84..2bb46fb12b571 100644 --- a/tsc/internal/fourslash/tests/isDefinitionAcrossModuleProjects_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionAcrossModuleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionAcrossModuleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionInterfaceImplementation_test.go b/tsc/pkg/fourslash/tests/isDefinitionInterfaceImplementation_test.go similarity index 79% rename from tsc/internal/fourslash/tests/isDefinitionInterfaceImplementation_test.go rename to tsc/pkg/fourslash/tests/isDefinitionInterfaceImplementation_test.go index 91232a78f2799..4c1aeec9f68b3 100644 --- a/tsc/internal/fourslash/tests/isDefinitionInterfaceImplementation_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionInterfaceImplementation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionInterfaceImplementation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionOverloads_test.go b/tsc/pkg/fourslash/tests/isDefinitionOverloads_test.go similarity index 79% rename from tsc/internal/fourslash/tests/isDefinitionOverloads_test.go rename to tsc/pkg/fourslash/tests/isDefinitionOverloads_test.go index 929d8013549f8..8a83c041bbba8 100644 --- a/tsc/internal/fourslash/tests/isDefinitionOverloads_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionShorthandProperty_test.go b/tsc/pkg/fourslash/tests/isDefinitionShorthandProperty_test.go similarity index 77% rename from tsc/internal/fourslash/tests/isDefinitionShorthandProperty_test.go rename to tsc/pkg/fourslash/tests/isDefinitionShorthandProperty_test.go index 9058c83ab109a..c542f3a4a265c 100644 --- a/tsc/internal/fourslash/tests/isDefinitionShorthandProperty_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionShorthandProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionShorthandProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionSingleImport_test.go b/tsc/pkg/fourslash/tests/isDefinitionSingleImport_test.go similarity index 78% rename from tsc/internal/fourslash/tests/isDefinitionSingleImport_test.go rename to tsc/pkg/fourslash/tests/isDefinitionSingleImport_test.go index 415635f82e4d1..a540b62443065 100644 --- a/tsc/internal/fourslash/tests/isDefinitionSingleImport_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionSingleImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionSingleImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/isDefinitionSingleReference_test.go b/tsc/pkg/fourslash/tests/isDefinitionSingleReference_test.go similarity index 75% rename from tsc/internal/fourslash/tests/isDefinitionSingleReference_test.go rename to tsc/pkg/fourslash/tests/isDefinitionSingleReference_test.go index f54147ae9a83f..5f842b7a00fd5 100644 --- a/tsc/internal/fourslash/tests/isDefinitionSingleReference_test.go +++ b/tsc/pkg/fourslash/tests/isDefinitionSingleReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIsDefinitionSingleReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/issue57429_test.go b/tsc/pkg/fourslash/tests/issue57429_test.go similarity index 83% rename from tsc/internal/fourslash/tests/issue57429_test.go rename to tsc/pkg/fourslash/tests/issue57429_test.go index bd5dd106c68b0..e832d998c2afc 100644 --- a/tsc/internal/fourslash/tests/issue57429_test.go +++ b/tsc/pkg/fourslash/tests/issue57429_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIssue57429(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/issue57585-2_test.go b/tsc/pkg/fourslash/tests/issue57585-2_test.go similarity index 94% rename from tsc/internal/fourslash/tests/issue57585-2_test.go rename to tsc/pkg/fourslash/tests/issue57585-2_test.go index 9d5f867afb574..bb28fa2528511 100644 --- a/tsc/internal/fourslash/tests/issue57585-2_test.go +++ b/tsc/pkg/fourslash/tests/issue57585-2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestIssue57585_2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptClass2_test.go b/tsc/pkg/fourslash/tests/javaScriptClass2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/javaScriptClass2_test.go rename to tsc/pkg/fourslash/tests/javaScriptClass2_test.go index f29fc29abece5..22439b2fd9829 100644 --- a/tsc/internal/fourslash/tests/javaScriptClass2_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptClass2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptClass3_test.go b/tsc/pkg/fourslash/tests/javaScriptClass3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/javaScriptClass3_test.go rename to tsc/pkg/fourslash/tests/javaScriptClass3_test.go index 38f9478d5282e..a09d36fa3c446 100644 --- a/tsc/internal/fourslash/tests/javaScriptClass3_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptClass3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptClass3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptClass4_test.go b/tsc/pkg/fourslash/tests/javaScriptClass4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/javaScriptClass4_test.go rename to tsc/pkg/fourslash/tests/javaScriptClass4_test.go index 315ead1150971..51e00ad646cf1 100644 --- a/tsc/internal/fourslash/tests/javaScriptClass4_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptClass4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptClass4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModules12_test.go b/tsc/pkg/fourslash/tests/javaScriptModules12_test.go similarity index 91% rename from tsc/internal/fourslash/tests/javaScriptModules12_test.go rename to tsc/pkg/fourslash/tests/javaScriptModules12_test.go index 53b04d6dc2b73..375ffa519cd69 100644 --- a/tsc/internal/fourslash/tests/javaScriptModules12_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModules12_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModules12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModules13_test.go b/tsc/pkg/fourslash/tests/javaScriptModules13_test.go similarity index 86% rename from tsc/internal/fourslash/tests/javaScriptModules13_test.go rename to tsc/pkg/fourslash/tests/javaScriptModules13_test.go index 8870ac95446e5..45de098c92be4 100644 --- a/tsc/internal/fourslash/tests/javaScriptModules13_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModules13_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModules13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModules14_test.go b/tsc/pkg/fourslash/tests/javaScriptModules14_test.go similarity index 77% rename from tsc/internal/fourslash/tests/javaScriptModules14_test.go rename to tsc/pkg/fourslash/tests/javaScriptModules14_test.go index 2f4e8da755fc9..d80cb7093cf2b 100644 --- a/tsc/internal/fourslash/tests/javaScriptModules14_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModules14_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModules14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModules18_test.go b/tsc/pkg/fourslash/tests/javaScriptModules18_test.go similarity index 78% rename from tsc/internal/fourslash/tests/javaScriptModules18_test.go rename to tsc/pkg/fourslash/tests/javaScriptModules18_test.go index 0e9740890e52d..0c83d08d41085 100644 --- a/tsc/internal/fourslash/tests/javaScriptModules18_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModules18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModules18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModules19_test.go b/tsc/pkg/fourslash/tests/javaScriptModules19_test.go similarity index 86% rename from tsc/internal/fourslash/tests/javaScriptModules19_test.go rename to tsc/pkg/fourslash/tests/javaScriptModules19_test.go index a7e37d5e45080..731d68febf464 100644 --- a/tsc/internal/fourslash/tests/javaScriptModules19_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModules19_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModules19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModulesError1_test.go b/tsc/pkg/fourslash/tests/javaScriptModulesError1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/javaScriptModulesError1_test.go rename to tsc/pkg/fourslash/tests/javaScriptModulesError1_test.go index c25bbb3996f99..f3384f2ebb648 100644 --- a/tsc/internal/fourslash/tests/javaScriptModulesError1_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModulesError1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModulesError1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javaScriptModulesWithBackticks_test.go b/tsc/pkg/fourslash/tests/javaScriptModulesWithBackticks_test.go similarity index 80% rename from tsc/internal/fourslash/tests/javaScriptModulesWithBackticks_test.go rename to tsc/pkg/fourslash/tests/javaScriptModulesWithBackticks_test.go index effd0fea4f90c..707d0f344640d 100644 --- a/tsc/internal/fourslash/tests/javaScriptModulesWithBackticks_test.go +++ b/tsc/pkg/fourslash/tests/javaScriptModulesWithBackticks_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavaScriptModulesWithBackticks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules20_test.go b/tsc/pkg/fourslash/tests/javascriptModules20_test.go similarity index 78% rename from tsc/internal/fourslash/tests/javascriptModules20_test.go rename to tsc/pkg/fourslash/tests/javascriptModules20_test.go index 6a2c804b589b9..449b3705c88de 100644 --- a/tsc/internal/fourslash/tests/javascriptModules20_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules20_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules21_test.go b/tsc/pkg/fourslash/tests/javascriptModules21_test.go similarity index 78% rename from tsc/internal/fourslash/tests/javascriptModules21_test.go rename to tsc/pkg/fourslash/tests/javascriptModules21_test.go index 0a50460a9c835..fb774b9c09fca 100644 --- a/tsc/internal/fourslash/tests/javascriptModules21_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules21_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules22_test.go b/tsc/pkg/fourslash/tests/javascriptModules22_test.go similarity index 91% rename from tsc/internal/fourslash/tests/javascriptModules22_test.go rename to tsc/pkg/fourslash/tests/javascriptModules22_test.go index 6259f39feaeeb..bf125fbf97a8d 100644 --- a/tsc/internal/fourslash/tests/javascriptModules22_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules22_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules23_test.go b/tsc/pkg/fourslash/tests/javascriptModules23_test.go similarity index 79% rename from tsc/internal/fourslash/tests/javascriptModules23_test.go rename to tsc/pkg/fourslash/tests/javascriptModules23_test.go index f2f41f811ba15..1e38bcece4981 100644 --- a/tsc/internal/fourslash/tests/javascriptModules23_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules23_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules23(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules24_test.go b/tsc/pkg/fourslash/tests/javascriptModules24_test.go similarity index 87% rename from tsc/internal/fourslash/tests/javascriptModules24_test.go rename to tsc/pkg/fourslash/tests/javascriptModules24_test.go index 89dbf7da87450..9ec10c51c95a2 100644 --- a/tsc/internal/fourslash/tests/javascriptModules24_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules24_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules24(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModules25_test.go b/tsc/pkg/fourslash/tests/javascriptModules25_test.go similarity index 80% rename from tsc/internal/fourslash/tests/javascriptModules25_test.go rename to tsc/pkg/fourslash/tests/javascriptModules25_test.go index 54eaba5ce0e05..9fae9ed232013 100644 --- a/tsc/internal/fourslash/tests/javascriptModules25_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModules25_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModules25(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModulesTypeImportAsValue_test.go b/tsc/pkg/fourslash/tests/javascriptModulesTypeImportAsValue_test.go similarity index 80% rename from tsc/internal/fourslash/tests/javascriptModulesTypeImportAsValue_test.go rename to tsc/pkg/fourslash/tests/javascriptModulesTypeImportAsValue_test.go index e15ada31e0bfb..5bfaf8cc46507 100644 --- a/tsc/internal/fourslash/tests/javascriptModulesTypeImportAsValue_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModulesTypeImportAsValue_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModulesTypeImportAsValue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/javascriptModulesTypeImport_test.go b/tsc/pkg/fourslash/tests/javascriptModulesTypeImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/javascriptModulesTypeImport_test.go rename to tsc/pkg/fourslash/tests/javascriptModulesTypeImport_test.go index aaf64ad5584c7..d697300c2354d 100644 --- a/tsc/internal/fourslash/tests/javascriptModulesTypeImport_test.go +++ b/tsc/pkg/fourslash/tests/javascriptModulesTypeImport_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJavascriptModulesTypeImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocAliasQuickInfo_test.go b/tsc/pkg/fourslash/tests/jsDocAliasQuickInfo_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsDocAliasQuickInfo_test.go rename to tsc/pkg/fourslash/tests/jsDocAliasQuickInfo_test.go index 177c3b12ee498..8cb79d66bf9fe 100644 --- a/tsc/internal/fourslash/tests/jsDocAliasQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/jsDocAliasQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocAliasQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocAugmentsAndExtends_test.go b/tsc/pkg/fourslash/tests/jsDocAugmentsAndExtends_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocAugmentsAndExtends_test.go rename to tsc/pkg/fourslash/tests/jsDocAugmentsAndExtends_test.go index 8d5b9e250b2cb..c5a3f81850ef6 100644 --- a/tsc/internal/fourslash/tests/jsDocAugmentsAndExtends_test.go +++ b/tsc/pkg/fourslash/tests/jsDocAugmentsAndExtends_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocAugmentsAndExtends(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocAugments_test.go b/tsc/pkg/fourslash/tests/jsDocAugments_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocAugments_test.go rename to tsc/pkg/fourslash/tests/jsDocAugments_test.go index 6ad93c2a39137..93634245101a2 100644 --- a/tsc/internal/fourslash/tests/jsDocAugments_test.go +++ b/tsc/pkg/fourslash/tests/jsDocAugments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocAugments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go b/tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go rename to tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go index 126d777bb0225..f84ecb983bab9 100644 --- a/tsc/internal/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go +++ b/tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespacesVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocDontBreakWithNamespacesVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocDontBreakWithNamespaces_test.go b/tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespaces_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsDocDontBreakWithNamespaces_test.go rename to tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespaces_test.go index 06531e4f0396a..3dea8c15107c6 100644 --- a/tsc/internal/fourslash/tests/jsDocDontBreakWithNamespaces_test.go +++ b/tsc/pkg/fourslash/tests/jsDocDontBreakWithNamespaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocDontBreakWithNamespaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocExtends_test.go b/tsc/pkg/fourslash/tests/jsDocExtends_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocExtends_test.go rename to tsc/pkg/fourslash/tests/jsDocExtends_test.go index b7def31666ff9..eb574f32b258a 100644 --- a/tsc/internal/fourslash/tests/jsDocExtends_test.go +++ b/tsc/pkg/fourslash/tests/jsDocExtends_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocExtends(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocForTypeAlias_test.go b/tsc/pkg/fourslash/tests/jsDocForTypeAlias_test.go similarity index 76% rename from tsc/internal/fourslash/tests/jsDocForTypeAlias_test.go rename to tsc/pkg/fourslash/tests/jsDocForTypeAlias_test.go index 0406ec951afa9..181a3c7cd9ac8 100644 --- a/tsc/internal/fourslash/tests/jsDocForTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/jsDocForTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocForTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures10_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures10_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures10_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures10_test.go index 413e37a0d89f6..90769eba69d19 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures10_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures11_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures11_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures11_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures11_test.go index 7b74de44df77a..c388ae7794d62 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures11_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures12_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures12_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures12_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures12_test.go index 53e994d7bbf9f..5c39edcf6105b 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures12_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures13_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures13_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures13_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures13_test.go index c5544f2108f5f..a8d5290332caa 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures13_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures2_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures2_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures2_test.go index ca98e50989bcf..c69e2f4a3c03d 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures3_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures3_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures3_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures3_test.go index 7dec9b4620e1b..63bff3bb4b739 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures3_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures4_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures4_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures4_test.go index 5593896aed2f7..60ed56bf334ba 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures4_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures5VS_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures5VS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures5VS_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures5VS_test.go index b4fb73f73a617..1c5a7c99f0824 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures5VS_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures5VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures5VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures5_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures5_test.go similarity index 88% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures5_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures5_test.go index eb52fb3d55bd4..709b346689235 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures5_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures6VS_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures6VS_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures6VS_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures6VS_test.go index 6baf848bfddf4..a073291d687b9 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures6VS_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures6VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures6VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures6_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures6_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures6_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures6_test.go index e19ec03eb8fbd..3c8c93f5be638 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures6_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures7_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures7_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures7_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures7_test.go index a7ec3b9451574..3881f6682ef0f 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures7_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionSignatures8_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures8_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsDocFunctionSignatures8_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionSignatures8_test.go index 3e2ff6390981e..d49ec13c2f6d4 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionSignatures8_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionSignatures8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionSignatures8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go b/tsc/pkg/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go rename to tsc/pkg/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go index 46a87ea6758a4..27e9f6460892b 100644 --- a/tsc/internal/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/jsDocFunctionTypeCompletionsNoCrash_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocFunctionTypeCompletionsNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocGenerics1_test.go b/tsc/pkg/fourslash/tests/jsDocGenerics1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsDocGenerics1_test.go rename to tsc/pkg/fourslash/tests/jsDocGenerics1_test.go index befec3376bf1c..8161c01c42ebc 100644 --- a/tsc/internal/fourslash/tests/jsDocGenerics1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocGenerics1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocGenerics1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocGenerics2_test.go b/tsc/pkg/fourslash/tests/jsDocGenerics2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsDocGenerics2_test.go rename to tsc/pkg/fourslash/tests/jsDocGenerics2_test.go index e527bf95dd2df..ad3e15a180d0b 100644 --- a/tsc/internal/fourslash/tests/jsDocGenerics2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocGenerics2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocGenerics2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocIndentationPreservation1_test.go b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsDocIndentationPreservation1_test.go rename to tsc/pkg/fourslash/tests/jsDocIndentationPreservation1_test.go index 455849eb2ac1e..830b0de8096bd 100644 --- a/tsc/internal/fourslash/tests/jsDocIndentationPreservation1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocIndentationPreservation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocIndentationPreservation2_test.go b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsDocIndentationPreservation2_test.go rename to tsc/pkg/fourslash/tests/jsDocIndentationPreservation2_test.go index 6c587178ce7a1..5d8cbb0fd2433 100644 --- a/tsc/internal/fourslash/tests/jsDocIndentationPreservation2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocIndentationPreservation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocIndentationPreservation3_test.go b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsDocIndentationPreservation3_test.go rename to tsc/pkg/fourslash/tests/jsDocIndentationPreservation3_test.go index c2ee8d2e3a86c..706d9a468492a 100644 --- a/tsc/internal/fourslash/tests/jsDocIndentationPreservation3_test.go +++ b/tsc/pkg/fourslash/tests/jsDocIndentationPreservation3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocIndentationPreservation3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocInheritDoc_test.go b/tsc/pkg/fourslash/tests/jsDocInheritDoc_test.go similarity index 94% rename from tsc/internal/fourslash/tests/jsDocInheritDoc_test.go rename to tsc/pkg/fourslash/tests/jsDocInheritDoc_test.go index c374577e85139..95d39506a7d6b 100644 --- a/tsc/internal/fourslash/tests/jsDocInheritDoc_test.go +++ b/tsc/pkg/fourslash/tests/jsDocInheritDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocInheritDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription10_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription10_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription10_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription10_test.go index 83df4be228c0e..43833d91c060f 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription10_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription11_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription11_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription11_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription11_test.go index bfc066110d635..eaedccf731169 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription11_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription12_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription12_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription12_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription12_test.go index 590b692df68bd..7911a700527ca 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription12_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription1_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription1_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription1_test.go index 0d5d21ba7b516..2a1c9ec3fac66 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription2_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription2_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription2_test.go index fe90f6c2507f0..4d480c0df6996 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription3_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription3_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription3_test.go index 5d0cf8a1c0f85..38313c2bb1efe 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription3_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription4_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription4_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription4_test.go index 331118749a934..135c2babf228e 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription4_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription5_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription5_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription5_test.go index 10d4c06569c54..d53c4e61494ab 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription5_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription6_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription6_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription6_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription6_test.go index 43c0811c5ed12..29fcdbe6a0554 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription6_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription7_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription7_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription7_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription7_test.go index 0462ea10fc4a6..9de654764eadb 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription7_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription8_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription8_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription8_test.go index d7a2be26ba4bb..6866d99a115bb 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription8_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocPropertyDescription9_test.go b/tsc/pkg/fourslash/tests/jsDocPropertyDescription9_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsDocPropertyDescription9_test.go rename to tsc/pkg/fourslash/tests/jsDocPropertyDescription9_test.go index 4e4f4284d635b..033b2b74323bc 100644 --- a/tsc/internal/fourslash/tests/jsDocPropertyDescription9_test.go +++ b/tsc/pkg/fourslash/tests/jsDocPropertyDescription9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocPropertyDescription9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSee1_test.go b/tsc/pkg/fourslash/tests/jsDocSee1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsDocSee1_test.go rename to tsc/pkg/fourslash/tests/jsDocSee1_test.go index 9c734f8a77e38..b0a7e98c723ed 100644 --- a/tsc/internal/fourslash/tests/jsDocSee1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSee1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSee1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSee2_test.go b/tsc/pkg/fourslash/tests/jsDocSee2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocSee2_test.go rename to tsc/pkg/fourslash/tests/jsDocSee2_test.go index 1f056785c2991..b66704f5dfdfc 100644 --- a/tsc/internal/fourslash/tests/jsDocSee2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSee2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSee2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSee3_test.go b/tsc/pkg/fourslash/tests/jsDocSee3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsDocSee3_test.go rename to tsc/pkg/fourslash/tests/jsDocSee3_test.go index 22104489eb3bd..222c31e97d745 100644 --- a/tsc/internal/fourslash/tests/jsDocSee3_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSee3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSee3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSee4_test.go b/tsc/pkg/fourslash/tests/jsDocSee4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsDocSee4_test.go rename to tsc/pkg/fourslash/tests/jsDocSee4_test.go index 3ddbbdc610c69..048e01261bf86 100644 --- a/tsc/internal/fourslash/tests/jsDocSee4_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSee4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSee4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSee_rename1_test.go b/tsc/pkg/fourslash/tests/jsDocSee_rename1_test.go similarity index 70% rename from tsc/internal/fourslash/tests/jsDocSee_rename1_test.go rename to tsc/pkg/fourslash/tests/jsDocSee_rename1_test.go index 63eeefb0f081f..1072298822619 100644 --- a/tsc/internal/fourslash/tests/jsDocSee_rename1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSee_rename1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSee_rename1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocServices_test.go b/tsc/pkg/fourslash/tests/jsDocServices_test.go similarity index 88% rename from tsc/internal/fourslash/tests/jsDocServices_test.go rename to tsc/pkg/fourslash/tests/jsDocServices_test.go index 2eda986cb49d8..4c5ba4e97ed76 100644 --- a/tsc/internal/fourslash/tests/jsDocServices_test.go +++ b/tsc/pkg/fourslash/tests/jsDocServices_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocServices(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocSignature-43394_test.go b/tsc/pkg/fourslash/tests/jsDocSignature-43394_test.go similarity index 77% rename from tsc/internal/fourslash/tests/jsDocSignature-43394_test.go rename to tsc/pkg/fourslash/tests/jsDocSignature-43394_test.go index 61c733c59a41e..db68a9a6507d2 100644 --- a/tsc/internal/fourslash/tests/jsDocSignature-43394_test.go +++ b/tsc/pkg/fourslash/tests/jsDocSignature-43394_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocSignature_43394(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocTagsWithHyphen_test.go b/tsc/pkg/fourslash/tests/jsDocTagsWithHyphen_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsDocTagsWithHyphen_test.go rename to tsc/pkg/fourslash/tests/jsDocTagsWithHyphen_test.go index 7e4cc3b06a159..5969289054e81 100644 --- a/tsc/internal/fourslash/tests/jsDocTagsWithHyphen_test.go +++ b/tsc/pkg/fourslash/tests/jsDocTagsWithHyphen_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocTagsWithHyphen(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo1_test.go b/tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo1_test.go rename to tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo1_test.go index 9ef91fdd08511..c4fe2d4ae6795 100644 --- a/tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocTypeTagQuickInfo1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo2_test.go b/tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo2_test.go rename to tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo2_test.go index 213094874eabf..67c2d9e9a6a92 100644 --- a/tsc/internal/fourslash/tests/jsDocTypeTagQuickInfo2_test.go +++ b/tsc/pkg/fourslash/tests/jsDocTypeTagQuickInfo2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocTypeTagQuickInfo2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsDocTypedefQuickInfo1_test.go b/tsc/pkg/fourslash/tests/jsDocTypedefQuickInfo1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsDocTypedefQuickInfo1_test.go rename to tsc/pkg/fourslash/tests/jsDocTypedefQuickInfo1_test.go index 028540a248588..90c7e4862e825 100644 --- a/tsc/internal/fourslash/tests/jsDocTypedefQuickInfo1_test.go +++ b/tsc/pkg/fourslash/tests/jsDocTypedefQuickInfo1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsDocTypedefQuickInfo1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsFileImportNoTypes2_test.go b/tsc/pkg/fourslash/tests/jsFileImportNoTypes2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/jsFileImportNoTypes2_test.go rename to tsc/pkg/fourslash/tests/jsFileImportNoTypes2_test.go index c4089516c62c1..05af7dc772031 100644 --- a/tsc/internal/fourslash/tests/jsFileImportNoTypes2_test.go +++ b/tsc/pkg/fourslash/tests/jsFileImportNoTypes2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsFileImportNoTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go b/tsc/pkg/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go rename to tsc/pkg/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go index e878f885f8c49..9ab6cd5389b0e 100644 --- a/tsc/internal/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go +++ b/tsc/pkg/fourslash/tests/jsObjectDefinePropertyRenameLocations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsObjectDefinePropertyRenameLocations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go b/tsc/pkg/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go similarity index 99% rename from tsc/internal/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go rename to tsc/pkg/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go index d737e423f8c8f..db958e37b797d 100644 --- a/tsc/internal/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go +++ b/tsc/pkg/fourslash/tests/jsQuickInfoGenerallyAcceptableSize_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsQuickInfoGenerallyAcceptableSize(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsRequireQuickInfo_test.go b/tsc/pkg/fourslash/tests/jsRequireQuickInfo_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsRequireQuickInfo_test.go rename to tsc/pkg/fourslash/tests/jsRequireQuickInfo_test.go index 9d4afcd87139c..4ebd05ba947c4 100644 --- a/tsc/internal/fourslash/tests/jsRequireQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/jsRequireQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsRequireQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsSignature-41059_test.go b/tsc/pkg/fourslash/tests/jsSignature-41059_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsSignature-41059_test.go rename to tsc/pkg/fourslash/tests/jsSignature-41059_test.go index 74e5cf56286ec..5224f5b4b9fc3 100644 --- a/tsc/internal/fourslash/tests/jsSignature-41059_test.go +++ b/tsc/pkg/fourslash/tests/jsSignature-41059_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsSignature_41059(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsconfig_test.go b/tsc/pkg/fourslash/tests/jsconfig_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsconfig_test.go rename to tsc/pkg/fourslash/tests/jsconfig_test.go index 48800f3472d79..e94701a7b0017 100644 --- a/tsc/internal/fourslash/tests/jsconfig_test.go +++ b/tsc/pkg/fourslash/tests/jsconfig_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsconfig(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocCallbackTagRename01_test.go b/tsc/pkg/fourslash/tests/jsdocCallbackTagRename01_test.go similarity index 84% rename from tsc/internal/fourslash/tests/jsdocCallbackTagRename01_test.go rename to tsc/pkg/fourslash/tests/jsdocCallbackTagRename01_test.go index 7c175fad80caf..08cd01d39ce51 100644 --- a/tsc/internal/fourslash/tests/jsdocCallbackTagRename01_test.go +++ b/tsc/pkg/fourslash/tests/jsdocCallbackTagRename01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocCallbackTagRename01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocCallbackTag_test.go b/tsc/pkg/fourslash/tests/jsdocCallbackTag_test.go similarity index 92% rename from tsc/internal/fourslash/tests/jsdocCallbackTag_test.go rename to tsc/pkg/fourslash/tests/jsdocCallbackTag_test.go index 3e7afed47d0fe..596acc3d24cf8 100644 --- a/tsc/internal/fourslash/tests/jsdocCallbackTag_test.go +++ b/tsc/pkg/fourslash/tests/jsdocCallbackTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocCallbackTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion10_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion10_test.go similarity index 88% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion10_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion10_test.go index cffffa431e27a..3f685bb19b6de 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion10_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion11_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion11_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion11_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion11_test.go index f8e47ec2f7609..ee00480947276 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion11_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion12_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion12_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion12_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion12_test.go index 4be65cc61302c..c02a21677d8a3 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion12_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion13_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion13_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion13_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion13_test.go index 1024f29e83718..80571a65e4753 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion13_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion13_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion14_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion14_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion14_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion14_test.go index c9f8c4da9e78d..3051736b72161 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion14_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion14_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion15_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion15_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion15_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion15_test.go index 10a9fc187fa08..5d1ef30874f8a 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion15_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion16_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion16_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion16_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion16_test.go index d9455bd325fcc..b75d9b13325d8 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion16_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion16_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion17_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion17_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion17_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion17_test.go index d64516906f44b..b7639a8baa159 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion17_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion17_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion18_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion18_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion18_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion18_test.go index 257a16860fd84..40f6b95dfa7f6 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion18_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion19_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion19_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion19_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion19_test.go index f10955121fec0..ef5915b88bbd6 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion19_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion19_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion1_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion1_test.go similarity index 98% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion1_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion1_test.go index 7c1f448c4f569..75fbc828a8028 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion20_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion20_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion20_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion20_test.go index 7eb90c44f28d6..80dd765d8ed59 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion20_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion20_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion21_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion21_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion21_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion21_test.go index 2513d199bd206..3ad193976e7d8 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion21_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion21_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion22_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion22_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion22_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion22_test.go index e61f718dcdc40..92775c909e7cb 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion22_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion22_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion2_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion2_test.go similarity index 96% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion2_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion2_test.go index a5e393b1fff78..e41c5ff93edbe 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion2_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion3_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion3_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion3_test.go index 37dba07122407..2a37e0571fd46 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion3_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion4_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion4_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion4_test.go index b4d30e1ef7cdf..cb2714fe80495 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion4_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion5_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion5_test.go similarity index 85% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion5_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion5_test.go index 504ffe75e4c75..a4fd2c3d024e4 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion5_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion6_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion6_test.go similarity index 90% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion6_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion6_test.go index 71a3af9aa8964..8f3edf1e5c517 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion6_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion7_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion7_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion7_test.go index 04bbba345ff6a..309270d8ab789 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion7_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion8_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion8_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion8_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion8_test.go index 9075bfe072321..0122fa456d276 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion8_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion9_test.go b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion9_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsdocDeprecated_suggestion9_test.go rename to tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion9_test.go index 6f55db605b45e..c36d82990f7ce 100644 --- a/tsc/internal/fourslash/tests/jsdocDeprecated_suggestion9_test.go +++ b/tsc/pkg/fourslash/tests/jsdocDeprecated_suggestion9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocDeprecated_suggestion9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocExtendsTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocExtendsTagCompletion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocExtendsTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocExtendsTagCompletion_test.go index cff7d66520d76..c768f481aba72 100644 --- a/tsc/internal/fourslash/tests/jsdocExtendsTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocExtendsTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocExtendsTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocImplementsTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocImplementsTagCompletion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocImplementsTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocImplementsTagCompletion_test.go index 1c2f356783f75..54ad75b9fa619 100644 --- a/tsc/internal/fourslash/tests/jsdocImplementsTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocImplementsTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocImplementsTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocImportTagCompletion1_test.go b/tsc/pkg/fourslash/tests/jsdocImportTagCompletion1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocImportTagCompletion1_test.go rename to tsc/pkg/fourslash/tests/jsdocImportTagCompletion1_test.go index e978a79f88f8c..6484cef73a205 100644 --- a/tsc/internal/fourslash/tests/jsdocImportTagCompletion1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocImportTagCompletion1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocImportTagCompletion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink1_test.go b/tsc/pkg/fourslash/tests/jsdocLink1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocLink1_test.go rename to tsc/pkg/fourslash/tests/jsdocLink1_test.go index 50519f3658da2..e05fc7f503a1b 100644 --- a/tsc/internal/fourslash/tests/jsdocLink1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink2_test.go b/tsc/pkg/fourslash/tests/jsdocLink2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocLink2_test.go rename to tsc/pkg/fourslash/tests/jsdocLink2_test.go index b753d8cf3e573..05fbbcb2c724a 100644 --- a/tsc/internal/fourslash/tests/jsdocLink2_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink3_test.go b/tsc/pkg/fourslash/tests/jsdocLink3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocLink3_test.go rename to tsc/pkg/fourslash/tests/jsdocLink3_test.go index ae32a03ac10aa..380c82bb466af 100644 --- a/tsc/internal/fourslash/tests/jsdocLink3_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink4_test.go b/tsc/pkg/fourslash/tests/jsdocLink4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocLink4_test.go rename to tsc/pkg/fourslash/tests/jsdocLink4_test.go index 6e598692ea61f..3c11d24f87cee 100644 --- a/tsc/internal/fourslash/tests/jsdocLink4_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink5_test.go b/tsc/pkg/fourslash/tests/jsdocLink5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocLink5_test.go rename to tsc/pkg/fourslash/tests/jsdocLink5_test.go index 56792ed7b0621..8744e8084f5e1 100644 --- a/tsc/internal/fourslash/tests/jsdocLink5_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink6_test.go b/tsc/pkg/fourslash/tests/jsdocLink6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsdocLink6_test.go rename to tsc/pkg/fourslash/tests/jsdocLink6_test.go index 60514f3082d9a..460433deaf4c4 100644 --- a/tsc/internal/fourslash/tests/jsdocLink6_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink_findAllReferences1_test.go b/tsc/pkg/fourslash/tests/jsdocLink_findAllReferences1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/jsdocLink_findAllReferences1_test.go rename to tsc/pkg/fourslash/tests/jsdocLink_findAllReferences1_test.go index 92aff43f5503d..0d946a6ef51c2 100644 --- a/tsc/internal/fourslash/tests/jsdocLink_findAllReferences1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink_findAllReferences1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink_findAllReferences1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocLink_rename1_test.go b/tsc/pkg/fourslash/tests/jsdocLink_rename1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/jsdocLink_rename1_test.go rename to tsc/pkg/fourslash/tests/jsdocLink_rename1_test.go index f6c70daab1691..72159c7f695a2 100644 --- a/tsc/internal/fourslash/tests/jsdocLink_rename1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocLink_rename1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocLink_rename1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocNullableUnion_test.go b/tsc/pkg/fourslash/tests/jsdocNullableUnion_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsdocNullableUnion_test.go rename to tsc/pkg/fourslash/tests/jsdocNullableUnion_test.go index 1bef88bed7542..7abc5b58070d4 100644 --- a/tsc/internal/fourslash/tests/jsdocNullableUnion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocNullableUnion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocNullableUnion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocOnInheritedMembers1_test.go b/tsc/pkg/fourslash/tests/jsdocOnInheritedMembers1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocOnInheritedMembers1_test.go rename to tsc/pkg/fourslash/tests/jsdocOnInheritedMembers1_test.go index 23bf7850ad8c4..2d06eab8f31cc 100644 --- a/tsc/internal/fourslash/tests/jsdocOnInheritedMembers1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocOnInheritedMembers1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocOnInheritedMembers1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocOnInheritedMembers2_test.go b/tsc/pkg/fourslash/tests/jsdocOnInheritedMembers2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocOnInheritedMembers2_test.go rename to tsc/pkg/fourslash/tests/jsdocOnInheritedMembers2_test.go index 4707eeddd9f46..a6155573d3e3c 100644 --- a/tsc/internal/fourslash/tests/jsdocOnInheritedMembers2_test.go +++ b/tsc/pkg/fourslash/tests/jsdocOnInheritedMembers2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocOnInheritedMembers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocOverloadTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocOverloadTagCompletion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocOverloadTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocOverloadTagCompletion_test.go index f06b865eb9cde..17c36ef902e28 100644 --- a/tsc/internal/fourslash/tests/jsdocOverloadTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocOverloadTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocOverloadTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocParamTagSpecialKeywords_test.go b/tsc/pkg/fourslash/tests/jsdocParamTagSpecialKeywords_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocParamTagSpecialKeywords_test.go rename to tsc/pkg/fourslash/tests/jsdocParamTagSpecialKeywords_test.go index 57a59cf09268a..64a23943d79b8 100644 --- a/tsc/internal/fourslash/tests/jsdocParamTagSpecialKeywords_test.go +++ b/tsc/pkg/fourslash/tests/jsdocParamTagSpecialKeywords_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocParamTagSpecialKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocParam_suggestion1_test.go b/tsc/pkg/fourslash/tests/jsdocParam_suggestion1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocParam_suggestion1_test.go rename to tsc/pkg/fourslash/tests/jsdocParam_suggestion1_test.go index 918b748944ec4..358767be857fb 100644 --- a/tsc/internal/fourslash/tests/jsdocParam_suggestion1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocParam_suggestion1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocParam_suggestion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocParameterNameCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocParameterNameCompletion_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsdocParameterNameCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocParameterNameCompletion_test.go index b5b32d1604974..ddfcba78f11fd 100644 --- a/tsc/internal/fourslash/tests/jsdocParameterNameCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocParameterNameCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocParameterNameCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocPropTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocPropTagCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsdocPropTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocPropTagCompletion_test.go index cbbaaeb55bb0f..e46e8abf36344 100644 --- a/tsc/internal/fourslash/tests/jsdocPropTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocPropTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocPropTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocPropertyTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocPropertyTagCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsdocPropertyTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocPropertyTagCompletion_test.go index c2ee153823f0e..2cc47b0e55a35 100644 --- a/tsc/internal/fourslash/tests/jsdocPropertyTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocPropertyTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocPropertyTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocReturnsTagVS_test.go b/tsc/pkg/fourslash/tests/jsdocReturnsTagVS_test.go similarity index 76% rename from tsc/internal/fourslash/tests/jsdocReturnsTagVS_test.go rename to tsc/pkg/fourslash/tests/jsdocReturnsTagVS_test.go index d80e045605df4..4b0fb549721e6 100644 --- a/tsc/internal/fourslash/tests/jsdocReturnsTagVS_test.go +++ b/tsc/pkg/fourslash/tests/jsdocReturnsTagVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocReturnsTagVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocReturnsTag_test.go b/tsc/pkg/fourslash/tests/jsdocReturnsTag_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocReturnsTag_test.go rename to tsc/pkg/fourslash/tests/jsdocReturnsTag_test.go index ecd1922489ce5..02171651ab45a 100644 --- a/tsc/internal/fourslash/tests/jsdocReturnsTag_test.go +++ b/tsc/pkg/fourslash/tests/jsdocReturnsTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocReturnsTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go rename to tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go index 8fbbb242f5823..1cdccf5ca2eba 100644 --- a/tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocSatisfiesTagCompletion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go rename to tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go index b996e8f66f642..e07fe28d948b8 100644 --- a/tsc/internal/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go +++ b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagCompletion2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocSatisfiesTagCompletion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go rename to tsc/pkg/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go index 9dab6ac990a08..18a5a883fae47 100644 --- a/tsc/internal/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go +++ b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagFindAllReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocSatisfiesTagFindAllReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocSatisfiesTagRename_test.go b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagRename_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocSatisfiesTagRename_test.go rename to tsc/pkg/fourslash/tests/jsdocSatisfiesTagRename_test.go index 0a07930ad3061..6f838e008748b 100644 --- a/tsc/internal/fourslash/tests/jsdocSatisfiesTagRename_test.go +++ b/tsc/pkg/fourslash/tests/jsdocSatisfiesTagRename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocSatisfiesTagRename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocSnippetCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocSnippetCompletion_test.go similarity index 95% rename from tsc/internal/fourslash/tests/jsdocSnippetCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocSnippetCompletion_test.go index ddc8cecda5c94..1b50701b9ce89 100644 --- a/tsc/internal/fourslash/tests/jsdocSnippetCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocSnippetCompletion_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go b/tsc/pkg/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go rename to tsc/pkg/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go index d5bffb3096c66..a869966a490a7 100644 --- a/tsc/internal/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTemplatePrototypeCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTemplatePrototypeCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTemplateTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocTemplateTagCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsdocTemplateTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocTemplateTagCompletion_test.go index b7df82abc15f0..c5466808e9a4a 100644 --- a/tsc/internal/fourslash/tests/jsdocTemplateTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTemplateTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTemplateTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocThrowsTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocThrowsTagCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsdocThrowsTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocThrowsTagCompletion_test.go index 7048e6db0f040..353b82e087dd6 100644 --- a/tsc/internal/fourslash/tests/jsdocThrowsTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocThrowsTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocThrowsTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go b/tsc/pkg/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go similarity index 77% rename from tsc/internal/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go rename to tsc/pkg/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go index 95325b0489c85..390dfc87259ab 100644 --- a/tsc/internal/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go +++ b/tsc/pkg/fourslash/tests/jsdocThrowsTag_findAllReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocThrowsTag_findAllReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocThrowsTag_rename_test.go b/tsc/pkg/fourslash/tests/jsdocThrowsTag_rename_test.go similarity index 77% rename from tsc/internal/fourslash/tests/jsdocThrowsTag_rename_test.go rename to tsc/pkg/fourslash/tests/jsdocThrowsTag_rename_test.go index c5e2cc9803c07..10518970a1b25 100644 --- a/tsc/internal/fourslash/tests/jsdocThrowsTag_rename_test.go +++ b/tsc/pkg/fourslash/tests/jsdocThrowsTag_rename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocThrowsTag_rename(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTag1_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTag1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/jsdocTypedefTag1_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTag1_test.go index 3d8ec32327d7e..06bb1c8e5f666 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTag1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTag1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTag2_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTag2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsdocTypedefTag2_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTag2_test.go index 8749283b652f3..840f2b6ae34d2 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTag2_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTag2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go index b534bcf6f9018..601fa75fc9962 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagGoToDefinition_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagGoToDefinition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagNamespace_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagNamespace_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocTypedefTagNamespace_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagNamespace_test.go index 930efc5b44b64..e2de9ccb2c48e 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagNamespace_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagNamespace_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagNavigateTo_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagNavigateTo_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsdocTypedefTagNavigateTo_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagNavigateTo_test.go index 65ae733fce9f6..a0749f3701eb8 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagNavigateTo_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagNavigateTo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagNavigateTo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagRename01_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename01_test.go similarity index 76% rename from tsc/internal/fourslash/tests/jsdocTypedefTagRename01_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagRename01_test.go index c35e9b1abd0ac..16595ee89ae1e 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagRename01_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagRename01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagRename02_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename02_test.go similarity index 76% rename from tsc/internal/fourslash/tests/jsdocTypedefTagRename02_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagRename02_test.go index e4315e6d3871d..1c9175f3b6ddf 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagRename02_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagRename02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagRename03_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename03_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsdocTypedefTagRename03_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagRename03_test.go index b3f83b4aa3da7..47587ea27d8a2 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagRename03_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagRename03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagRename04_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename04_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsdocTypedefTagRename04_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagRename04_test.go index cc23882ac153d..87f4509b008e0 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagRename04_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagRename04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagRename04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go index 0a98c2e9f6016..3e606bedffa93 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagSemanticMeaning0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go index 62bc01e6be8a4..c21ea29405814 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagSemanticMeaning1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagSemanticMeaning1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagServices_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagServices_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsdocTypedefTagServices_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagServices_test.go index ec7d133684caa..9d2e53ff0f2b1 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagServices_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagServices_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagServices(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go similarity index 94% rename from tsc/internal/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go index 1a1a8d517670a..61c2c2ec2bf38 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTagTypeExpressionCompletion_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTagTypeExpressionCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsdocTypedefTag_test.go b/tsc/pkg/fourslash/tests/jsdocTypedefTag_test.go similarity index 97% rename from tsc/internal/fourslash/tests/jsdocTypedefTag_test.go rename to tsc/pkg/fourslash/tests/jsdocTypedefTag_test.go index fb6cb2d0a7506..8b77a57e4de98 100644 --- a/tsc/internal/fourslash/tests/jsdocTypedefTag_test.go +++ b/tsc/pkg/fourslash/tests/jsdocTypedefTag_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsdocTypedefTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAriaLikeCompletions_test.go b/tsc/pkg/fourslash/tests/jsxAriaLikeCompletions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsxAriaLikeCompletions_test.go rename to tsc/pkg/fourslash/tests/jsxAriaLikeCompletions_test.go index e5d4840c54323..1d1ba53bc4297 100644 --- a/tsc/internal/fourslash/tests/jsxAriaLikeCompletions_test.go +++ b/tsc/pkg/fourslash/tests/jsxAriaLikeCompletions_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAriaLikeCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go similarity index 91% rename from tsc/internal/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go index cdf27e9a93a34..02afb754e8db2 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleAuto_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeCompletionStyleAuto(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go similarity index 91% rename from tsc/internal/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go index 79d47db760d07..1c5fed6a054a3 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleBraces_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeCompletionStyleBraces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go similarity index 88% rename from tsc/internal/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go index 1811597560706..39c7582c25a15 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleDefault_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeCompletionStyleDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go index 3b8aa45171b12..10aa7c665657f 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNoSnippet_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeCompletionStyleNoSnippet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNone_test.go b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNone_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNone_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNone_test.go index 37edbe9ee2286..5ee09f4e5d8dc 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeCompletionStyleNone_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeCompletionStyleNone_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeCompletionStyleNone(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go similarity index 83% rename from tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go index 2ef148457e532..010623aa22bd5 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionAfterTypeArgs_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeSnippetCompletionAfterTypeArgs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go similarity index 97% rename from tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go index f10955be3289e..fe5eedd5bea57 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionClosed_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeSnippetCompletionClosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go similarity index 96% rename from tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go rename to tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go index 9a1bfe52f1cca..dc969988d1c9b 100644 --- a/tsc/internal/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxAttributeSnippetCompletionUnclosed_test.go @@ -3,12 +3,12 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxAttributeSnippetCompletionUnclosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash1_test.go b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/jsxElementExtendsNoCrash1_test.go rename to tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash1_test.go index 6860f98b59553..b62a608101c4b 100644 --- a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxElementExtendsNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash2_test.go b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/jsxElementExtendsNoCrash2_test.go rename to tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash2_test.go index c6be48a9b7181..62447ff1bb048 100644 --- a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash2_test.go +++ b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxElementExtendsNoCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash3_test.go b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash3_test.go similarity index 75% rename from tsc/internal/fourslash/tests/jsxElementExtendsNoCrash3_test.go rename to tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash3_test.go index 7bfa05a3ef9b3..c937d71c52787 100644 --- a/tsc/internal/fourslash/tests/jsxElementExtendsNoCrash3_test.go +++ b/tsc/pkg/fourslash/tests/jsxElementExtendsNoCrash3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxElementExtendsNoCrash3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go b/tsc/pkg/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go similarity index 78% rename from tsc/internal/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go rename to tsc/pkg/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go index 6301afd06053d..76857e419602a 100644 --- a/tsc/internal/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/jsxElementMissingOpeningTagNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxElementMissingOpeningTagNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go b/tsc/pkg/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go rename to tsc/pkg/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go index 3c71101fe95bb..9374f18dc6cf1 100644 --- a/tsc/internal/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go +++ b/tsc/pkg/fourslash/tests/jsxFindAllReferencesOnRuntimeImportWithPaths1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxFindAllReferencesOnRuntimeImportWithPaths1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxGenericQuickInfo_test.go b/tsc/pkg/fourslash/tests/jsxGenericQuickInfo_test.go similarity index 92% rename from tsc/internal/fourslash/tests/jsxGenericQuickInfo_test.go rename to tsc/pkg/fourslash/tests/jsxGenericQuickInfo_test.go index 22b845a168c7f..98af2bef14b40 100644 --- a/tsc/internal/fourslash/tests/jsxGenericQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/jsxGenericQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxGenericQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxQualifiedTagCompletion_test.go b/tsc/pkg/fourslash/tests/jsxQualifiedTagCompletion_test.go similarity index 81% rename from tsc/internal/fourslash/tests/jsxQualifiedTagCompletion_test.go rename to tsc/pkg/fourslash/tests/jsxQualifiedTagCompletion_test.go index 4726c958234ab..c767823a6c792 100644 --- a/tsc/internal/fourslash/tests/jsxQualifiedTagCompletion_test.go +++ b/tsc/pkg/fourslash/tests/jsxQualifiedTagCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxQualifiedTagCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxSpreadReference_test.go b/tsc/pkg/fourslash/tests/jsxSpreadReference_test.go similarity index 86% rename from tsc/internal/fourslash/tests/jsxSpreadReference_test.go rename to tsc/pkg/fourslash/tests/jsxSpreadReference_test.go index 8c8684835130b..de359129c65dd 100644 --- a/tsc/internal/fourslash/tests/jsxSpreadReference_test.go +++ b/tsc/pkg/fourslash/tests/jsxSpreadReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxSpreadReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxTagNameCompletionClosed_test.go b/tsc/pkg/fourslash/tests/jsxTagNameCompletionClosed_test.go similarity index 93% rename from tsc/internal/fourslash/tests/jsxTagNameCompletionClosed_test.go rename to tsc/pkg/fourslash/tests/jsxTagNameCompletionClosed_test.go index 5511d6a53953d..9c05a23a56c22 100644 --- a/tsc/internal/fourslash/tests/jsxTagNameCompletionClosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxTagNameCompletionClosed_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxTagNameCompletionClosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnclosed_test.go b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnclosed_test.go similarity index 93% rename from tsc/internal/fourslash/tests/jsxTagNameCompletionUnclosed_test.go rename to tsc/pkg/fourslash/tests/jsxTagNameCompletionUnclosed_test.go index 66bad4fc54b0f..699af9f483c9c 100644 --- a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnclosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnclosed_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxTagNameCompletionUnclosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go rename to tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go index ba3cc86a53884..364d583e99047 100644 --- a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementClosed_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxTagNameCompletionUnderElementClosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go similarity index 89% rename from tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go rename to tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go index 018c44bea889d..9b0035104f94b 100644 --- a/tsc/internal/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go +++ b/tsc/pkg/fourslash/tests/jsxTagNameCompletionUnderElementUnclosed_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxTagNameCompletionUnderElementUnclosed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go b/tsc/pkg/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go similarity index 79% rename from tsc/internal/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go rename to tsc/pkg/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go index 91414110beb5e..161588072d82a 100644 --- a/tsc/internal/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go +++ b/tsc/pkg/fourslash/tests/jsxTagNameCompletionWithExistingJsxInitializer_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxTagNameCompletionWithExistingJsxInitializer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go b/tsc/pkg/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go similarity index 87% rename from tsc/internal/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go index 96a450af125fc..25b582ff510cc 100644 --- a/tsc/internal/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/jsxWithTypeParametershasInstantiatedSignatureHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestJsxWithTypeParametershasInstantiatedSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/keywordShadowsAutoImport_test.go b/tsc/pkg/fourslash/tests/keywordShadowsAutoImport_test.go similarity index 75% rename from tsc/internal/fourslash/tests/keywordShadowsAutoImport_test.go rename to tsc/pkg/fourslash/tests/keywordShadowsAutoImport_test.go index 0522c8d7951f9..a8e167b9cc4d9 100644 --- a/tsc/internal/fourslash/tests/keywordShadowsAutoImport_test.go +++ b/tsc/pkg/fourslash/tests/keywordShadowsAutoImport_test.go @@ -3,18 +3,18 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Test that global keywords like `function`, `class`, and `const` shadow // auto-import completions with the same name, rather than being -// shadowed by them. See: https://github.com/microsoft/TypeScript/tsc/issues/1379 +// shadowed by them. See: https://github.com/frida/TypeScript/tsc/issues/1379 func TestKeywordShadowsAutoImport(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") diff --git a/tsc/internal/fourslash/tests/lambdaThisMembers_test.go b/tsc/pkg/fourslash/tests/lambdaThisMembers_test.go similarity index 79% rename from tsc/internal/fourslash/tests/lambdaThisMembers_test.go rename to tsc/pkg/fourslash/tests/lambdaThisMembers_test.go index b0682aae48487..6e6f478b56a61 100644 --- a/tsc/internal/fourslash/tests/lambdaThisMembers_test.go +++ b/tsc/pkg/fourslash/tests/lambdaThisMembers_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLambdaThisMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/letQuickInfoAndCompletionList_test.go b/tsc/pkg/fourslash/tests/letQuickInfoAndCompletionList_test.go similarity index 89% rename from tsc/internal/fourslash/tests/letQuickInfoAndCompletionList_test.go rename to tsc/pkg/fourslash/tests/letQuickInfoAndCompletionList_test.go index ba967ae1ff13a..12410b02e94e8 100644 --- a/tsc/internal/fourslash/tests/letQuickInfoAndCompletionList_test.go +++ b/tsc/pkg/fourslash/tests/letQuickInfoAndCompletionList_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLetQuickInfoAndCompletionList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag10_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag10_test.go similarity index 91% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag10_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag10_test.go index c4147fa46c5a0..fc7ae7c2b12a1 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag10_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag11_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag11_test.go similarity index 84% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag11_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag11_test.go index 8334f5d432bef..c78113f30992c 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag11_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag12_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag12_test.go similarity index 86% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag12_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag12_test.go index dc07108c5e1de..2876329cc3cd5 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag12_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag1_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag1_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag1_test.go index daad3d506cc78..39468dcf8eb81 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag1_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag2_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag2_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag2_test.go index 7fa6dd5bcd9c0..245d4241433b6 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag2_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag3_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag3_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag3_test.go index 078fbb2102fd5..54ac3e0a11706 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag3_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag4_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag4_test.go similarity index 85% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag4_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag4_test.go index 5b3e9ec8c151b..5254c7b198d26 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag4_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag5_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag5_test.go similarity index 88% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag5_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag5_test.go index abb9b2d518bd0..fcc4ef5248635 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag5_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag6_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag6_test.go similarity index 91% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag6_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag6_test.go index cdd8381ead811..f1187f991ea8e 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag6_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag7_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag7_test.go similarity index 89% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag7_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag7_test.go index 0a4c3e97f6f95..af1b5d28c9e28 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag7_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag8_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag8_test.go similarity index 72% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag8_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag8_test.go index fe173f87faaf7..62c7f4d796f8a 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag8_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/linkedEditingJsxTag9_test.go b/tsc/pkg/fourslash/tests/linkedEditingJsxTag9_test.go similarity index 91% rename from tsc/internal/fourslash/tests/linkedEditingJsxTag9_test.go rename to tsc/pkg/fourslash/tests/linkedEditingJsxTag9_test.go index f281edf91a4bd..447686c7be5a2 100644 --- a/tsc/internal/fourslash/tests/linkedEditingJsxTag9_test.go +++ b/tsc/pkg/fourslash/tests/linkedEditingJsxTag9_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLinkedEditingJsxTag9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/localFunction_test.go b/tsc/pkg/fourslash/tests/localFunction_test.go similarity index 85% rename from tsc/internal/fourslash/tests/localFunction_test.go rename to tsc/pkg/fourslash/tests/localFunction_test.go index fdd3f7f2b780e..339b88acd33dd 100644 --- a/tsc/internal/fourslash/tests/localFunction_test.go +++ b/tsc/pkg/fourslash/tests/localFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLocalFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/localGetReferences_test.go b/tsc/pkg/fourslash/tests/localGetReferences_test.go similarity index 97% rename from tsc/internal/fourslash/tests/localGetReferences_test.go rename to tsc/pkg/fourslash/tests/localGetReferences_test.go index 8e337b35c8219..075d7b0b7eddc 100644 --- a/tsc/internal/fourslash/tests/localGetReferences_test.go +++ b/tsc/pkg/fourslash/tests/localGetReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestLocalGetReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberCompletionFromFunctionCall_test.go b/tsc/pkg/fourslash/tests/memberCompletionFromFunctionCall_test.go similarity index 80% rename from tsc/internal/fourslash/tests/memberCompletionFromFunctionCall_test.go rename to tsc/pkg/fourslash/tests/memberCompletionFromFunctionCall_test.go index e936e8a0bbd66..0bfa44eb566cb 100644 --- a/tsc/internal/fourslash/tests/memberCompletionFromFunctionCall_test.go +++ b/tsc/pkg/fourslash/tests/memberCompletionFromFunctionCall_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberCompletionFromFunctionCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberCompletionOnRightSideOfImport_test.go b/tsc/pkg/fourslash/tests/memberCompletionOnRightSideOfImport_test.go similarity index 74% rename from tsc/internal/fourslash/tests/memberCompletionOnRightSideOfImport_test.go rename to tsc/pkg/fourslash/tests/memberCompletionOnRightSideOfImport_test.go index 07f4430e5f160..44dd4b3f8e603 100644 --- a/tsc/internal/fourslash/tests/memberCompletionOnRightSideOfImport_test.go +++ b/tsc/pkg/fourslash/tests/memberCompletionOnRightSideOfImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberCompletionOnRightSideOfImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberCompletionOnTypeParameters2_test.go b/tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/memberCompletionOnTypeParameters2_test.go rename to tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters2_test.go index caa8e505a4998..74b37faa22357 100644 --- a/tsc/internal/fourslash/tests/memberCompletionOnTypeParameters2_test.go +++ b/tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberCompletionOnTypeParameters2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberCompletionOnTypeParameters_test.go b/tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters_test.go similarity index 86% rename from tsc/internal/fourslash/tests/memberCompletionOnTypeParameters_test.go rename to tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters_test.go index bcc665244ba51..3a32a33029571 100644 --- a/tsc/internal/fourslash/tests/memberCompletionOnTypeParameters_test.go +++ b/tsc/pkg/fourslash/tests/memberCompletionOnTypeParameters_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberCompletionOnTypeParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberConstructorEdits_test.go b/tsc/pkg/fourslash/tests/memberConstructorEdits_test.go similarity index 86% rename from tsc/internal/fourslash/tests/memberConstructorEdits_test.go rename to tsc/pkg/fourslash/tests/memberConstructorEdits_test.go index a6ea031e62ace..9b0cb58474558 100644 --- a/tsc/internal/fourslash/tests/memberConstructorEdits_test.go +++ b/tsc/pkg/fourslash/tests/memberConstructorEdits_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberConstructorEdits(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListAfterDoubleDot_test.go b/tsc/pkg/fourslash/tests/memberListAfterDoubleDot_test.go similarity index 73% rename from tsc/internal/fourslash/tests/memberListAfterDoubleDot_test.go rename to tsc/pkg/fourslash/tests/memberListAfterDoubleDot_test.go index e95b1277c582d..bab1e29f1101d 100644 --- a/tsc/internal/fourslash/tests/memberListAfterDoubleDot_test.go +++ b/tsc/pkg/fourslash/tests/memberListAfterDoubleDot_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListAfterDoubleDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListAfterSingleDot_test.go b/tsc/pkg/fourslash/tests/memberListAfterSingleDot_test.go similarity index 73% rename from tsc/internal/fourslash/tests/memberListAfterSingleDot_test.go rename to tsc/pkg/fourslash/tests/memberListAfterSingleDot_test.go index d235803565877..aa4e0d180df2c 100644 --- a/tsc/internal/fourslash/tests/memberListAfterSingleDot_test.go +++ b/tsc/pkg/fourslash/tests/memberListAfterSingleDot_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListAfterSingleDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListErrorRecovery_test.go b/tsc/pkg/fourslash/tests/memberListErrorRecovery_test.go similarity index 72% rename from tsc/internal/fourslash/tests/memberListErrorRecovery_test.go rename to tsc/pkg/fourslash/tests/memberListErrorRecovery_test.go index b5ddb9042dda5..1f55d4a9ee125 100644 --- a/tsc/internal/fourslash/tests/memberListErrorRecovery_test.go +++ b/tsc/pkg/fourslash/tests/memberListErrorRecovery_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListErrorRecovery(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInFunctionCall2_test.go b/tsc/pkg/fourslash/tests/memberListInFunctionCall2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/memberListInFunctionCall2_test.go rename to tsc/pkg/fourslash/tests/memberListInFunctionCall2_test.go index 16a9c36a9d7a6..e697782786c69 100644 --- a/tsc/internal/fourslash/tests/memberListInFunctionCall2_test.go +++ b/tsc/pkg/fourslash/tests/memberListInFunctionCall2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInFunctionCall2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInFunctionCall_test.go b/tsc/pkg/fourslash/tests/memberListInFunctionCall_test.go similarity index 80% rename from tsc/internal/fourslash/tests/memberListInFunctionCall_test.go rename to tsc/pkg/fourslash/tests/memberListInFunctionCall_test.go index e3cbebdebab83..0c1bface9d365 100644 --- a/tsc/internal/fourslash/tests/memberListInFunctionCall_test.go +++ b/tsc/pkg/fourslash/tests/memberListInFunctionCall_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInFunctionCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInReopenedEnum_test.go b/tsc/pkg/fourslash/tests/memberListInReopenedEnum_test.go similarity index 82% rename from tsc/internal/fourslash/tests/memberListInReopenedEnum_test.go rename to tsc/pkg/fourslash/tests/memberListInReopenedEnum_test.go index 21e098222c73e..23e48aa943b8a 100644 --- a/tsc/internal/fourslash/tests/memberListInReopenedEnum_test.go +++ b/tsc/pkg/fourslash/tests/memberListInReopenedEnum_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInReopenedEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInWithBlock2_test.go b/tsc/pkg/fourslash/tests/memberListInWithBlock2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/memberListInWithBlock2_test.go rename to tsc/pkg/fourslash/tests/memberListInWithBlock2_test.go index bd83e3e99920b..3b5b6fc5c10be 100644 --- a/tsc/internal/fourslash/tests/memberListInWithBlock2_test.go +++ b/tsc/pkg/fourslash/tests/memberListInWithBlock2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInWithBlock2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInWithBlock3_test.go b/tsc/pkg/fourslash/tests/memberListInWithBlock3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/memberListInWithBlock3_test.go rename to tsc/pkg/fourslash/tests/memberListInWithBlock3_test.go index 75347e2b1fd6f..ed686046f72da 100644 --- a/tsc/internal/fourslash/tests/memberListInWithBlock3_test.go +++ b/tsc/pkg/fourslash/tests/memberListInWithBlock3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInWithBlock3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInWithBlock_test.go b/tsc/pkg/fourslash/tests/memberListInWithBlock_test.go similarity index 82% rename from tsc/internal/fourslash/tests/memberListInWithBlock_test.go rename to tsc/pkg/fourslash/tests/memberListInWithBlock_test.go index d2b76c61b278d..39976ac2f4937 100644 --- a/tsc/internal/fourslash/tests/memberListInWithBlock_test.go +++ b/tsc/pkg/fourslash/tests/memberListInWithBlock_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInWithBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListInsideObjectLiterals_test.go b/tsc/pkg/fourslash/tests/memberListInsideObjectLiterals_test.go similarity index 86% rename from tsc/internal/fourslash/tests/memberListInsideObjectLiterals_test.go rename to tsc/pkg/fourslash/tests/memberListInsideObjectLiterals_test.go index 2c3048bedebcc..197311ffa21ab 100644 --- a/tsc/internal/fourslash/tests/memberListInsideObjectLiterals_test.go +++ b/tsc/pkg/fourslash/tests/memberListInsideObjectLiterals_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListInsideObjectLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfClass_test.go b/tsc/pkg/fourslash/tests/memberListOfClass_test.go similarity index 79% rename from tsc/internal/fourslash/tests/memberListOfClass_test.go rename to tsc/pkg/fourslash/tests/memberListOfClass_test.go index 941e0625c49b5..f0f92b5ad6ab2 100644 --- a/tsc/internal/fourslash/tests/memberListOfClass_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfClass_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfEnumFromExternalModule_test.go b/tsc/pkg/fourslash/tests/memberListOfEnumFromExternalModule_test.go similarity index 82% rename from tsc/internal/fourslash/tests/memberListOfEnumFromExternalModule_test.go rename to tsc/pkg/fourslash/tests/memberListOfEnumFromExternalModule_test.go index 8898a0d181ad4..b02b123c17ca0 100644 --- a/tsc/internal/fourslash/tests/memberListOfEnumFromExternalModule_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfEnumFromExternalModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfEnumFromExternalModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfEnumInModule_test.go b/tsc/pkg/fourslash/tests/memberListOfEnumInModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/memberListOfEnumInModule_test.go rename to tsc/pkg/fourslash/tests/memberListOfEnumInModule_test.go index 4c736ff15e9ad..a94cf8851fec1 100644 --- a/tsc/internal/fourslash/tests/memberListOfEnumInModule_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfEnumInModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfEnumInModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfExportedClass_test.go b/tsc/pkg/fourslash/tests/memberListOfExportedClass_test.go similarity index 78% rename from tsc/internal/fourslash/tests/memberListOfExportedClass_test.go rename to tsc/pkg/fourslash/tests/memberListOfExportedClass_test.go index e85f0af7168ad..b6b9e94d1990e 100644 --- a/tsc/internal/fourslash/tests/memberListOfExportedClass_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfExportedClass_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfExportedClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go b/tsc/pkg/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go similarity index 76% rename from tsc/internal/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go rename to tsc/pkg/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go index edc4de4f6abfd..d251365204fdc 100644 --- a/tsc/internal/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfModuleAfterInvalidCharater_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfModuleAfterInvalidCharater(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfModuleBeforeKeyword_test.go b/tsc/pkg/fourslash/tests/memberListOfModuleBeforeKeyword_test.go similarity index 82% rename from tsc/internal/fourslash/tests/memberListOfModuleBeforeKeyword_test.go rename to tsc/pkg/fourslash/tests/memberListOfModuleBeforeKeyword_test.go index 912d3d7163ce9..5efeb11ce7885 100644 --- a/tsc/internal/fourslash/tests/memberListOfModuleBeforeKeyword_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfModuleBeforeKeyword_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfModuleBeforeKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfModule_test.go b/tsc/pkg/fourslash/tests/memberListOfModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/memberListOfModule_test.go rename to tsc/pkg/fourslash/tests/memberListOfModule_test.go index 70db86c534de3..8fbd7aaa4e39f 100644 --- a/tsc/internal/fourslash/tests/memberListOfModule_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOfVarInArrowExpression_test.go b/tsc/pkg/fourslash/tests/memberListOfVarInArrowExpression_test.go similarity index 81% rename from tsc/internal/fourslash/tests/memberListOfVarInArrowExpression_test.go rename to tsc/pkg/fourslash/tests/memberListOfVarInArrowExpression_test.go index 7ba44e3267205..9b2d6fcb600c3 100644 --- a/tsc/internal/fourslash/tests/memberListOfVarInArrowExpression_test.go +++ b/tsc/pkg/fourslash/tests/memberListOfVarInArrowExpression_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOfVarInArrowExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOnConstructorType_test.go b/tsc/pkg/fourslash/tests/memberListOnConstructorType_test.go similarity index 77% rename from tsc/internal/fourslash/tests/memberListOnConstructorType_test.go rename to tsc/pkg/fourslash/tests/memberListOnConstructorType_test.go index 6abfdcda986f3..0e6aa161a07b8 100644 --- a/tsc/internal/fourslash/tests/memberListOnConstructorType_test.go +++ b/tsc/pkg/fourslash/tests/memberListOnConstructorType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOnConstructorType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOnContextualThis_test.go b/tsc/pkg/fourslash/tests/memberListOnContextualThis_test.go similarity index 78% rename from tsc/internal/fourslash/tests/memberListOnContextualThis_test.go rename to tsc/pkg/fourslash/tests/memberListOnContextualThis_test.go index 654cbc32f3678..208ab53bd6c73 100644 --- a/tsc/internal/fourslash/tests/memberListOnContextualThis_test.go +++ b/tsc/pkg/fourslash/tests/memberListOnContextualThis_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOnContextualThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOnExplicitThis_test.go b/tsc/pkg/fourslash/tests/memberListOnExplicitThis_test.go similarity index 87% rename from tsc/internal/fourslash/tests/memberListOnExplicitThis_test.go rename to tsc/pkg/fourslash/tests/memberListOnExplicitThis_test.go index b415dc882f557..cbc3517ef154e 100644 --- a/tsc/internal/fourslash/tests/memberListOnExplicitThis_test.go +++ b/tsc/pkg/fourslash/tests/memberListOnExplicitThis_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOnExplicitThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOnFunctionParameter_test.go b/tsc/pkg/fourslash/tests/memberListOnFunctionParameter_test.go similarity index 80% rename from tsc/internal/fourslash/tests/memberListOnFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/memberListOnFunctionParameter_test.go index e9a9c3c30aa9a..405edf99e7d12 100644 --- a/tsc/internal/fourslash/tests/memberListOnFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/memberListOnFunctionParameter_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOnFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberListOnThisInClassWithPrivates_test.go b/tsc/pkg/fourslash/tests/memberListOnThisInClassWithPrivates_test.go similarity index 83% rename from tsc/internal/fourslash/tests/memberListOnThisInClassWithPrivates_test.go rename to tsc/pkg/fourslash/tests/memberListOnThisInClassWithPrivates_test.go index 08a4eecd2091a..c4aa9c73624f5 100644 --- a/tsc/internal/fourslash/tests/memberListOnThisInClassWithPrivates_test.go +++ b/tsc/pkg/fourslash/tests/memberListOnThisInClassWithPrivates_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberListOnThisInClassWithPrivates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberOverloadEdits_test.go b/tsc/pkg/fourslash/tests/memberOverloadEdits_test.go similarity index 83% rename from tsc/internal/fourslash/tests/memberOverloadEdits_test.go rename to tsc/pkg/fourslash/tests/memberOverloadEdits_test.go index 56dbaa32bde7e..b3e970c83925b 100644 --- a/tsc/internal/fourslash/tests/memberOverloadEdits_test.go +++ b/tsc/pkg/fourslash/tests/memberOverloadEdits_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberOverloadEdits(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/memberlistOnDDot_test.go b/tsc/pkg/fourslash/tests/memberlistOnDDot_test.go similarity index 76% rename from tsc/internal/fourslash/tests/memberlistOnDDot_test.go rename to tsc/pkg/fourslash/tests/memberlistOnDDot_test.go index c6e06674ff699..1a4d2abe9f81b 100644 --- a/tsc/internal/fourslash/tests/memberlistOnDDot_test.go +++ b/tsc/pkg/fourslash/tests/memberlistOnDDot_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMemberlistOnDDot(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/missingMethodAfterEditAfterImport_test.go b/tsc/pkg/fourslash/tests/missingMethodAfterEditAfterImport_test.go similarity index 83% rename from tsc/internal/fourslash/tests/missingMethodAfterEditAfterImport_test.go rename to tsc/pkg/fourslash/tests/missingMethodAfterEditAfterImport_test.go index e2d582ed19a68..9eef33cb979fb 100644 --- a/tsc/internal/fourslash/tests/missingMethodAfterEditAfterImport_test.go +++ b/tsc/pkg/fourslash/tests/missingMethodAfterEditAfterImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMissingMethodAfterEditAfterImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleEnumModule_test.go b/tsc/pkg/fourslash/tests/moduleEnumModule_test.go similarity index 77% rename from tsc/internal/fourslash/tests/moduleEnumModule_test.go rename to tsc/pkg/fourslash/tests/moduleEnumModule_test.go index 57cd7016c5939..4e4b54126b3db 100644 --- a/tsc/internal/fourslash/tests/moduleEnumModule_test.go +++ b/tsc/pkg/fourslash/tests/moduleEnumModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleEnumModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleMembersOfGenericType_test.go b/tsc/pkg/fourslash/tests/moduleMembersOfGenericType_test.go similarity index 76% rename from tsc/internal/fourslash/tests/moduleMembersOfGenericType_test.go rename to tsc/pkg/fourslash/tests/moduleMembersOfGenericType_test.go index e57095896b29d..1b221c49c59ee 100644 --- a/tsc/internal/fourslash/tests/moduleMembersOfGenericType_test.go +++ b/tsc/pkg/fourslash/tests/moduleMembersOfGenericType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleMembersOfGenericType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport1_test.go b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/moduleNodeNextAutoImport1_test.go rename to tsc/pkg/fourslash/tests/moduleNodeNextAutoImport1_test.go index a3bfbfd76ed52..44ceed8fcf861 100644 --- a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport1_test.go +++ b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleNodeNextAutoImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport2_test.go b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/moduleNodeNextAutoImport2_test.go rename to tsc/pkg/fourslash/tests/moduleNodeNextAutoImport2_test.go index 0f4541964abfb..10de266819a44 100644 --- a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport2_test.go +++ b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleNodeNextAutoImport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport3_test.go b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/moduleNodeNextAutoImport3_test.go rename to tsc/pkg/fourslash/tests/moduleNodeNextAutoImport3_test.go index 31d00496f9c8c..aa00be6de00f2 100644 --- a/tsc/internal/fourslash/tests/moduleNodeNextAutoImport3_test.go +++ b/tsc/pkg/fourslash/tests/moduleNodeNextAutoImport3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleNodeNextAutoImport3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go b/tsc/pkg/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go similarity index 84% rename from tsc/internal/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go rename to tsc/pkg/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go index 4f0cd895d52eb..bdd53b9b0cee0 100644 --- a/tsc/internal/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/moduleReexportedIntoGlobalQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestModuleReexportedIntoGlobalQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/multiModuleClodule_test.go b/tsc/pkg/fourslash/tests/multiModuleClodule_test.go similarity index 88% rename from tsc/internal/fourslash/tests/multiModuleClodule_test.go rename to tsc/pkg/fourslash/tests/multiModuleClodule_test.go index 624f985c1f912..93e0a48f50208 100644 --- a/tsc/internal/fourslash/tests/multiModuleClodule_test.go +++ b/tsc/pkg/fourslash/tests/multiModuleClodule_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMultiModuleClodule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/multiModuleFundule_test.go b/tsc/pkg/fourslash/tests/multiModuleFundule_test.go similarity index 90% rename from tsc/internal/fourslash/tests/multiModuleFundule_test.go rename to tsc/pkg/fourslash/tests/multiModuleFundule_test.go index e45c4e2b98b0e..944f8690bce24 100644 --- a/tsc/internal/fourslash/tests/multiModuleFundule_test.go +++ b/tsc/pkg/fourslash/tests/multiModuleFundule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMultiModuleFundule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/multilineCommentBeforeOpenBrace_test.go b/tsc/pkg/fourslash/tests/multilineCommentBeforeOpenBrace_test.go similarity index 84% rename from tsc/internal/fourslash/tests/multilineCommentBeforeOpenBrace_test.go rename to tsc/pkg/fourslash/tests/multilineCommentBeforeOpenBrace_test.go index 348b62ce62df3..bf5ff0b077d41 100644 --- a/tsc/internal/fourslash/tests/multilineCommentBeforeOpenBrace_test.go +++ b/tsc/pkg/fourslash/tests/multilineCommentBeforeOpenBrace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestMultilineCommentBeforeOpenBrace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbar01_test.go b/tsc/pkg/fourslash/tests/navbar01_test.go similarity index 90% rename from tsc/internal/fourslash/tests/navbar01_test.go rename to tsc/pkg/fourslash/tests/navbar01_test.go index 574b081e3ab55..535a58e212237 100644 --- a/tsc/internal/fourslash/tests/navbar01_test.go +++ b/tsc/pkg/fourslash/tests/navbar01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbar01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbarNestedCommonJsExports_test.go b/tsc/pkg/fourslash/tests/navbarNestedCommonJsExports_test.go similarity index 77% rename from tsc/internal/fourslash/tests/navbarNestedCommonJsExports_test.go rename to tsc/pkg/fourslash/tests/navbarNestedCommonJsExports_test.go index ff1f3c2b4292f..4fd7804f47deb 100644 --- a/tsc/internal/fourslash/tests/navbarNestedCommonJsExports_test.go +++ b/tsc/pkg/fourslash/tests/navbarNestedCommonJsExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbarNestedCommonJsExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbar_const_test.go b/tsc/pkg/fourslash/tests/navbar_const_test.go similarity index 73% rename from tsc/internal/fourslash/tests/navbar_const_test.go rename to tsc/pkg/fourslash/tests/navbar_const_test.go index 09142e693663d..f2beaa3c6bf3a 100644 --- a/tsc/internal/fourslash/tests/navbar_const_test.go +++ b/tsc/pkg/fourslash/tests/navbar_const_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbar_const(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbar_contains-no-duplicates_test.go b/tsc/pkg/fourslash/tests/navbar_contains-no-duplicates_test.go similarity index 86% rename from tsc/internal/fourslash/tests/navbar_contains-no-duplicates_test.go rename to tsc/pkg/fourslash/tests/navbar_contains-no-duplicates_test.go index 36faed867a417..95b55b55c3afd 100644 --- a/tsc/internal/fourslash/tests/navbar_contains-no-duplicates_test.go +++ b/tsc/pkg/fourslash/tests/navbar_contains-no-duplicates_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbar_contains_no_duplicates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbar_exportDefault_test.go b/tsc/pkg/fourslash/tests/navbar_exportDefault_test.go similarity index 85% rename from tsc/internal/fourslash/tests/navbar_exportDefault_test.go rename to tsc/pkg/fourslash/tests/navbar_exportDefault_test.go index c0b30f2dcb70e..45587d6caa8c2 100644 --- a/tsc/internal/fourslash/tests/navbar_exportDefault_test.go +++ b/tsc/pkg/fourslash/tests/navbar_exportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbar_exportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navbar_let_test.go b/tsc/pkg/fourslash/tests/navbar_let_test.go similarity index 72% rename from tsc/internal/fourslash/tests/navbar_let_test.go rename to tsc/pkg/fourslash/tests/navbar_let_test.go index 6d34fe682f3c6..5acd2bb8a0eb0 100644 --- a/tsc/internal/fourslash/tests/navbar_let_test.go +++ b/tsc/pkg/fourslash/tests/navbar_let_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavbar_let(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigateItemsLet_test.go b/tsc/pkg/fourslash/tests/navigateItemsLet_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigateItemsLet_test.go rename to tsc/pkg/fourslash/tests/navigateItemsLet_test.go index 17619ee286585..495bdc88494c5 100644 --- a/tsc/internal/fourslash/tests/navigateItemsLet_test.go +++ b/tsc/pkg/fourslash/tests/navigateItemsLet_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigateItemsLet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigateToImport_test.go b/tsc/pkg/fourslash/tests/navigateToImport_test.go similarity index 87% rename from tsc/internal/fourslash/tests/navigateToImport_test.go rename to tsc/pkg/fourslash/tests/navigateToImport_test.go index d9290b13462c9..381ecd7aced87 100644 --- a/tsc/internal/fourslash/tests/navigateToImport_test.go +++ b/tsc/pkg/fourslash/tests/navigateToImport_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigateToImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigateToSymbolIterator_test.go b/tsc/pkg/fourslash/tests/navigateToSymbolIterator_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigateToSymbolIterator_test.go rename to tsc/pkg/fourslash/tests/navigateToSymbolIterator_test.go index 0c313034e4a96..d48d538754290 100644 --- a/tsc/internal/fourslash/tests/navigateToSymbolIterator_test.go +++ b/tsc/pkg/fourslash/tests/navigateToSymbolIterator_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigateToSymbolIterator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go rename to tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go index 62c8b5d684ce0..cfc9a9c2b73cc 100644 --- a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarAnonymousClassAndFunctionExpressions2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go rename to tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go index 1e508dd61a8b8..4f066eeb33208 100644 --- a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarAnonymousClassAndFunctionExpressions3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go similarity index 91% rename from tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go rename to tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go index 4019a268936bd..91189517264a3 100644 --- a/tsc/internal/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarAnonymousClassAndFunctionExpressions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarAnonymousClassAndFunctionExpressions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarAssignmentTypes_test.go b/tsc/pkg/fourslash/tests/navigationBarAssignmentTypes_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarAssignmentTypes_test.go rename to tsc/pkg/fourslash/tests/navigationBarAssignmentTypes_test.go index 88581963ffe1a..672cadd4258d3 100644 --- a/tsc/internal/fourslash/tests/navigationBarAssignmentTypes_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarAssignmentTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarAssignmentTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarClassStaticBlock_test.go b/tsc/pkg/fourslash/tests/navigationBarClassStaticBlock_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarClassStaticBlock_test.go rename to tsc/pkg/fourslash/tests/navigationBarClassStaticBlock_test.go index 583363bb12883..0d635c63bff66 100644 --- a/tsc/internal/fourslash/tests/navigationBarClassStaticBlock_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarClassStaticBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarClassStaticBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarComputedPropertyName_test.go b/tsc/pkg/fourslash/tests/navigationBarComputedPropertyName_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarComputedPropertyName_test.go rename to tsc/pkg/fourslash/tests/navigationBarComputedPropertyName_test.go index 0d31d0abe7501..3f2b745d83fcc 100644 --- a/tsc/internal/fourslash/tests/navigationBarComputedPropertyName_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarComputedPropertyName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarComputedPropertyName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go similarity index 81% rename from tsc/internal/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go index 3210679bc89fd..816e4a81d3662 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionIndirectlyInVariableDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionIndirectlyInVariableDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go index 5a2affb208f40..2110624f15b41 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionLikePropertyAssignments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionLikePropertyAssignments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype2_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototype2_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototype2_test.go index 846a5001d598c..31e3cf15fc80e 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototype2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype3_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototype3_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototype3_test.go index 09fc9a46682a0..a95032e10875c 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototype3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype4_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype4_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototype4_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototype4_test.go index 28f90e02ebc98..c5c1456962dd3 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype4_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototype4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go similarity index 81% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go index a49ecfc535865..0f12bec0bdc12 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeBroken_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototypeBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go similarity index 82% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go index 3f05a5576536b..251e9776d4dcc 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeInterlaced_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototypeInterlaced(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeNested_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeNested_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototypeNested_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeNested_test.go index 15e5b1bb541da..17ae3221c8181 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototypeNested_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototypeNested_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototypeNested(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype_test.go b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype_test.go similarity index 84% rename from tsc/internal/fourslash/tests/navigationBarFunctionPrototype_test.go rename to tsc/pkg/fourslash/tests/navigationBarFunctionPrototype_test.go index bf1fa0004207f..5e4226a5b585e 100644 --- a/tsc/internal/fourslash/tests/navigationBarFunctionPrototype_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarFunctionPrototype_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarFunctionPrototype(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarGetterAndSetter_test.go b/tsc/pkg/fourslash/tests/navigationBarGetterAndSetter_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarGetterAndSetter_test.go rename to tsc/pkg/fourslash/tests/navigationBarGetterAndSetter_test.go index 8f5d81b2c3433..d46b17c3613e0 100644 --- a/tsc/internal/fourslash/tests/navigationBarGetterAndSetter_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarGetterAndSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarGetterAndSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarImports_test.go b/tsc/pkg/fourslash/tests/navigationBarImports_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarImports_test.go rename to tsc/pkg/fourslash/tests/navigationBarImports_test.go index 0fd71ecf865b5..9987d54f5d9f4 100644 --- a/tsc/internal/fourslash/tests/navigationBarImports_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarInitializerSpans_test.go b/tsc/pkg/fourslash/tests/navigationBarInitializerSpans_test.go similarity index 82% rename from tsc/internal/fourslash/tests/navigationBarInitializerSpans_test.go rename to tsc/pkg/fourslash/tests/navigationBarInitializerSpans_test.go index 53b8dd9f356d9..d93eef5653b5f 100644 --- a/tsc/internal/fourslash/tests/navigationBarInitializerSpans_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarInitializerSpans_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarInitializerSpans(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go index e19125a0ab1fc..74b37159bd099 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsBindingPatternsInConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsBindingPatternsInConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsBindingPatterns_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsBindingPatterns_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarItemsBindingPatterns_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsBindingPatterns_test.go index 4c1962abe7d3c..d7f784e36f964 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsBindingPatterns_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsBindingPatterns_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsBindingPatterns(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass1_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass1_test.go similarity index 74% rename from tsc/internal/fourslash/tests/navigationBarItemsClass1_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass1_test.go index 9628a64eefb75..c0649a9356141 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass1_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/navigationBarItemsClass2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass2_test.go index 9eaf074e9b322..d941588e4b585 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass3_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsClass3_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass3_test.go index c31e5ec405301..9d25283592a3e 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass4_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsClass4_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass4_test.go index ad9abecee8ef5..6beb97f2d5f6d 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass4_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass5_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass5_test.go similarity index 74% rename from tsc/internal/fourslash/tests/navigationBarItemsClass5_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass5_test.go index aa839952f9487..092c5192dba6d 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass5_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsClass6_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsClass6_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsClass6_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsClass6_test.go index 2ae18818ff06c..15b9b67e29a96 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsClass6_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsClass6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsClass6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsComputedNames_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsComputedNames_test.go similarity index 82% rename from tsc/internal/fourslash/tests/navigationBarItemsComputedNames_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsComputedNames_test.go index 472bdb1932b85..441305710e649 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsComputedNames_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsComputedNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsComputedNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsEmptyConstructors_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsEmptyConstructors_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsEmptyConstructors_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsEmptyConstructors_test.go index d29ff8da8a3bb..a3460798a4049 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsEmptyConstructors_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsEmptyConstructors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsEmptyConstructors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsExports_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsExports_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarItemsExports_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsExports_test.go index 7c281d42ed6e0..88f3c00946f6e 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsExports_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsFunctionProperties_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionProperties_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsFunctionProperties_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsFunctionProperties_test.go index 3af100e4c6687..4108073f4b5fe 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsFunctionProperties_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsFunctionProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go index f57e820290e74..d03245b15cff3 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsFunctionsBroken2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken_test.go index ffcccd2fd271f..e5fb3a92a3342 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsFunctionsBroken_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsFunctionsBroken_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsFunctionsBroken(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsFunctions_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsFunctions_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigationBarItemsFunctions_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsFunctions_test.go index 62694953d363a..6474bbbe035da 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsFunctions_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsImports_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsImports_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarItemsImports_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsImports_test.go index 09320e4430efd..bda6345abab96 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsImports_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go similarity index 88% rename from tsc/internal/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go index 28b5988a02e78..a3a81f9ac6ab6 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsInsideMethodsAndConstructors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsInsideMethodsAndConstructors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItems2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItems2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/navigationBarItemsItems2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItems2_test.go index 1b2a77b7aac6a..2caaae438677c 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItems2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItems2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItems2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go index 6050c718dd575..6a684be702fef 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItemsExternalModules2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go index f072c5fcdf9ad..3d9e50d380747 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItemsExternalModules3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules_test.go index f48755293a02d..58fdc877ba192 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItemsExternalModules_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItemsExternalModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItemsExternalModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go similarity index 86% rename from tsc/internal/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go index c8ce084fb3036..f67f916096068 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItemsModuleVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItemsModuleVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsItems_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsItems_test.go similarity index 90% rename from tsc/internal/fourslash/tests/navigationBarItemsItems_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsItems_test.go index 961790f297767..6e7b0aaaa13d0 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsItems_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsItems_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsItems(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsMissingName1_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsMissingName1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsMissingName1_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsMissingName1_test.go index 6acbef58e8f2d..904d8072f1c95 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsMissingName1_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsMissingName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsMissingName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsMissingName2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsMissingName2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/navigationBarItemsMissingName2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsMissingName2_test.go index 3c211d6358b20..81310334cf960 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsMissingName2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsMissingName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsMissingName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsModules1_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsModules1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/navigationBarItemsModules1_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsModules1_test.go index 16ef9a4a68ccd..505ac577f015c 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsModules1_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsModules1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsModules1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsModules2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsModules2_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsModules2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsModules2_test.go index 195e1b6b9592d..402d2620849b7 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsModules2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsModules2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsModules2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go index f6f3c87b98af2..ad109a77f3eeb 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsMultilineStringIdentifiers1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go index b2cf4fa42a0df..3f08457b1e55d 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsMultilineStringIdentifiers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go index 600c2707f63aa..7c0cc1497e0ae 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsMultilineStringIdentifiers3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsMultilineStringIdentifiers3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go index 881f1b8feb8c6..43799311196c7 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsNamedArrowFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsNamedArrowFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go index 5ddca64a8ee7c..77266e1d15c67 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsPropertiesDefinedInConstructors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsPropertiesDefinedInConstructors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go index 099696e18293e..e72432a2ad5c3 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsStaticAndNonStaticNoMerge_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsStaticAndNonStaticNoMerge(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsSymbols1_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarItemsSymbols1_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsSymbols1_test.go index 47ca60867ce04..6617717f186ae 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsSymbols1_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsSymbols1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsSymbols2_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/navigationBarItemsSymbols2_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsSymbols2_test.go index c13e310134a6e..b76bca3372bb8 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsSymbols2_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsSymbols2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsSymbols3_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarItemsSymbols3_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsSymbols3_test.go index ad8b0c43efb13..6c9dde3e8246f 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsSymbols3_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsSymbols3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsSymbols4_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/navigationBarItemsSymbols4_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsSymbols4_test.go index f3a1a8a5f0e6e..bc26a25295596 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsSymbols4_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsSymbols4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsSymbols4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarItemsTypeAlias_test.go b/tsc/pkg/fourslash/tests/navigationBarItemsTypeAlias_test.go similarity index 74% rename from tsc/internal/fourslash/tests/navigationBarItemsTypeAlias_test.go rename to tsc/pkg/fourslash/tests/navigationBarItemsTypeAlias_test.go index cdf1042127fc6..20c1f8513fb36 100644 --- a/tsc/internal/fourslash/tests/navigationBarItemsTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarItemsTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarItemsTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go b/tsc/pkg/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go rename to tsc/pkg/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go index 5d00b967c728e..72babd494f1ae 100644 --- a/tsc/internal/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarJsDocCommentWithNoTags_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarJsDocCommentWithNoTags(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarMerging_grandchildren_test.go b/tsc/pkg/fourslash/tests/navigationBarMerging_grandchildren_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarMerging_grandchildren_test.go rename to tsc/pkg/fourslash/tests/navigationBarMerging_grandchildren_test.go index faea44b9f79b9..8399eb783fe33 100644 --- a/tsc/internal/fourslash/tests/navigationBarMerging_grandchildren_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarMerging_grandchildren_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarMerging_grandchildren(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarMerging_test.go b/tsc/pkg/fourslash/tests/navigationBarMerging_test.go similarity index 88% rename from tsc/internal/fourslash/tests/navigationBarMerging_test.go rename to tsc/pkg/fourslash/tests/navigationBarMerging_test.go index e17754c844abe..1285118b4263f 100644 --- a/tsc/internal/fourslash/tests/navigationBarMerging_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarMerging_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarMerging(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go b/tsc/pkg/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go similarity index 75% rename from tsc/internal/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go rename to tsc/pkg/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go index 90bdc12aaf03b..bad266d983c7a 100644 --- a/tsc/internal/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarNamespaceImportWithNoName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarNamespaceImportWithNoName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarNestedObjectLiterals_test.go b/tsc/pkg/fourslash/tests/navigationBarNestedObjectLiterals_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarNestedObjectLiterals_test.go rename to tsc/pkg/fourslash/tests/navigationBarNestedObjectLiterals_test.go index 34bf58b6139f9..1084af978bfa6 100644 --- a/tsc/internal/fourslash/tests/navigationBarNestedObjectLiterals_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarNestedObjectLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarNestedObjectLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarPrivateNameMethod_test.go b/tsc/pkg/fourslash/tests/navigationBarPrivateNameMethod_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navigationBarPrivateNameMethod_test.go rename to tsc/pkg/fourslash/tests/navigationBarPrivateNameMethod_test.go index 0abc6d1196bf5..493c01556606f 100644 --- a/tsc/internal/fourslash/tests/navigationBarPrivateNameMethod_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarPrivateNameMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarPrivateNameMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarPrivateName_test.go b/tsc/pkg/fourslash/tests/navigationBarPrivateName_test.go similarity index 79% rename from tsc/internal/fourslash/tests/navigationBarPrivateName_test.go rename to tsc/pkg/fourslash/tests/navigationBarPrivateName_test.go index 6195091aff151..902a13efaf852 100644 --- a/tsc/internal/fourslash/tests/navigationBarPrivateName_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarPrivateName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarPrivateName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarPropertyDeclarations_test.go b/tsc/pkg/fourslash/tests/navigationBarPropertyDeclarations_test.go similarity index 87% rename from tsc/internal/fourslash/tests/navigationBarPropertyDeclarations_test.go rename to tsc/pkg/fourslash/tests/navigationBarPropertyDeclarations_test.go index e0fd6d0146e4e..a53591d86123e 100644 --- a/tsc/internal/fourslash/tests/navigationBarPropertyDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarPropertyDeclarations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarPropertyDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarVariables_test.go b/tsc/pkg/fourslash/tests/navigationBarVariables_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navigationBarVariables_test.go rename to tsc/pkg/fourslash/tests/navigationBarVariables_test.go index 79b2dd2983731..d47f26d23e4d3 100644 --- a/tsc/internal/fourslash/tests/navigationBarVariables_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go b/tsc/pkg/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go rename to tsc/pkg/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go index 31547274718c0..68f6fbcb62773 100644 --- a/tsc/internal/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarWellKnownSymbolExpando_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarWellKnownSymbolExpando(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationBarWithLocalVariables_test.go b/tsc/pkg/fourslash/tests/navigationBarWithLocalVariables_test.go similarity index 76% rename from tsc/internal/fourslash/tests/navigationBarWithLocalVariables_test.go rename to tsc/pkg/fourslash/tests/navigationBarWithLocalVariables_test.go index 4e7e50f6a56a5..01e40c27bd520 100644 --- a/tsc/internal/fourslash/tests/navigationBarWithLocalVariables_test.go +++ b/tsc/pkg/fourslash/tests/navigationBarWithLocalVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationBarWithLocalVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsExactMatch2_test.go b/tsc/pkg/fourslash/tests/navigationItemsExactMatch2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/navigationItemsExactMatch2_test.go rename to tsc/pkg/fourslash/tests/navigationItemsExactMatch2_test.go index 7a74b98c3b90a..686ae3d08b70f 100644 --- a/tsc/internal/fourslash/tests/navigationItemsExactMatch2_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsExactMatch2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsExactMatch2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression2_test.go b/tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression2_test.go rename to tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression2_test.go index e9c1c028c1b60..830c4652cfa9a 100644 --- a/tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression2_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsExportDefaultExpression2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression_test.go b/tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression_test.go similarity index 87% rename from tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression_test.go rename to tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression_test.go index ab01da2b97c94..61cc3708efa2d 100644 --- a/tsc/internal/fourslash/tests/navigationItemsExportDefaultExpression_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsExportDefaultExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsExportDefaultExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression2_test.go b/tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression2_test.go rename to tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression2_test.go index 9b6f887671565..3ecc6d536ddee 100644 --- a/tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression2_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsExportEqualsExpression2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression_test.go b/tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression_test.go similarity index 86% rename from tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression_test.go rename to tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression_test.go index e2639106b470d..bccc42161550e 100644 --- a/tsc/internal/fourslash/tests/navigationItemsExportEqualsExpression_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsExportEqualsExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsExportEqualsExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go b/tsc/pkg/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go similarity index 86% rename from tsc/internal/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go rename to tsc/pkg/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go index 2af4a88fc090a..3d71567cea685 100644 --- a/tsc/internal/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsInConstructorsExactMatch_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsInConstructorsExactMatch(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsPrefixMatch2_test.go b/tsc/pkg/fourslash/tests/navigationItemsPrefixMatch2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/navigationItemsPrefixMatch2_test.go rename to tsc/pkg/fourslash/tests/navigationItemsPrefixMatch2_test.go index 95d9142f2ec1e..00670d3173392 100644 --- a/tsc/internal/fourslash/tests/navigationItemsPrefixMatch2_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsPrefixMatch2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsPrefixMatch2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go similarity index 92% rename from tsc/internal/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go index 48e407ae1ab5d..e274f743edb1c 100644 --- a/tsc/internal/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/navigationItemsSpecialPropertyAssignment_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavigationItemsSpecialPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navto_emptyPattern_test.go b/tsc/pkg/fourslash/tests/navto_emptyPattern_test.go similarity index 81% rename from tsc/internal/fourslash/tests/navto_emptyPattern_test.go rename to tsc/pkg/fourslash/tests/navto_emptyPattern_test.go index 33e32f2f66866..fd587f3e3a2e1 100644 --- a/tsc/internal/fourslash/tests/navto_emptyPattern_test.go +++ b/tsc/pkg/fourslash/tests/navto_emptyPattern_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavto_emptyPattern(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navto_excludeLib1_test.go b/tsc/pkg/fourslash/tests/navto_excludeLib1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/navto_excludeLib1_test.go rename to tsc/pkg/fourslash/tests/navto_excludeLib1_test.go index 84bcaff60c022..e0aa8ebdc3a91 100644 --- a/tsc/internal/fourslash/tests/navto_excludeLib1_test.go +++ b/tsc/pkg/fourslash/tests/navto_excludeLib1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavto_excludeLib1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navto_excludeLib2_test.go b/tsc/pkg/fourslash/tests/navto_excludeLib2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/navto_excludeLib2_test.go rename to tsc/pkg/fourslash/tests/navto_excludeLib2_test.go index 3f93538342644..e8c2482751a69 100644 --- a/tsc/internal/fourslash/tests/navto_excludeLib2_test.go +++ b/tsc/pkg/fourslash/tests/navto_excludeLib2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavto_excludeLib2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/navto_excludeLib3_test.go b/tsc/pkg/fourslash/tests/navto_excludeLib3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/navto_excludeLib3_test.go rename to tsc/pkg/fourslash/tests/navto_excludeLib3_test.go index 9f053636fb176..1601dc5a23243 100644 --- a/tsc/internal/fourslash/tests/navto_excludeLib3_test.go +++ b/tsc/pkg/fourslash/tests/navto_excludeLib3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNavto_excludeLib3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ngProxy1_test.go b/tsc/pkg/fourslash/tests/ngProxy1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/ngProxy1_test.go rename to tsc/pkg/fourslash/tests/ngProxy1_test.go index c0b6336f94860..d6bde6f3879d5 100644 --- a/tsc/internal/fourslash/tests/ngProxy1_test.go +++ b/tsc/pkg/fourslash/tests/ngProxy1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNgProxy1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ngProxy2_test.go b/tsc/pkg/fourslash/tests/ngProxy2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/ngProxy2_test.go rename to tsc/pkg/fourslash/tests/ngProxy2_test.go index 6ba7e93e42636..70541e4c6b483 100644 --- a/tsc/internal/fourslash/tests/ngProxy2_test.go +++ b/tsc/pkg/fourslash/tests/ngProxy2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNgProxy2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ngProxy3_test.go b/tsc/pkg/fourslash/tests/ngProxy3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/ngProxy3_test.go rename to tsc/pkg/fourslash/tests/ngProxy3_test.go index 42c6a243cc88a..4a7cb496f8974 100644 --- a/tsc/internal/fourslash/tests/ngProxy3_test.go +++ b/tsc/pkg/fourslash/tests/ngProxy3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNgProxy3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/ngProxy4_test.go b/tsc/pkg/fourslash/tests/ngProxy4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/ngProxy4_test.go rename to tsc/pkg/fourslash/tests/ngProxy4_test.go index 2d0ebee8f5e7b..b471233b48bc7 100644 --- a/tsc/internal/fourslash/tests/ngProxy4_test.go +++ b/tsc/pkg/fourslash/tests/ngProxy4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNgProxy4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go b/tsc/pkg/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go similarity index 80% rename from tsc/internal/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go rename to tsc/pkg/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go index a32bc9a151fc9..a63f5d28b97ad 100644 --- a/tsc/internal/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go +++ b/tsc/pkg/fourslash/tests/noCompletionListOnCommentsInsideObjectLiterals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoCompletionListOnCommentsInsideObjectLiterals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go b/tsc/pkg/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go similarity index 94% rename from tsc/internal/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go rename to tsc/pkg/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go index e220a09b99fcc..c284ba3ea1d04 100644 --- a/tsc/internal/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go +++ b/tsc/pkg/fourslash/tests/noCompletionsForCurrentOrLaterParametersInDefaults_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoCompletionsForCurrentOrLaterParametersInDefaults(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go b/tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go rename to tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go index 81117c50e29fa..0ec4972d78bb4 100644 --- a/tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go +++ b/tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoErrorsAfterCompletionsRequestWithinGenericFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go b/tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go rename to tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go index dbe09bfc4c64d..dc3036632b922 100644 --- a/tsc/internal/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go +++ b/tsc/pkg/fourslash/tests/noErrorsAfterCompletionsRequestWithinGenericFunction2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoErrorsAfterCompletionsRequestWithinGenericFunction2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noQuickInfoForLabel_test.go b/tsc/pkg/fourslash/tests/noQuickInfoForLabel_test.go similarity index 78% rename from tsc/internal/fourslash/tests/noQuickInfoForLabel_test.go rename to tsc/pkg/fourslash/tests/noQuickInfoForLabel_test.go index c4b9a5764cc43..c66bbd60e1e78 100644 --- a/tsc/internal/fourslash/tests/noQuickInfoForLabel_test.go +++ b/tsc/pkg/fourslash/tests/noQuickInfoForLabel_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoQuickInfoForLabel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noQuickInfoInWhitespace_test.go b/tsc/pkg/fourslash/tests/noQuickInfoInWhitespace_test.go similarity index 84% rename from tsc/internal/fourslash/tests/noQuickInfoInWhitespace_test.go rename to tsc/pkg/fourslash/tests/noQuickInfoInWhitespace_test.go index 9c8c05b8aed3d..5f18cfa53a639 100644 --- a/tsc/internal/fourslash/tests/noQuickInfoInWhitespace_test.go +++ b/tsc/pkg/fourslash/tests/noQuickInfoInWhitespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoQuickInfoInWhitespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noSignatureHelpOnNewKeyword_test.go b/tsc/pkg/fourslash/tests/noSignatureHelpOnNewKeyword_test.go similarity index 80% rename from tsc/internal/fourslash/tests/noSignatureHelpOnNewKeyword_test.go rename to tsc/pkg/fourslash/tests/noSignatureHelpOnNewKeyword_test.go index 84702ad0ed132..bb6028dca4dcd 100644 --- a/tsc/internal/fourslash/tests/noSignatureHelpOnNewKeyword_test.go +++ b/tsc/pkg/fourslash/tests/noSignatureHelpOnNewKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoSignatureHelpOnNewKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/noTypeParameterInLHS_test.go b/tsc/pkg/fourslash/tests/noTypeParameterInLHS_test.go similarity index 79% rename from tsc/internal/fourslash/tests/noTypeParameterInLHS_test.go rename to tsc/pkg/fourslash/tests/noTypeParameterInLHS_test.go index 30217cea8f99f..de4df2c0d9535 100644 --- a/tsc/internal/fourslash/tests/noTypeParameterInLHS_test.go +++ b/tsc/pkg/fourslash/tests/noTypeParameterInLHS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNoTypeParameterInLHS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go b/tsc/pkg/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go similarity index 85% rename from tsc/internal/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go rename to tsc/pkg/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go index 47b501901ab39..574eca5e678b7 100644 --- a/tsc/internal/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go +++ b/tsc/pkg/fourslash/tests/nodeModulesFileEditStillAllowsResolutionsToWork_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNodeModulesFileEditStillAllowsResolutionsToWork(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/nodeModulesImportCompletions1_test.go b/tsc/pkg/fourslash/tests/nodeModulesImportCompletions1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/nodeModulesImportCompletions1_test.go rename to tsc/pkg/fourslash/tests/nodeModulesImportCompletions1_test.go index cf175c9227653..2a7e7def4e0e2 100644 --- a/tsc/internal/fourslash/tests/nodeModulesImportCompletions1_test.go +++ b/tsc/pkg/fourslash/tests/nodeModulesImportCompletions1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNodeModulesImportCompletions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/nodeNextModuleKindCaching1_test.go b/tsc/pkg/fourslash/tests/nodeNextModuleKindCaching1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/nodeNextModuleKindCaching1_test.go rename to tsc/pkg/fourslash/tests/nodeNextModuleKindCaching1_test.go index 7dd5fdff9102b..5de6667bc0c11 100644 --- a/tsc/internal/fourslash/tests/nodeNextModuleKindCaching1_test.go +++ b/tsc/pkg/fourslash/tests/nodeNextModuleKindCaching1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNodeNextModuleKindCaching1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/nonExistingImport_test.go b/tsc/pkg/fourslash/tests/nonExistingImport_test.go similarity index 79% rename from tsc/internal/fourslash/tests/nonExistingImport_test.go rename to tsc/pkg/fourslash/tests/nonExistingImport_test.go index ce8a9f472922d..28ad816ecec47 100644 --- a/tsc/internal/fourslash/tests/nonExistingImport_test.go +++ b/tsc/pkg/fourslash/tests/nonExistingImport_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNonExistingImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/numericPropertyNames_test.go b/tsc/pkg/fourslash/tests/numericPropertyNames_test.go similarity index 76% rename from tsc/internal/fourslash/tests/numericPropertyNames_test.go rename to tsc/pkg/fourslash/tests/numericPropertyNames_test.go index e539dd2873ba4..b6808d376ee1b 100644 --- a/tsc/internal/fourslash/tests/numericPropertyNames_test.go +++ b/tsc/pkg/fourslash/tests/numericPropertyNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestNumericPropertyNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/objectLiteralBindingInParameter_test.go b/tsc/pkg/fourslash/tests/objectLiteralBindingInParameter_test.go similarity index 83% rename from tsc/internal/fourslash/tests/objectLiteralBindingInParameter_test.go rename to tsc/pkg/fourslash/tests/objectLiteralBindingInParameter_test.go index 209edfe10af2f..5cde828ed8206 100644 --- a/tsc/internal/fourslash/tests/objectLiteralBindingInParameter_test.go +++ b/tsc/pkg/fourslash/tests/objectLiteralBindingInParameter_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestObjectLiteralBindingInParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/occurrences01_test.go b/tsc/pkg/fourslash/tests/occurrences01_test.go similarity index 74% rename from tsc/internal/fourslash/tests/occurrences01_test.go rename to tsc/pkg/fourslash/tests/occurrences01_test.go index 1280ff62691f2..b02e5a17b7ab6 100644 --- a/tsc/internal/fourslash/tests/occurrences01_test.go +++ b/tsc/pkg/fourslash/tests/occurrences01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOccurrences01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/occurrences02_test.go b/tsc/pkg/fourslash/tests/occurrences02_test.go similarity index 70% rename from tsc/internal/fourslash/tests/occurrences02_test.go rename to tsc/pkg/fourslash/tests/occurrences02_test.go index 541b14318450f..31b063e4cfc13 100644 --- a/tsc/internal/fourslash/tests/occurrences02_test.go +++ b/tsc/pkg/fourslash/tests/occurrences02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOccurrences02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/optionalPropertyFormatting_test.go b/tsc/pkg/fourslash/tests/optionalPropertyFormatting_test.go similarity index 80% rename from tsc/internal/fourslash/tests/optionalPropertyFormatting_test.go rename to tsc/pkg/fourslash/tests/optionalPropertyFormatting_test.go index 18d612ea95a04..d9d028cf9b276 100644 --- a/tsc/internal/fourslash/tests/optionalPropertyFormatting_test.go +++ b/tsc/pkg/fourslash/tests/optionalPropertyFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOptionalPropertyFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports10_test.go b/tsc/pkg/fourslash/tests/organizeImports10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/organizeImports10_test.go rename to tsc/pkg/fourslash/tests/organizeImports10_test.go index 826a76e5ad159..121cbf3312ed3 100644 --- a/tsc/internal/fourslash/tests/organizeImports10_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports11_test.go b/tsc/pkg/fourslash/tests/organizeImports11_test.go similarity index 87% rename from tsc/internal/fourslash/tests/organizeImports11_test.go rename to tsc/pkg/fourslash/tests/organizeImports11_test.go index a647ed456f6d0..b5fecbfc2419b 100644 --- a/tsc/internal/fourslash/tests/organizeImports11_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports12_test.go b/tsc/pkg/fourslash/tests/organizeImports12_test.go similarity index 76% rename from tsc/internal/fourslash/tests/organizeImports12_test.go rename to tsc/pkg/fourslash/tests/organizeImports12_test.go index 155b257273727..7b5f99246c265 100644 --- a/tsc/internal/fourslash/tests/organizeImports12_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports12_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports13_test.go b/tsc/pkg/fourslash/tests/organizeImports13_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImports13_test.go rename to tsc/pkg/fourslash/tests/organizeImports13_test.go index 8ae3ac95a8cdf..73f61ec56b29a 100644 --- a/tsc/internal/fourslash/tests/organizeImports13_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports13_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports14_test.go b/tsc/pkg/fourslash/tests/organizeImports14_test.go similarity index 79% rename from tsc/internal/fourslash/tests/organizeImports14_test.go rename to tsc/pkg/fourslash/tests/organizeImports14_test.go index 04ba6ba554a0e..3ea8cc9656551 100644 --- a/tsc/internal/fourslash/tests/organizeImports14_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports14_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports15_test.go b/tsc/pkg/fourslash/tests/organizeImports15_test.go similarity index 78% rename from tsc/internal/fourslash/tests/organizeImports15_test.go rename to tsc/pkg/fourslash/tests/organizeImports15_test.go index edca5100fd124..3ddb7253d50aa 100644 --- a/tsc/internal/fourslash/tests/organizeImports15_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports16_test.go b/tsc/pkg/fourslash/tests/organizeImports16_test.go similarity index 83% rename from tsc/internal/fourslash/tests/organizeImports16_test.go rename to tsc/pkg/fourslash/tests/organizeImports16_test.go index 48647e167512d..b4522c5bd7c7b 100644 --- a/tsc/internal/fourslash/tests/organizeImports16_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports16_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports17_test.go b/tsc/pkg/fourslash/tests/organizeImports17_test.go similarity index 69% rename from tsc/internal/fourslash/tests/organizeImports17_test.go rename to tsc/pkg/fourslash/tests/organizeImports17_test.go index 6d875bbb835b9..ebb7fb16ff87b 100644 --- a/tsc/internal/fourslash/tests/organizeImports17_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports17_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports17(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports18_test.go b/tsc/pkg/fourslash/tests/organizeImports18_test.go similarity index 84% rename from tsc/internal/fourslash/tests/organizeImports18_test.go rename to tsc/pkg/fourslash/tests/organizeImports18_test.go index 82a90914b5368..3be8d47bcabba 100644 --- a/tsc/internal/fourslash/tests/organizeImports18_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports18_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports18(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports19_test.go b/tsc/pkg/fourslash/tests/organizeImports19_test.go similarity index 75% rename from tsc/internal/fourslash/tests/organizeImports19_test.go rename to tsc/pkg/fourslash/tests/organizeImports19_test.go index 63045712eb5f3..70559e79abcd5 100644 --- a/tsc/internal/fourslash/tests/organizeImports19_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports19_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports19(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports1_test.go b/tsc/pkg/fourslash/tests/organizeImports1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/organizeImports1_test.go rename to tsc/pkg/fourslash/tests/organizeImports1_test.go index 4aa01c28da85e..82adc6f61738a 100644 --- a/tsc/internal/fourslash/tests/organizeImports1_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports20_test.go b/tsc/pkg/fourslash/tests/organizeImports20_test.go similarity index 72% rename from tsc/internal/fourslash/tests/organizeImports20_test.go rename to tsc/pkg/fourslash/tests/organizeImports20_test.go index 5685284405823..53553223a9844 100644 --- a/tsc/internal/fourslash/tests/organizeImports20_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports20_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports20(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports21_test.go b/tsc/pkg/fourslash/tests/organizeImports21_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImports21_test.go rename to tsc/pkg/fourslash/tests/organizeImports21_test.go index e070617d85f8b..46ff57978a693 100644 --- a/tsc/internal/fourslash/tests/organizeImports21_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports21_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports21(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports22_test.go b/tsc/pkg/fourslash/tests/organizeImports22_test.go similarity index 82% rename from tsc/internal/fourslash/tests/organizeImports22_test.go rename to tsc/pkg/fourslash/tests/organizeImports22_test.go index 101febe32c15e..d009361fbbc24 100644 --- a/tsc/internal/fourslash/tests/organizeImports22_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports22_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports22(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports23_test.go b/tsc/pkg/fourslash/tests/organizeImports23_test.go similarity index 83% rename from tsc/internal/fourslash/tests/organizeImports23_test.go rename to tsc/pkg/fourslash/tests/organizeImports23_test.go index 1419769f7fb20..005d7350e9006 100644 --- a/tsc/internal/fourslash/tests/organizeImports23_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports23_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports23(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports2_test.go b/tsc/pkg/fourslash/tests/organizeImports2_test.go similarity index 73% rename from tsc/internal/fourslash/tests/organizeImports2_test.go rename to tsc/pkg/fourslash/tests/organizeImports2_test.go index 5f4306b7b4835..29b08cefe8d92 100644 --- a/tsc/internal/fourslash/tests/organizeImports2_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports3_test.go b/tsc/pkg/fourslash/tests/organizeImports3_test.go similarity index 73% rename from tsc/internal/fourslash/tests/organizeImports3_test.go rename to tsc/pkg/fourslash/tests/organizeImports3_test.go index 2194af6e992a9..abff13648c525 100644 --- a/tsc/internal/fourslash/tests/organizeImports3_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports4_test.go b/tsc/pkg/fourslash/tests/organizeImports4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImports4_test.go rename to tsc/pkg/fourslash/tests/organizeImports4_test.go index e8aca99f74053..f479fa6023c7e 100644 --- a/tsc/internal/fourslash/tests/organizeImports4_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports5_test.go b/tsc/pkg/fourslash/tests/organizeImports5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImports5_test.go rename to tsc/pkg/fourslash/tests/organizeImports5_test.go index 2999e4654b698..8140ed1dc532d 100644 --- a/tsc/internal/fourslash/tests/organizeImports5_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports6_test.go b/tsc/pkg/fourslash/tests/organizeImports6_test.go similarity index 83% rename from tsc/internal/fourslash/tests/organizeImports6_test.go rename to tsc/pkg/fourslash/tests/organizeImports6_test.go index ba295af3b9935..481c84ca643d9 100644 --- a/tsc/internal/fourslash/tests/organizeImports6_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports7_test.go b/tsc/pkg/fourslash/tests/organizeImports7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/organizeImports7_test.go rename to tsc/pkg/fourslash/tests/organizeImports7_test.go index e1c184289b5ee..b414f83249fe4 100644 --- a/tsc/internal/fourslash/tests/organizeImports7_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports7_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports8_test.go b/tsc/pkg/fourslash/tests/organizeImports8_test.go similarity index 71% rename from tsc/internal/fourslash/tests/organizeImports8_test.go rename to tsc/pkg/fourslash/tests/organizeImports8_test.go index 7737a8a23b95e..06fea4c4fe00e 100644 --- a/tsc/internal/fourslash/tests/organizeImports8_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports9_test.go b/tsc/pkg/fourslash/tests/organizeImports9_test.go similarity index 72% rename from tsc/internal/fourslash/tests/organizeImports9_test.go rename to tsc/pkg/fourslash/tests/organizeImports9_test.go index af17b10972e2f..f9c8f90477b0f 100644 --- a/tsc/internal/fourslash/tests/organizeImports9_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports9_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsAttributes2_test.go b/tsc/pkg/fourslash/tests/organizeImportsAttributes2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/organizeImportsAttributes2_test.go rename to tsc/pkg/fourslash/tests/organizeImportsAttributes2_test.go index 8fdc9714b675d..6c4e11cd31315 100644 --- a/tsc/internal/fourslash/tests/organizeImportsAttributes2_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsAttributes2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsAttributes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsAttributes3_test.go b/tsc/pkg/fourslash/tests/organizeImportsAttributes3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/organizeImportsAttributes3_test.go rename to tsc/pkg/fourslash/tests/organizeImportsAttributes3_test.go index c06cc8b99f98f..22bec4f834f21 100644 --- a/tsc/internal/fourslash/tests/organizeImportsAttributes3_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsAttributes3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsAttributes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsAttributes4_test.go b/tsc/pkg/fourslash/tests/organizeImportsAttributes4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/organizeImportsAttributes4_test.go rename to tsc/pkg/fourslash/tests/organizeImportsAttributes4_test.go index ad800f43a6e64..5dfc80c0e3777 100644 --- a/tsc/internal/fourslash/tests/organizeImportsAttributes4_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsAttributes4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsAttributes4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsAttributes_test.go b/tsc/pkg/fourslash/tests/organizeImportsAttributes_test.go similarity index 82% rename from tsc/internal/fourslash/tests/organizeImportsAttributes_test.go rename to tsc/pkg/fourslash/tests/organizeImportsAttributes_test.go index e57a48a1a0f7f..5215ea8386b17 100644 --- a/tsc/internal/fourslash/tests/organizeImportsAttributes_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsAttributes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsAttributes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go b/tsc/pkg/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go similarity index 78% rename from tsc/internal/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go rename to tsc/pkg/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go index 02a8d4c381efb..a36dfb5a5e941 100644 --- a/tsc/internal/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsGroup_CommentInNewline_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsGroup_CommentInNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go b/tsc/pkg/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go similarity index 76% rename from tsc/internal/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go rename to tsc/pkg/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go index 84e3282441458..0dcbeea4c0ae3 100644 --- a/tsc/internal/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsGroup_MultiNewlines_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsGroup_MultiNewlines(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go b/tsc/pkg/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go similarity index 78% rename from tsc/internal/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go rename to tsc/pkg/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go index 748cc21645eb9..3fcaaa7cb0179 100644 --- a/tsc/internal/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsGroup_MultilineCommentInNewline_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsGroup_MultilineCommentInNewline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsGroup_Newline_test.go b/tsc/pkg/fourslash/tests/organizeImportsGroup_Newline_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImportsGroup_Newline_test.go rename to tsc/pkg/fourslash/tests/organizeImportsGroup_Newline_test.go index 261faa4b36f66..5ebd5382bdbe2 100644 --- a/tsc/internal/fourslash/tests/organizeImportsGroup_Newline_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsGroup_Newline_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsGroup_Newline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode1_test.go b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/organizeImportsPathsUnicode1_test.go rename to tsc/pkg/fourslash/tests/organizeImportsPathsUnicode1_test.go index 2a1daec76b519..5def5f7872e83 100644 --- a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode1_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsPathsUnicode1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode2_test.go b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/organizeImportsPathsUnicode2_test.go rename to tsc/pkg/fourslash/tests/organizeImportsPathsUnicode2_test.go index bd9cb42a5a173..5038945217640 100644 --- a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode2_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsPathsUnicode2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode3_test.go b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/organizeImportsPathsUnicode3_test.go rename to tsc/pkg/fourslash/tests/organizeImportsPathsUnicode3_test.go index 7dd31660ec0e2..73da71721e181 100644 --- a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode3_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsPathsUnicode3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode4_test.go b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode4_test.go similarity index 82% rename from tsc/internal/fourslash/tests/organizeImportsPathsUnicode4_test.go rename to tsc/pkg/fourslash/tests/organizeImportsPathsUnicode4_test.go index 514d95231f9da..6a7504c7726b9 100644 --- a/tsc/internal/fourslash/tests/organizeImportsPathsUnicode4_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsPathsUnicode4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsPathsUnicode4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsReactJsxDev_test.go b/tsc/pkg/fourslash/tests/organizeImportsReactJsxDev_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImportsReactJsxDev_test.go rename to tsc/pkg/fourslash/tests/organizeImportsReactJsxDev_test.go index 1d72ed23f7bca..426bc3137a2a3 100644 --- a/tsc/internal/fourslash/tests/organizeImportsReactJsxDev_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsReactJsxDev_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsReactJsxDev(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsReactJsx_test.go b/tsc/pkg/fourslash/tests/organizeImportsReactJsx_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImportsReactJsx_test.go rename to tsc/pkg/fourslash/tests/organizeImportsReactJsx_test.go index 8d6cc13ab14de..18be7237500f8 100644 --- a/tsc/internal/fourslash/tests/organizeImportsReactJsx_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsReactJsx_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsReactJsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsShebang_test.go b/tsc/pkg/fourslash/tests/organizeImportsShebang_test.go similarity index 78% rename from tsc/internal/fourslash/tests/organizeImportsShebang_test.go rename to tsc/pkg/fourslash/tests/organizeImportsShebang_test.go index 94f16a1b2f099..f391de9dc3887 100644 --- a/tsc/internal/fourslash/tests/organizeImportsShebang_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsShebang_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_Shebang_PreserveAndSort(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType10_test.go b/tsc/pkg/fourslash/tests/organizeImportsType10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/organizeImportsType10_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType10_test.go index 0dfa3e1663245..3e2a5674a4833 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType10_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType10_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType11_test.go b/tsc/pkg/fourslash/tests/organizeImportsType11_test.go similarity index 87% rename from tsc/internal/fourslash/tests/organizeImportsType11_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType11_test.go index e3dbdca87d7da..13f099e4617b6 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType11_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType1_test.go b/tsc/pkg/fourslash/tests/organizeImportsType1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/organizeImportsType1_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType1_test.go index 1c44884beeb54..61f991117fd9f 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType1_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType2_test.go b/tsc/pkg/fourslash/tests/organizeImportsType2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImportsType2_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType2_test.go index c0f3745700d68..f741ece8cdadf 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType2_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType3_test.go b/tsc/pkg/fourslash/tests/organizeImportsType3_test.go similarity index 73% rename from tsc/internal/fourslash/tests/organizeImportsType3_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType3_test.go index 12a6a659e56f4..323a4e5aeb465 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType3_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType4_test.go b/tsc/pkg/fourslash/tests/organizeImportsType4_test.go similarity index 73% rename from tsc/internal/fourslash/tests/organizeImportsType4_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType4_test.go index 5a36689ec02a2..cb783bd533667 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType4_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType5_test.go b/tsc/pkg/fourslash/tests/organizeImportsType5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/organizeImportsType5_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType5_test.go index 9c8c241154ef3..dc003b5f8cb5e 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType5_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType5_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType6_test.go b/tsc/pkg/fourslash/tests/organizeImportsType6_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImportsType6_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType6_test.go index 37d12d1bdfc78..68e6f093a66fd 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType6_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType6_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType7_test.go b/tsc/pkg/fourslash/tests/organizeImportsType7_test.go similarity index 85% rename from tsc/internal/fourslash/tests/organizeImportsType7_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType7_test.go index 1aaa7767739d0..117a1bc0805f4 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType7_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType8_test.go b/tsc/pkg/fourslash/tests/organizeImportsType8_test.go similarity index 88% rename from tsc/internal/fourslash/tests/organizeImportsType8_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType8_test.go index 5541fc457c1cc..b2d9debcb7383 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType8_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType8_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsType9_test.go b/tsc/pkg/fourslash/tests/organizeImportsType9_test.go similarity index 88% rename from tsc/internal/fourslash/tests/organizeImportsType9_test.go rename to tsc/pkg/fourslash/tests/organizeImportsType9_test.go index 5b4d78984207c..fe4e4bfbbc3cb 100644 --- a/tsc/internal/fourslash/tests/organizeImportsType9_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsType9_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsType9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsUnicode1_test.go b/tsc/pkg/fourslash/tests/organizeImportsUnicode1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImportsUnicode1_test.go rename to tsc/pkg/fourslash/tests/organizeImportsUnicode1_test.go index 4fc5d1c3cf75f..045139590853c 100644 --- a/tsc/internal/fourslash/tests/organizeImportsUnicode1_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsUnicode1_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsUnicode1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsUnicode2_test.go b/tsc/pkg/fourslash/tests/organizeImportsUnicode2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/organizeImportsUnicode2_test.go rename to tsc/pkg/fourslash/tests/organizeImportsUnicode2_test.go index 20ce9bb8cbd5e..292dc31e32f8b 100644 --- a/tsc/internal/fourslash/tests/organizeImportsUnicode2_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsUnicode2_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsUnicode2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsUnicode3_test.go b/tsc/pkg/fourslash/tests/organizeImportsUnicode3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/organizeImportsUnicode3_test.go rename to tsc/pkg/fourslash/tests/organizeImportsUnicode3_test.go index 046483ad18e77..a6439a692d63d 100644 --- a/tsc/internal/fourslash/tests/organizeImportsUnicode3_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsUnicode3_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsUnicode3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsUnicode4_test.go b/tsc/pkg/fourslash/tests/organizeImportsUnicode4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/organizeImportsUnicode4_test.go rename to tsc/pkg/fourslash/tests/organizeImportsUnicode4_test.go index ef1c9a7dd8105..d2c0e4e3a291d 100644 --- a/tsc/internal/fourslash/tests/organizeImportsUnicode4_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsUnicode4_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsUnicode4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImportsWithTraceResolution1_test.go b/tsc/pkg/fourslash/tests/organizeImportsWithTraceResolution1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImportsWithTraceResolution1_test.go rename to tsc/pkg/fourslash/tests/organizeImportsWithTraceResolution1_test.go index f666413419e91..9711fec4280f2 100644 --- a/tsc/internal/fourslash/tests/organizeImportsWithTraceResolution1_test.go +++ b/tsc/pkg/fourslash/tests/organizeImportsWithTraceResolution1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImportsWithTraceResolution1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_coalesceExports_test.go b/tsc/pkg/fourslash/tests/organizeImports_coalesceExports_test.go similarity index 95% rename from tsc/internal/fourslash/tests/organizeImports_coalesceExports_test.go rename to tsc/pkg/fourslash/tests/organizeImports_coalesceExports_test.go index d9fd6148a13f3..2a41ec74c7039 100644 --- a/tsc/internal/fourslash/tests/organizeImports_coalesceExports_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_coalesceExports_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_coalesceExports_sortSpecifiersCaseInsensitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_coalesceImports_test.go b/tsc/pkg/fourslash/tests/organizeImports_coalesceImports_test.go similarity index 97% rename from tsc/internal/fourslash/tests/organizeImports_coalesceImports_test.go rename to tsc/pkg/fourslash/tests/organizeImports_coalesceImports_test.go index 8ea802e494480..72bac3b58d95e 100644 --- a/tsc/internal/fourslash/tests/organizeImports_coalesceImports_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_coalesceImports_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_coalesceImports_sortSpecifiersCaseInsensitive(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go b/tsc/pkg/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go similarity index 83% rename from tsc/internal/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go rename to tsc/pkg/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go index 1c721f823a8a6..c6a2839d83b24 100644 --- a/tsc/internal/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_dtsUnusedImportWithAugmentation_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_dtsUnusedImportWithAugmentation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_exportLeadingComment_test.go b/tsc/pkg/fourslash/tests/organizeImports_exportLeadingComment_test.go similarity index 86% rename from tsc/internal/fourslash/tests/organizeImports_exportLeadingComment_test.go rename to tsc/pkg/fourslash/tests/organizeImports_exportLeadingComment_test.go index c670aa144917c..e2ccba381aa32 100644 --- a/tsc/internal/fourslash/tests/organizeImports_exportLeadingComment_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_exportLeadingComment_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_exportLeadingComment_notDuplicated(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_removeOnly_test.go b/tsc/pkg/fourslash/tests/organizeImports_removeOnly_test.go similarity index 77% rename from tsc/internal/fourslash/tests/organizeImports_removeOnly_test.go rename to tsc/pkg/fourslash/tests/organizeImports_removeOnly_test.go index 3866f6ba5b51c..b11944337a2a9 100644 --- a/tsc/internal/fourslash/tests/organizeImports_removeOnly_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_removeOnly_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_removeOnly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go b/tsc/pkg/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go similarity index 87% rename from tsc/internal/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go rename to tsc/pkg/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go index b8072aec0df3a..1dff3f146ac60 100644 --- a/tsc/internal/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_removeUnused_preservesMultiline_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_removeUnused_preservesMultiline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go b/tsc/pkg/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go similarity index 92% rename from tsc/internal/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go rename to tsc/pkg/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go index ba7837dc3e6dd..43a0b0df17612 100644 --- a/tsc/internal/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_sortModuleSpecifiers_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_sortModuleSpecifiers_nonRelativeVsNonRelative(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/organizeImports_typeOrderSameModule_test.go b/tsc/pkg/fourslash/tests/organizeImports_typeOrderSameModule_test.go similarity index 91% rename from tsc/internal/fourslash/tests/organizeImports_typeOrderSameModule_test.go rename to tsc/pkg/fourslash/tests/organizeImports_typeOrderSameModule_test.go index 3df7640622e43..666dc5d563e06 100644 --- a/tsc/internal/fourslash/tests/organizeImports_typeOrderSameModule_test.go +++ b/tsc/pkg/fourslash/tests/organizeImports_typeOrderSameModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOrganizeImports_importKindOrder(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go b/tsc/pkg/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go similarity index 75% rename from tsc/internal/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go rename to tsc/pkg/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go index c97baa7576525..b31e5bd9ad2fe 100644 --- a/tsc/internal/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go +++ b/tsc/pkg/fourslash/tests/outlineSpansBlockCommentsWithoutStatements_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutlineSpansBlockCommentsWithoutStatements(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go b/tsc/pkg/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go similarity index 76% rename from tsc/internal/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go rename to tsc/pkg/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go index 90b2e9737d119..e1f6dbb9c473d 100644 --- a/tsc/internal/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go +++ b/tsc/pkg/fourslash/tests/outlineSpansTrailingBlockCommentsAfterStatements_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutlineSpansTrailingBlockCommentsAfterStatements(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go b/tsc/pkg/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go similarity index 74% rename from tsc/internal/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go rename to tsc/pkg/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go index 1cb688289ee94..503b453aa141a 100644 --- a/tsc/internal/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/outliningForNonCompleteInterfaceDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningForNonCompleteInterfaceDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningHintSpansForFunction_test.go b/tsc/pkg/fourslash/tests/outliningHintSpansForFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/outliningHintSpansForFunction_test.go rename to tsc/pkg/fourslash/tests/outliningHintSpansForFunction_test.go index 9ad8ee7c8fcda..c4669ea6c143b 100644 --- a/tsc/internal/fourslash/tests/outliningHintSpansForFunction_test.go +++ b/tsc/pkg/fourslash/tests/outliningHintSpansForFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningHintSpansForFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForArguments_test.go b/tsc/pkg/fourslash/tests/outliningSpansForArguments_test.go similarity index 80% rename from tsc/internal/fourslash/tests/outliningSpansForArguments_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForArguments_test.go index bda2a6f1502a4..8949debe875c9 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForArguments_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForArguments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForArrowFunctionBody_test.go b/tsc/pkg/fourslash/tests/outliningSpansForArrowFunctionBody_test.go similarity index 78% rename from tsc/internal/fourslash/tests/outliningSpansForArrowFunctionBody_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForArrowFunctionBody_test.go index f3582a38b92f5..3c0fa3b766e27 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForArrowFunctionBody_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForArrowFunctionBody_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForArrowFunctionBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForFunction_test.go b/tsc/pkg/fourslash/tests/outliningSpansForFunction_test.go similarity index 91% rename from tsc/internal/fourslash/tests/outliningSpansForFunction_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForFunction_test.go index 25129df432f34..74b1c5119e35e 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForFunction_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go b/tsc/pkg/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go similarity index 87% rename from tsc/internal/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go index db4c678c611d7..3693356b38094 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForImportAndExportAttributes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForImportAndExportAttributes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForImportTagJSDoc_test.go b/tsc/pkg/fourslash/tests/outliningSpansForImportTagJSDoc_test.go similarity index 80% rename from tsc/internal/fourslash/tests/outliningSpansForImportTagJSDoc_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForImportTagJSDoc_test.go index f0c2dc5216389..56f794c2c2017 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForImportTagJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForImportTagJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForImportTagJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForImportsAndExports_test.go b/tsc/pkg/fourslash/tests/outliningSpansForImportsAndExports_test.go similarity index 86% rename from tsc/internal/fourslash/tests/outliningSpansForImportsAndExports_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForImportsAndExports_test.go index e261d0665b244..9ea53ff44077a 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForImportsAndExports_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForImportsAndExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForImportsAndExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansForParenthesizedExpression_test.go b/tsc/pkg/fourslash/tests/outliningSpansForParenthesizedExpression_test.go similarity index 83% rename from tsc/internal/fourslash/tests/outliningSpansForParenthesizedExpression_test.go rename to tsc/pkg/fourslash/tests/outliningSpansForParenthesizedExpression_test.go index 6df8559041051..05aefede117f7 100644 --- a/tsc/internal/fourslash/tests/outliningSpansForParenthesizedExpression_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansForParenthesizedExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansForParenthesizedExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/outliningSpansSwitchCases_test.go b/tsc/pkg/fourslash/tests/outliningSpansSwitchCases_test.go similarity index 86% rename from tsc/internal/fourslash/tests/outliningSpansSwitchCases_test.go rename to tsc/pkg/fourslash/tests/outliningSpansSwitchCases_test.go index fec8b74f7da5b..acd1a2295104f 100644 --- a/tsc/internal/fourslash/tests/outliningSpansSwitchCases_test.go +++ b/tsc/pkg/fourslash/tests/outliningSpansSwitchCases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOutliningSpansSwitchCases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/overloadObjectLiteralCrash_test.go b/tsc/pkg/fourslash/tests/overloadObjectLiteralCrash_test.go similarity index 79% rename from tsc/internal/fourslash/tests/overloadObjectLiteralCrash_test.go rename to tsc/pkg/fourslash/tests/overloadObjectLiteralCrash_test.go index 6582387d1ec8c..1287586125671 100644 --- a/tsc/internal/fourslash/tests/overloadObjectLiteralCrash_test.go +++ b/tsc/pkg/fourslash/tests/overloadObjectLiteralCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOverloadObjectLiteralCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/overloadOnConstCallSignature_test.go b/tsc/pkg/fourslash/tests/overloadOnConstCallSignature_test.go similarity index 84% rename from tsc/internal/fourslash/tests/overloadOnConstCallSignature_test.go rename to tsc/pkg/fourslash/tests/overloadOnConstCallSignature_test.go index 1ffe8ec17c574..f9ab8f8e26ede 100644 --- a/tsc/internal/fourslash/tests/overloadOnConstCallSignature_test.go +++ b/tsc/pkg/fourslash/tests/overloadOnConstCallSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOverloadOnConstCallSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/overloadQuickInfo_test.go b/tsc/pkg/fourslash/tests/overloadQuickInfo_test.go similarity index 91% rename from tsc/internal/fourslash/tests/overloadQuickInfo_test.go rename to tsc/pkg/fourslash/tests/overloadQuickInfo_test.go index 3f1bf2b743c3a..3227a09bc6607 100644 --- a/tsc/internal/fourslash/tests/overloadQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/overloadQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestOverloadQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/packageJsonImportsFailedLookups_test.go b/tsc/pkg/fourslash/tests/packageJsonImportsFailedLookups_test.go similarity index 86% rename from tsc/internal/fourslash/tests/packageJsonImportsFailedLookups_test.go rename to tsc/pkg/fourslash/tests/packageJsonImportsFailedLookups_test.go index 27ee62b604d57..00388850e83eb 100644 --- a/tsc/internal/fourslash/tests/packageJsonImportsFailedLookups_test.go +++ b/tsc/pkg/fourslash/tests/packageJsonImportsFailedLookups_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPackageJsonImportsFailedLookups(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/parameterWithDestructuring_test.go b/tsc/pkg/fourslash/tests/parameterWithDestructuring_test.go similarity index 87% rename from tsc/internal/fourslash/tests/parameterWithDestructuring_test.go rename to tsc/pkg/fourslash/tests/parameterWithDestructuring_test.go index f088e955f283e..18268b330c8ba 100644 --- a/tsc/internal/fourslash/tests/parameterWithDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/parameterWithDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestParameterWithDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/parameterWithNestedDestructuring_test.go b/tsc/pkg/fourslash/tests/parameterWithNestedDestructuring_test.go similarity index 85% rename from tsc/internal/fourslash/tests/parameterWithNestedDestructuring_test.go rename to tsc/pkg/fourslash/tests/parameterWithNestedDestructuring_test.go index 8761b75f9ac8d..17cfde542c21b 100644 --- a/tsc/internal/fourslash/tests/parameterWithNestedDestructuring_test.go +++ b/tsc/pkg/fourslash/tests/parameterWithNestedDestructuring_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestParameterWithNestedDestructuring(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/parameterlessSetter_test.go b/tsc/pkg/fourslash/tests/parameterlessSetter_test.go similarity index 80% rename from tsc/internal/fourslash/tests/parameterlessSetter_test.go rename to tsc/pkg/fourslash/tests/parameterlessSetter_test.go index 81438b23a20ad..d536137a27c91 100644 --- a/tsc/internal/fourslash/tests/parameterlessSetter_test.go +++ b/tsc/pkg/fourslash/tests/parameterlessSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestParameterlessSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/parserCorruptionAfterMapInClass_test.go b/tsc/pkg/fourslash/tests/parserCorruptionAfterMapInClass_test.go similarity index 79% rename from tsc/internal/fourslash/tests/parserCorruptionAfterMapInClass_test.go rename to tsc/pkg/fourslash/tests/parserCorruptionAfterMapInClass_test.go index f9af4053c3f24..8c531d9495eb8 100644 --- a/tsc/internal/fourslash/tests/parserCorruptionAfterMapInClass_test.go +++ b/tsc/pkg/fourslash/tests/parserCorruptionAfterMapInClass_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestParserCorruptionAfterMapInClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go b/tsc/pkg/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go similarity index 90% rename from tsc/internal/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go rename to tsc/pkg/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go index 26cee5ae01efb..2599c48a20805 100644 --- a/tsc/internal/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go +++ b/tsc/pkg/fourslash/tests/partialUnionPropertyCacheInconsistentErrors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPartialUnionPropertyCacheInconsistentErrors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pasteLambdaOverModule_test.go b/tsc/pkg/fourslash/tests/pasteLambdaOverModule_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pasteLambdaOverModule_test.go rename to tsc/pkg/fourslash/tests/pasteLambdaOverModule_test.go index ab0001f903bc1..171605d5addb7 100644 --- a/tsc/internal/fourslash/tests/pasteLambdaOverModule_test.go +++ b/tsc/pkg/fourslash/tests/pasteLambdaOverModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPasteLambdaOverModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/paste_test.go b/tsc/pkg/fourslash/tests/paste_test.go similarity index 75% rename from tsc/internal/fourslash/tests/paste_test.go rename to tsc/pkg/fourslash/tests/paste_test.go index 3ba9efb49d443..b1eec23985ef2 100644 --- a/tsc/internal/fourslash/tests/paste_test.go +++ b/tsc/pkg/fourslash/tests/paste_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPaste(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go b/tsc/pkg/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go similarity index 81% rename from tsc/internal/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go index 0e61bf210d270..77c4127a548e9 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsAllowModuleAugmentationExtensions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsAllowModuleAugmentationExtensions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsAllowTsExtensions_test.go b/tsc/pkg/fourslash/tests/pathCompletionsAllowTsExtensions_test.go similarity index 86% rename from tsc/internal/fourslash/tests/pathCompletionsAllowTsExtensions_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsAllowTsExtensions_test.go index 6cbaab958944e..48df6bcfb5e05 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsAllowTsExtensions_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsAllowTsExtensions_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsAllowTsExtensions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go index fff4850fe541c..111566f2ef63a 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsBundlerNoNodeCondition_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsBundlerNoNodeCondition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go index 6108cdd41d87b..4b2b372b7c10b 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsCustomConditions_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsCustomConditions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go index e3d570ad9df88..6117e05946894 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard10_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go index 2daa1bb2b9800..3b16df015ca72 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard11_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go similarity index 91% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go index 4001011f42354..517ebd2200550 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard12_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go index 96364236c95a1..1bd9ca3ac7aa3 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go index dfcb1f465fc1d..b48fc7a9f309b 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go index a3cfeb380547b..2cdc902ec9047 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go similarity index 93% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go index 6e7243976da2c..d18027e4720ba 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go index c9df4643ceb3e..1af97f2679400 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go index 8856381e01da1..1f74b407ce34b 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard6_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go index b1994512b8666..111d9abdda603 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard7_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go index 71c7ee87c9b72..cf477b0049800 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go similarity index 81% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go index 09171d86679d4..3f270e1d16f11 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonExportsWildcard9_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonExportsWildcard9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go index 8e712da41d62b..59bf5e55a278f 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsBundlerNoNodeCondition_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsBundlerNoNodeCondition(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go index 84541694e705f..41e40c1ae4884 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsCustomConditions_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsCustomConditions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go index 54a1b32cba79c..c9aa40a412d37 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsIgnoreMatchingNodeModule1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go index abc1ddc238586..b211cfb9d9227 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsIgnoreMatchingNodeModule2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go index 3a9587f961fad..aa8cf545213f9 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsOnlyFromClosestScope1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsOnlyFromClosestScope1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go index ffa8bc611d4db..55f11242e50f6 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go index faa4b560af351..b6f392f37ed2a 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go index 3a020ac2d988a..62bdec748b24b 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go similarity index 94% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go index 0138705f4c7eb..249e8f792fb6e 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go index d015bd7ed2cf0..695e29176d4a2 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go similarity index 85% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go index 95c742cee5212..06b80e1a3623a 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard6_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go similarity index 83% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go index 1cdbdb132d8ec..43d1670252cfc 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard7_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go similarity index 83% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go index 019ce9b1b39a8..4bb6237fdada9 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go similarity index 83% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go index 977abd3a7ed46..7d9f45d2b3c59 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsSrcNoDistWildcard9_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsSrcNoDistWildcard9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go index 9c1f5b27c9469..94ee23ee39737 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard10_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go index 701ca0e34254b..b283ce510302e 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard11_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go similarity index 92% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go index 5d19cd9e33753..2762607bc2dad 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard12_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go index 76b43c9ea1c91..69b6ac88d5b24 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go index 6e228cad00271..14aa543c3cf07 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go index 766996b81fbf4..c28706c37415c 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go similarity index 93% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go index 553dbd106173a..a60b2bc7339b8 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go similarity index 88% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go index 4a079bd404f06..5778d7204681a 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard5_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go similarity index 81% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go index e9aa36a75c258..ed0f2ec9d4489 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard6_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go index cae71ba18d9c1..a965b6a658d0f 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard7_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go index dfed87dd06ea8..d164851e8117c 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard8_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go similarity index 80% rename from tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go index 505d0eac5d994..2054101251361 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPackageJsonImportsWildcard9_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPackageJsonImportsWildcard9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsPartialPath_test.go b/tsc/pkg/fourslash/tests/pathCompletionsPartialPath_test.go similarity index 97% rename from tsc/internal/fourslash/tests/pathCompletionsPartialPath_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsPartialPath_test.go index b48b0b5eb521f..6021d3557124c 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsPartialPath_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsPartialPath_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsPartialPathRelativeImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go similarity index 82% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go index 324de2c8f953d..b3885aa761689 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsLocal_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsLocal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go index 1b19668788397..272dbdc507e57 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go index b53f591c2a3e3..651d0dcc10bc6 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go similarity index 91% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go index 3c179f7db197b..dc517e5d5cca3 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go similarity index 89% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go index 8fc80d2bc3b0a..1056c40e1076e 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go similarity index 92% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go index f8a1b07754dd4..0ee083fedf2b5 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go similarity index 92% rename from tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go rename to tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go index 13c2586391e57..4732c06a8dcae 100644 --- a/tsc/internal/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go +++ b/tsc/pkg/fourslash/tests/pathCompletionsTypesVersionsWildcard6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPathCompletionsTypesVersionsWildcard6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/privatePropertyOfUndefinedThis_test.go b/tsc/pkg/fourslash/tests/privatePropertyOfUndefinedThis_test.go similarity index 86% rename from tsc/internal/fourslash/tests/privatePropertyOfUndefinedThis_test.go rename to tsc/pkg/fourslash/tests/privatePropertyOfUndefinedThis_test.go index 961e007041e74..32c13423cf5fa 100644 --- a/tsc/internal/fourslash/tests/privatePropertyOfUndefinedThis_test.go +++ b/tsc/pkg/fourslash/tests/privatePropertyOfUndefinedThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPrivatePropertyOfUndefinedThis1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/processInvalidSyntax1_test.go b/tsc/pkg/fourslash/tests/processInvalidSyntax1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/processInvalidSyntax1_test.go rename to tsc/pkg/fourslash/tests/processInvalidSyntax1_test.go index be0c7f64a3956..8f01027c2bd95 100644 --- a/tsc/internal/fourslash/tests/processInvalidSyntax1_test.go +++ b/tsc/pkg/fourslash/tests/processInvalidSyntax1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestProcessInvalidSyntax1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/promiseTyping1_test.go b/tsc/pkg/fourslash/tests/promiseTyping1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/promiseTyping1_test.go rename to tsc/pkg/fourslash/tests/promiseTyping1_test.go index 091f7c3ccefe9..143e7ac0e3fd9 100644 --- a/tsc/internal/fourslash/tests/promiseTyping1_test.go +++ b/tsc/pkg/fourslash/tests/promiseTyping1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPromiseTyping1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/promiseTyping2_test.go b/tsc/pkg/fourslash/tests/promiseTyping2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/promiseTyping2_test.go rename to tsc/pkg/fourslash/tests/promiseTyping2_test.go index 358469f5717ec..77f6a9b71625e 100644 --- a/tsc/internal/fourslash/tests/promiseTyping2_test.go +++ b/tsc/pkg/fourslash/tests/promiseTyping2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPromiseTyping2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/propertyDuplicateIdentifierError_test.go b/tsc/pkg/fourslash/tests/propertyDuplicateIdentifierError_test.go similarity index 77% rename from tsc/internal/fourslash/tests/propertyDuplicateIdentifierError_test.go rename to tsc/pkg/fourslash/tests/propertyDuplicateIdentifierError_test.go index 48756ec32ad24..d64b5111f8222 100644 --- a/tsc/internal/fourslash/tests/propertyDuplicateIdentifierError_test.go +++ b/tsc/pkg/fourslash/tests/propertyDuplicateIdentifierError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPropertyDuplicateIdentifierError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/protoPropertyInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/protoPropertyInObjectLiteral_test.go similarity index 85% rename from tsc/internal/fourslash/tests/protoPropertyInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/protoPropertyInObjectLiteral_test.go index 0aad81006aa64..2d49767d2ab74 100644 --- a/tsc/internal/fourslash/tests/protoPropertyInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/protoPropertyInObjectLiteral_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestProtoPropertyInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/protoVarInContextualObjectLiteral_test.go b/tsc/pkg/fourslash/tests/protoVarInContextualObjectLiteral_test.go similarity index 97% rename from tsc/internal/fourslash/tests/protoVarInContextualObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/protoVarInContextualObjectLiteral_test.go index eed09b239608e..706d23e8405c8 100644 --- a/tsc/internal/fourslash/tests/protoVarInContextualObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/protoVarInContextualObjectLiteral_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestProtoVarInContextualObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go b/tsc/pkg/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go similarity index 80% rename from tsc/internal/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go rename to tsc/pkg/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go index f62002fd3addb..538263ee42d5b 100644 --- a/tsc/internal/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go +++ b/tsc/pkg/fourslash/tests/protoVarVisibleWithOuterScopeUnderscoreProto_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestProtoVarVisibleWithOuterScopeUnderscoreProto(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/prototypeProperty_test.go b/tsc/pkg/fourslash/tests/prototypeProperty_test.go similarity index 76% rename from tsc/internal/fourslash/tests/prototypeProperty_test.go rename to tsc/pkg/fourslash/tests/prototypeProperty_test.go index 0f59be7510544..da83738a75874 100644 --- a/tsc/internal/fourslash/tests/prototypeProperty_test.go +++ b/tsc/pkg/fourslash/tests/prototypeProperty_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPrototypeProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/publicBreak_test.go b/tsc/pkg/fourslash/tests/publicBreak_test.go similarity index 73% rename from tsc/internal/fourslash/tests/publicBreak_test.go rename to tsc/pkg/fourslash/tests/publicBreak_test.go index f32ff2f57b68f..cdd79c45189b0 100644 --- a/tsc/internal/fourslash/tests/publicBreak_test.go +++ b/tsc/pkg/fourslash/tests/publicBreak_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestPublicBreak(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go b/tsc/pkg/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go similarity index 81% rename from tsc/internal/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go rename to tsc/pkg/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go index 88561204bf876..338a9240bce32 100644 --- a/tsc/internal/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go +++ b/tsc/pkg/fourslash/tests/qualifiedName_import-declaration-with-variable-entity-names_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQualifiedName_import_declaration_with_variable_entity_names(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/qualifyModuleTypeNames_test.go b/tsc/pkg/fourslash/tests/qualifyModuleTypeNames_test.go similarity index 80% rename from tsc/internal/fourslash/tests/qualifyModuleTypeNames_test.go rename to tsc/pkg/fourslash/tests/qualifyModuleTypeNames_test.go index 78d80e1c0d26b..218578857448c 100644 --- a/tsc/internal/fourslash/tests/qualifyModuleTypeNames_test.go +++ b/tsc/pkg/fourslash/tests/qualifyModuleTypeNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQualifyModuleTypeNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAliasVS_test.go b/tsc/pkg/fourslash/tests/quickInfoAliasVS_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoAliasVS_test.go rename to tsc/pkg/fourslash/tests/quickInfoAliasVS_test.go index 1fa73ce51f811..8e3ff00402c61 100644 --- a/tsc/internal/fourslash/tests/quickInfoAliasVS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAliasVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAliasVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoAlias_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoAlias_test.go index b2e9790348524..acd179793818a 100644 --- a/tsc/internal/fourslash/tests/quickInfoAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAmbientModule_test.go b/tsc/pkg/fourslash/tests/quickInfoAmbientModule_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoAmbientModule_test.go rename to tsc/pkg/fourslash/tests/quickInfoAmbientModule_test.go index bca7ec8ec64a0..3573bd87ee311 100644 --- a/tsc/internal/fourslash/tests/quickInfoAmbientModule_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAmbientModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAmbientModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go b/tsc/pkg/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go rename to tsc/pkg/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go index 801a59ca5c132..46313fb03e34d 100644 --- a/tsc/internal/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAssertionNodeNotReusedWhenTypeNotEquivalent1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAssignToExistingClass_test.go b/tsc/pkg/fourslash/tests/quickInfoAssignToExistingClass_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoAssignToExistingClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoAssignToExistingClass_test.go index 4ffd4c82f8a29..4684c3ac019c5 100644 --- a/tsc/internal/fourslash/tests/quickInfoAssignToExistingClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAssignToExistingClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAssignToExistingClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go b/tsc/pkg/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go rename to tsc/pkg/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go index 5164fc3f066df..94d7b93c4aa2f 100644 --- a/tsc/internal/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoAtPropWithAmbientDeclarationInJs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoAtPropWithAmbientDeclarationInJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go b/tsc/pkg/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go rename to tsc/pkg/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go index be1e6f39b526c..59d91321a6987 100644 --- a/tsc/internal/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoBindingPatternInJsdocNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoBindingPatternInJsdocNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCallProperty_test.go b/tsc/pkg/fourslash/tests/quickInfoCallProperty_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoCallProperty_test.go rename to tsc/pkg/fourslash/tests/quickInfoCallProperty_test.go index f37c97cfede53..499bc03674866 100644 --- a/tsc/internal/fourslash/tests/quickInfoCallProperty_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCallProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCallProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCanBeTruncated_test.go b/tsc/pkg/fourslash/tests/quickInfoCanBeTruncated_test.go similarity index 98% rename from tsc/internal/fourslash/tests/quickInfoCanBeTruncated_test.go rename to tsc/pkg/fourslash/tests/quickInfoCanBeTruncated_test.go index 3f87181087ebb..4de031e8b5102 100644 --- a/tsc/internal/fourslash/tests/quickInfoCanBeTruncated_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCanBeTruncated_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCanBeTruncated(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCatch_test.go b/tsc/pkg/fourslash/tests/quickInfoCatch_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoCatch_test.go rename to tsc/pkg/fourslash/tests/quickInfoCatch_test.go index 2d7deb0182685..576cbd0989c2f 100644 --- a/tsc/internal/fourslash/tests/quickInfoCatch_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCatch_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickCatchInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCircularInstantiationExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoCircularInstantiationExpression_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoCircularInstantiationExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoCircularInstantiationExpression_test.go index 6b847dc71686b..786600ebbc2e9 100644 --- a/tsc/internal/fourslash/tests/quickInfoCircularInstantiationExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCircularInstantiationExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCircularInstantiationExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoClassKeyword_test.go b/tsc/pkg/fourslash/tests/quickInfoClassKeyword_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoClassKeyword_test.go rename to tsc/pkg/fourslash/tests/quickInfoClassKeyword_test.go index e07e4a24490df..d839bd53f89be 100644 --- a/tsc/internal/fourslash/tests/quickInfoClassKeyword_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoClassKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoClassKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go b/tsc/pkg/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go rename to tsc/pkg/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go index ec0bdc5dc9604..3228876f83a2b 100644 --- a/tsc/internal/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCloduleWithRecursiveReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCloduleWithRecursiveReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsClassMembers_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsClassMembers_test.go similarity index 97% rename from tsc/internal/fourslash/tests/quickInfoCommentsClassMembers_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsClassMembers_test.go index 882925b66802d..26ad05f50d9f4 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsClassMembers_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsClassMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsClassMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsClass_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsClass_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoCommentsClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsClass_test.go index f1d2e3e68c333..28905b4443d54 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsCommentParsing_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsCommentParsing_test.go similarity index 97% rename from tsc/internal/fourslash/tests/quickInfoCommentsCommentParsing_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsCommentParsing_test.go index a0b2bb38b2fe0..a85b287d61aa1 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsCommentParsing_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsCommentParsing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsCommentParsing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go index 8dd30f23ff5d7..55984b9e564db 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclarationVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsFunctionDeclarationVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go index 6932c8c3eff7b..25981f148fa96 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionExpression_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickInfoCommentsFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoCommentsFunctionExpression_test.go index 2caa31dfc5253..05caa82bfe94c 100644 --- a/tsc/internal/fourslash/tests/quickInfoCommentsFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoCommentsFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoCommentsFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoConstAssertion_test.go b/tsc/pkg/fourslash/tests/quickInfoConstAssertion_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoConstAssertion_test.go rename to tsc/pkg/fourslash/tests/quickInfoConstAssertion_test.go index cb0c0073b770b..4d0556b709451 100644 --- a/tsc/internal/fourslash/tests/quickInfoConstAssertion_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoConstAssertion_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoConstAssertion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go b/tsc/pkg/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go rename to tsc/pkg/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go index ca53c939c3c51..dc698683b639a 100644 --- a/tsc/internal/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoContextualObjectMethodJSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoContextualObjectMethodJSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoContextualTyping_test.go b/tsc/pkg/fourslash/tests/quickInfoContextualTyping_test.go similarity index 99% rename from tsc/internal/fourslash/tests/quickInfoContextualTyping_test.go rename to tsc/pkg/fourslash/tests/quickInfoContextualTyping_test.go index 855f8dc74ead0..6f962519c9c07 100644 --- a/tsc/internal/fourslash/tests/quickInfoContextualTyping_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoContextualTyping_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoContextualTyping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go b/tsc/pkg/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go rename to tsc/pkg/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go index 952f7f03677b4..b6d4a04876aaf 100644 --- a/tsc/internal/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoContextuallyTypedSignatureOptionalParameterFromIntersection1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDefaultTypeParameter1_test.go b/tsc/pkg/fourslash/tests/quickInfoDefaultTypeParameter1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoDefaultTypeParameter1_test.go rename to tsc/pkg/fourslash/tests/quickInfoDefaultTypeParameter1_test.go index 19323a581d3c8..3d75638a77656 100644 --- a/tsc/internal/fourslash/tests/quickInfoDefaultTypeParameter1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDefaultTypeParameter1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDefaultTypeParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDestructuredBinding_test.go b/tsc/pkg/fourslash/tests/quickInfoDestructuredBinding_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoDestructuredBinding_test.go rename to tsc/pkg/fourslash/tests/quickInfoDestructuredBinding_test.go index 92cd0f146e5b3..aea04feba3210 100644 --- a/tsc/internal/fourslash/tests/quickInfoDestructuredBinding_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDestructuredBinding_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDestructuredBinding(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go index db37bad4da572..3d6577f1317a3 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsArrowFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsArrowFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go index 6020edbe13da5..7b166e1786b2c 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAccessors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassAccessors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go index f38947664bcb2..4b1865263f2b4 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassAutoAccessors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassAutoAccessors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go index 6a821c81da6ca..48be237404609 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go index 980558634b678..9c66e9220134e 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultAnonymous_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassDefaultAnonymous(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go index 40890d2716b9f..6003710521e9c 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassDefaultNamed_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassDefaultNamed(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go similarity index 74% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go index 40ee85b9118a6..54007701dd3f2 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassIncomplete_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassIncomplete(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go index 64051e144a694..71d6f8a69760c 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethodVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassMethodVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go index 1fe1b0b04ae31..43625f51f68a0 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go index 85fff302f4e58..83105d5b5c4bd 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassPropertyVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassPropertyVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go index 9b8a968e47376..68cb4c7bb3697 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClassProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClassProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClass_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClass_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsClass_test.go index caf710d5c968f..d7bc55b155500 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsConst_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsConst_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsConst_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsConst_test.go index b8d8e6215aab4..6f371210a6ccb 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsConst_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsConst_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsConst(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum1_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum1_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum1_test.go index 117be6fffd929..0baa395d9ceb8 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsEnum1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum2_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum2_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum2_test.go index fe12063ccc72e..cd034a7132930 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsEnum2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum3_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum3_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum3_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum3_test.go index 46e450817322d..2466e838ce9e1 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsEnum3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum4_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum4_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum4_test.go index bb354e73c1e9f..146fd8ee13f30 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsEnum4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsEnum4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsEnum4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go index 6e977e02f0c75..1ce4c16c0fc29 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModuleAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsExternalModuleAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go index fc29ead9c5ae4..edbd71cd0f12a 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsExternalModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsExternalModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go index 77dc239043663..235c564b04131 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go index f7ddeab1ce9fd..355f1066c83a4 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionIncomplete_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsFunctionIncomplete(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go index e060a6333b5ab..55a9bca189e64 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunctionVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsFunctionVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunction_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunction_test.go index 4ef1b12529a16..2793277973f4d 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsIife_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsIife_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsIife_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsIife_test.go index 9e0d51f2b39d1..11bd0c50a12e4 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsIife_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsIife_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsIife(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go index 109406e88a3cc..b1d87aba6fac1 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterfaceMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsInterfaceMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInterface_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterface_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsInterface_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterface_test.go index e514ab85e38ef..d00b3e724aec2 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInterface_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go index 58d77a116c512..bbbbdd86b5fbf 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsInternalModuleAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsInternalModuleAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLet_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLet_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsLet_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsLet_test.go index f0df1c69118a6..4277803fb2a48 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLet_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLet_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsLet(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go index 809cf4ac5dc37..51b2aeac2cf4e 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLiteralLikeNames01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsLiteralLikeNames01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go index 29f35196e5ac7..125b40da5621f 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsLocalFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsLocalFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsModules_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsModules_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsModules_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsModules_test.go index d09e28acc8236..a7830eec34bc0 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsModules_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsParameters_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsParameters_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsParameters_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsParameters_test.go index 4762508647ead..9776b0b58134c 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsParameters_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go index 83a25385cb9c3..52a3fc2f9866b 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go index f8c4869b3d45e..06de058044450 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeParameterInClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go index f453ead903f64..1ce0f613dab4c 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeParameterInFunctionLikeInTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go index 256073812823c..1374993d12392 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeParameterInFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go index 08bd0bcaef9fd..76d34563861d7 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeParameterInInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go index f47a6229489b9..fc981e3b9307b 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsTypeParameterInTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsTypeParameterInTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsUsing_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsUsing_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsUsing_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsUsing_test.go index 98046fe35ae39..f6adbae1acb04 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsUsing_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsUsing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsUsing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go index b08a2b9e0537b..bdc8dd6670b18 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsVarWithStringTypes01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsVarWithStringTypes01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoDisplayPartsVar_test.go b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsVar_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoDisplayPartsVar_test.go rename to tsc/pkg/fourslash/tests/quickInfoDisplayPartsVar_test.go index af17234a252b6..3f121d5f82ee7 100644 --- a/tsc/internal/fourslash/tests/quickInfoDisplayPartsVar_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoDisplayPartsVar_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoDisplayPartsVar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoElementAccessDeclaration_test.go b/tsc/pkg/fourslash/tests/quickInfoElementAccessDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoElementAccessDeclaration_test.go rename to tsc/pkg/fourslash/tests/quickInfoElementAccessDeclaration_test.go index f071984c540f8..455d8aa00fdf1 100644 --- a/tsc/internal/fourslash/tests/quickInfoElementAccessDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoElementAccessDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoElementAccessDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go b/tsc/pkg/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go rename to tsc/pkg/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go index 8963dfcfe417d..8c9362131cfd7 100644 --- a/tsc/internal/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoEnumMembersAcceptNonAsciiStrings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoEnumMembersAcceptNonAsciiStrings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go b/tsc/pkg/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go rename to tsc/pkg/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go index 9abcc00f7beb7..3a6e0783d9e7b 100644 --- a/tsc/internal/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoExportAssignmentOfGenericInterface_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoExportAssignmentOfGenericInterface(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoExtendArray_test.go b/tsc/pkg/fourslash/tests/quickInfoExtendArray_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoExtendArray_test.go rename to tsc/pkg/fourslash/tests/quickInfoExtendArray_test.go index f475e64e722b5..62b8d2344ebb0 100644 --- a/tsc/internal/fourslash/tests/quickInfoExtendArray_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoExtendArray_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoExtendArray(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForAliasedGeneric_test.go b/tsc/pkg/fourslash/tests/quickInfoForAliasedGeneric_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoForAliasedGeneric_test.go rename to tsc/pkg/fourslash/tests/quickInfoForAliasedGeneric_test.go index 0c6e0b21e3046..25ea364ec40c9 100644 --- a/tsc/internal/fourslash/tests/quickInfoForAliasedGeneric_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForAliasedGeneric_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForAliasedGeneric(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go b/tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go rename to tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go index 4538d7fc2251a..2db362e83ec56 100644 --- a/tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForArgumentsPropertyNameInJsMode1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go b/tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go rename to tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go index 1e1e62d873505..f5d0daaeff6c4 100644 --- a/tsc/internal/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForArgumentsPropertyNameInJsMode2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForArgumentsPropertyNameInJsMode2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForConstAssertions_test.go b/tsc/pkg/fourslash/tests/quickInfoForConstAssertions_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoForConstAssertions_test.go rename to tsc/pkg/fourslash/tests/quickInfoForConstAssertions_test.go index c179a3c4286d6..0ecb77ff6ddfe 100644 --- a/tsc/internal/fourslash/tests/quickInfoForConstAssertions_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForConstAssertions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForConstAssertions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForConstDeclaration_test.go b/tsc/pkg/fourslash/tests/quickInfoForConstDeclaration_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoForConstDeclaration_test.go rename to tsc/pkg/fourslash/tests/quickInfoForConstDeclaration_test.go index f8750217e28cc..196da1d96e965 100644 --- a/tsc/internal/fourslash/tests/quickInfoForConstDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForConstDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForConstDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForConstTypeReference_test.go b/tsc/pkg/fourslash/tests/quickInfoForConstTypeReference_test.go similarity index 74% rename from tsc/internal/fourslash/tests/quickInfoForConstTypeReference_test.go rename to tsc/pkg/fourslash/tests/quickInfoForConstTypeReference_test.go index 3c1a10b61a3fb..1e6fc7e605ba4 100644 --- a/tsc/internal/fourslash/tests/quickInfoForConstTypeReference_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForConstTypeReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForConstTypeReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go rename to tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go index aafe9074e66a3..c2e38722050dd 100644 --- a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedArrowFunctionInSuperCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForContextuallyTypedArrowFunctionInSuperCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go rename to tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go index 7ed616665775d..ce986aeb0e1b2 100644 --- a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedFunctionInReturnStatement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForContextuallyTypedFunctionInReturnStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedIife_test.go b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedIife_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoForContextuallyTypedIife_test.go rename to tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedIife_test.go index e72e7af8b3e40..0fa8abf38980f 100644 --- a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedIife_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedIife_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForContextuallyTypedIife(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go rename to tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go index 79d4a07c2b29b..f936620810bc6 100644 --- a/tsc/internal/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForContextuallyTypedParameters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForContextuallyTypedParameters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForDecorators_test.go b/tsc/pkg/fourslash/tests/quickInfoForDecorators_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoForDecorators_test.go rename to tsc/pkg/fourslash/tests/quickInfoForDecorators_test.go index 1639eb5034607..3cd104c522268 100644 --- a/tsc/internal/fourslash/tests/quickInfoForDecorators_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForDecorators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForDecorators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go b/tsc/pkg/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go rename to tsc/pkg/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go index 43d955b4856b3..0bfde2a2de137 100644 --- a/tsc/internal/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForDerivedGenericTypeWithConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForDerivedGenericTypeWithConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go b/tsc/pkg/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go rename to tsc/pkg/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go index 5b773337157c5..21d1acffccd99 100644 --- a/tsc/internal/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForDestructuringShorthandInitializer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForDestructuringShorthandInitializer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/quickInfoForFunctionDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoForFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/quickInfoForFunctionDeclaration_test.go index c37880810f1d6..a5c4e67084226 100644 --- a/tsc/internal/fourslash/tests/quickInfoForFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForGenericConstraints1_test.go b/tsc/pkg/fourslash/tests/quickInfoForGenericConstraints1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoForGenericConstraints1_test.go rename to tsc/pkg/fourslash/tests/quickInfoForGenericConstraints1_test.go index d97eac0cdeefc..d0fd4bc691024 100644 --- a/tsc/internal/fourslash/tests/quickInfoForGenericConstraints1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForGenericConstraints1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForGenericConstraints1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForGenericPrototypeMember_test.go b/tsc/pkg/fourslash/tests/quickInfoForGenericPrototypeMember_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoForGenericPrototypeMember_test.go rename to tsc/pkg/fourslash/tests/quickInfoForGenericPrototypeMember_test.go index 12425114ea53b..49f77853bfb4b 100644 --- a/tsc/internal/fourslash/tests/quickInfoForGenericPrototypeMember_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForGenericPrototypeMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForGenericPrototypeMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go index f964a9eff2b36..9bc113f5c24fa 100644 --- a/tsc/internal/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForGenericTaggedTemplateExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForGenericTaggedTemplateExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForGetterAndSetter_test.go b/tsc/pkg/fourslash/tests/quickInfoForGetterAndSetter_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoForGetterAndSetter_test.go rename to tsc/pkg/fourslash/tests/quickInfoForGetterAndSetter_test.go index 46a001d421d7e..9a627f5f96b95 100644 --- a/tsc/internal/fourslash/tests/quickInfoForGetterAndSetter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForGetterAndSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForGetterAndSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForIn_test.go b/tsc/pkg/fourslash/tests/quickInfoForIn_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoForIn_test.go rename to tsc/pkg/fourslash/tests/quickInfoForIn_test.go index c6519e9d6c6a8..6fed755eb96e3 100644 --- a/tsc/internal/fourslash/tests/quickInfoForIn_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForIn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForIn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go b/tsc/pkg/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go rename to tsc/pkg/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go index b7b2b0394dc4a..1529843ec8e06 100644 --- a/tsc/internal/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForIndexerResultWithConstraint_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForIndexerResultWithConstraint(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForJSDocCodefence_test.go b/tsc/pkg/fourslash/tests/quickInfoForJSDocCodefence_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoForJSDocCodefence_test.go rename to tsc/pkg/fourslash/tests/quickInfoForJSDocCodefence_test.go index 63cb60162e2ef..7741b32affaf2 100644 --- a/tsc/internal/fourslash/tests/quickInfoForJSDocCodefence_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForJSDocCodefence_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForJSDocCodefence(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForJSDocUnknownTag_test.go b/tsc/pkg/fourslash/tests/quickInfoForJSDocUnknownTag_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoForJSDocUnknownTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoForJSDocUnknownTag_test.go index ff08ddc60bd21..dd8a749b5f734 100644 --- a/tsc/internal/fourslash/tests/quickInfoForJSDocUnknownTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForJSDocUnknownTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForJSDocUnknownTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go b/tsc/pkg/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go rename to tsc/pkg/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go index 8453661dc5c00..11d6407b1fac5 100644 --- a/tsc/internal/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForJSDocWithHttpLinks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForJSDocWithHttpLinks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go b/tsc/pkg/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go rename to tsc/pkg/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go index bbc187b815025..b6f23bab86e0f 100644 --- a/tsc/internal/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForJSDocWithUnresolvedHttpLinks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForJSDocWithUnresolvedHttpLinks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForNamedTupleMember_test.go b/tsc/pkg/fourslash/tests/quickInfoForNamedTupleMember_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoForNamedTupleMember_test.go rename to tsc/pkg/fourslash/tests/quickInfoForNamedTupleMember_test.go index 41849243b08a3..4ab0e6bedec9b 100644 --- a/tsc/internal/fourslash/tests/quickInfoForNamedTupleMember_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForNamedTupleMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForNamedTupleMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName01_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName01_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName01_test.go index 2b9a922d96655..9af2b5050557d 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName02_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName02_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName02_test.go index b04b074e794d8..5d41cd32a6a0b 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName02_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName03_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName03_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName03_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName03_test.go index db1f199eae722..867c4bfdb5e9a 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName03_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName04_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName04_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName04_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName04_test.go index b7fbe1cd5a01f..453a7a88161cd 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName04_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName05_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName05_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName05_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName05_test.go index dcee16cacbdb3..50fdc8c2fdb69 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName05_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName06_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName06_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName06_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName06_test.go index 9b9d5f96b805f..52c6a961868fd 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementName06_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementName06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementName06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go index 5d0d6803c497f..912a960ed0ec8 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementPropertyName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go index 9c8a740f2151a..1d852547e5d43 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementPropertyName02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go rename to tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go index c183274d4583d..2b3b0de95178e 100644 --- a/tsc/internal/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForObjectBindingElementPropertyName04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForObjectBindingElementPropertyName04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForOverloadOnConst1_test.go b/tsc/pkg/fourslash/tests/quickInfoForOverloadOnConst1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoForOverloadOnConst1_test.go rename to tsc/pkg/fourslash/tests/quickInfoForOverloadOnConst1_test.go index 2a34cfc10b606..745388e8cec64 100644 --- a/tsc/internal/fourslash/tests/quickInfoForOverloadOnConst1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForOverloadOnConst1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForOverloadOnConst1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForRequire_test.go b/tsc/pkg/fourslash/tests/quickInfoForRequire_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoForRequire_test.go rename to tsc/pkg/fourslash/tests/quickInfoForRequire_test.go index e548a4bead40b..c8e9ff4e36732 100644 --- a/tsc/internal/fourslash/tests/quickInfoForRequire_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForRequire_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForRequire(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForShorthandProperty_test.go b/tsc/pkg/fourslash/tests/quickInfoForShorthandProperty_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoForShorthandProperty_test.go rename to tsc/pkg/fourslash/tests/quickInfoForShorthandProperty_test.go index 273427ffa94ff..3eb93e42aa07e 100644 --- a/tsc/internal/fourslash/tests/quickInfoForShorthandProperty_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForShorthandProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForShorthandProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go b/tsc/pkg/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go rename to tsc/pkg/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go index 03d099ffd9833..1da8de514a144 100644 --- a/tsc/internal/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForSyntaxErrorNoError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForSyntaxErrorNoError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go b/tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go rename to tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go index e2f285e8add3b..cdd03e2347f65 100644 --- a/tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForTypeParameterInTypeAlias1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go b/tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go rename to tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go index 2b6c20d57ce09..f08a0f1c318e4 100644 --- a/tsc/internal/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForTypeParameterInTypeAlias2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForTypeParameterInTypeAlias2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForTypeofParameter_test.go b/tsc/pkg/fourslash/tests/quickInfoForTypeofParameter_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoForTypeofParameter_test.go rename to tsc/pkg/fourslash/tests/quickInfoForTypeofParameter_test.go index 90e533bd7ce1d..0ce143ced223d 100644 --- a/tsc/internal/fourslash/tests/quickInfoForTypeofParameter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForTypeofParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForTypeofParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoForUMDModuleAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoForUMDModuleAlias_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoForUMDModuleAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoForUMDModuleAlias_test.go index 831a9dc775bd5..a006f1b09c8ae 100644 --- a/tsc/internal/fourslash/tests/quickInfoForUMDModuleAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoForUMDModuleAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoForUMDModuleAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFromContextualType_test.go b/tsc/pkg/fourslash/tests/quickInfoFromContextualType_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoFromContextualType_test.go rename to tsc/pkg/fourslash/tests/quickInfoFromContextualType_test.go index 5324c1aee123b..fe5112225c720 100644 --- a/tsc/internal/fourslash/tests/quickInfoFromContextualType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFromContextualType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFromContextualType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType1_test.go b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoFromContextualUnionType1_test.go rename to tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType1_test.go index 856a6c86d3483..419d78ef4ce97 100644 --- a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFromContextualUnionType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType2_test.go b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoFromContextualUnionType2_test.go rename to tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType2_test.go index f61c2d5ffc2a7..acf0a3c32ca8f 100644 --- a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFromContextualUnionType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType3_test.go b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoFromContextualUnionType3_test.go rename to tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType3_test.go index 6dae8d6013b9c..570ee129e4df0 100644 --- a/tsc/internal/fourslash/tests/quickInfoFromContextualUnionType3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFromContextualUnionType3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFromContextualUnionType3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFromEmptyBlockComment_test.go b/tsc/pkg/fourslash/tests/quickInfoFromEmptyBlockComment_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoFromEmptyBlockComment_test.go rename to tsc/pkg/fourslash/tests/quickInfoFromEmptyBlockComment_test.go index c3d6fea7f31e0..b081916f607b8 100644 --- a/tsc/internal/fourslash/tests/quickInfoFromEmptyBlockComment_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFromEmptyBlockComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFromEmptyBlockComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFunctionCheckType_test.go b/tsc/pkg/fourslash/tests/quickInfoFunctionCheckType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoFunctionCheckType_test.go rename to tsc/pkg/fourslash/tests/quickInfoFunctionCheckType_test.go index d0a76e705d9ca..98cccc9eaaf38 100644 --- a/tsc/internal/fourslash/tests/quickInfoFunctionCheckType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFunctionCheckType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFunctionCheckType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFunctionKeyword_test.go b/tsc/pkg/fourslash/tests/quickInfoFunctionKeyword_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoFunctionKeyword_test.go rename to tsc/pkg/fourslash/tests/quickInfoFunctionKeyword_test.go index d007f0cd9f460..16763fcb61097 100644 --- a/tsc/internal/fourslash/tests/quickInfoFunctionKeyword_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFunctionKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFunctionKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoFunction_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoFunction_test.go index 2460aa7ba10ea..721017e5303d0 100644 --- a/tsc/internal/fourslash/tests/quickInfoFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGenericCombinators2_test.go b/tsc/pkg/fourslash/tests/quickInfoGenericCombinators2_test.go similarity index 97% rename from tsc/internal/fourslash/tests/quickInfoGenericCombinators2_test.go rename to tsc/pkg/fourslash/tests/quickInfoGenericCombinators2_test.go index 6a55ff33cff76..862fab5b4d681 100644 --- a/tsc/internal/fourslash/tests/quickInfoGenericCombinators2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGenericCombinators2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGenericCombinators2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGenericPropertyAccessor_test.go b/tsc/pkg/fourslash/tests/quickInfoGenericPropertyAccessor_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoGenericPropertyAccessor_test.go rename to tsc/pkg/fourslash/tests/quickInfoGenericPropertyAccessor_test.go index cbb9bce4b1aed..201d24401af3e 100644 --- a/tsc/internal/fourslash/tests/quickInfoGenericPropertyAccessor_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGenericPropertyAccessor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGenericPropertyAccessor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go b/tsc/pkg/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go rename to tsc/pkg/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go index 7196af8ead916..c87e129ca79ac 100644 --- a/tsc/internal/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGenericTypeArgumentInference1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGenericTypeArgumentInference1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGenericTypePath_test.go b/tsc/pkg/fourslash/tests/quickInfoGenericTypePath_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoGenericTypePath_test.go rename to tsc/pkg/fourslash/tests/quickInfoGenericTypePath_test.go index b9367d18b7516..638cde1d8ffe8 100644 --- a/tsc/internal/fourslash/tests/quickInfoGenericTypePath_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGenericTypePath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGenericTypePath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGenerics_test.go b/tsc/pkg/fourslash/tests/quickInfoGenerics_test.go similarity index 95% rename from tsc/internal/fourslash/tests/quickInfoGenerics_test.go rename to tsc/pkg/fourslash/tests/quickInfoGenerics_test.go index 7491a6af71851..2749624b14a7f 100644 --- a/tsc/internal/fourslash/tests/quickInfoGenerics_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGenerics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGenerics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoGetterSetter_test.go b/tsc/pkg/fourslash/tests/quickInfoGetterSetter_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoGetterSetter_test.go rename to tsc/pkg/fourslash/tests/quickInfoGetterSetter_test.go index 932b948eda912..4d615b753ee2c 100644 --- a/tsc/internal/fourslash/tests/quickInfoGetterSetter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoGetterSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoGetterSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoImportMeta_test.go b/tsc/pkg/fourslash/tests/quickInfoImportMeta_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoImportMeta_test.go rename to tsc/pkg/fourslash/tests/quickInfoImportMeta_test.go index 9dec64acc870f..997dbb2c9fbe1 100644 --- a/tsc/internal/fourslash/tests/quickInfoImportMeta_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoImportMeta_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoImportMeta(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoImportNonunicodePath_test.go b/tsc/pkg/fourslash/tests/quickInfoImportNonunicodePath_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoImportNonunicodePath_test.go rename to tsc/pkg/fourslash/tests/quickInfoImportNonunicodePath_test.go index f6f4080221bd8..2751bcba77137 100644 --- a/tsc/internal/fourslash/tests/quickInfoImportNonunicodePath_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoImportNonunicodePath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoImportNonunicodePath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference2_test.go b/tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference2_test.go rename to tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference2_test.go index 02b0d447620d2..b5708bd3651b0 100644 --- a/tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInFunctionTypeReference2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference_test.go b/tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference_test.go rename to tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference_test.go index a26d077cf6bd5..3358feda4907c 100644 --- a/tsc/internal/fourslash/tests/quickInfoInFunctionTypeReference_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInFunctionTypeReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInFunctionTypeReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInInvalidIndexSignature_test.go b/tsc/pkg/fourslash/tests/quickInfoInInvalidIndexSignature_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoInInvalidIndexSignature_test.go rename to tsc/pkg/fourslash/tests/quickInfoInInvalidIndexSignature_test.go index 39453deedf87c..ac681212c51ef 100644 --- a/tsc/internal/fourslash/tests/quickInfoInInvalidIndexSignature_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInInvalidIndexSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInInvalidIndexSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInJsdocInTsFile1_test.go b/tsc/pkg/fourslash/tests/quickInfoInJsdocInTsFile1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoInJsdocInTsFile1_test.go rename to tsc/pkg/fourslash/tests/quickInfoInJsdocInTsFile1_test.go index c9bfd0cd71343..0c69038b5b54b 100644 --- a/tsc/internal/fourslash/tests/quickInfoInJsdocInTsFile1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInJsdocInTsFile1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInJsdocInTsFile1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInObjectLiteral_test.go b/tsc/pkg/fourslash/tests/quickInfoInObjectLiteral_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoInObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/quickInfoInObjectLiteral_test.go index 4be18014d9ac7..5de8fa9ca1839 100644 --- a/tsc/internal/fourslash/tests/quickInfoInObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInOptionalChain_test.go b/tsc/pkg/fourslash/tests/quickInfoInOptionalChain_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoInOptionalChain_test.go rename to tsc/pkg/fourslash/tests/quickInfoInOptionalChain_test.go index 955f33b88ed2a..b36738635fc78 100644 --- a/tsc/internal/fourslash/tests/quickInfoInOptionalChain_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInOptionalChain_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInOptionalChain(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInWithBlock_test.go b/tsc/pkg/fourslash/tests/quickInfoInWithBlock_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoInWithBlock_test.go rename to tsc/pkg/fourslash/tests/quickInfoInWithBlock_test.go index f94988e74eedb..fab7e18b470be 100644 --- a/tsc/internal/fourslash/tests/quickInfoInWithBlock_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInWithBlock_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInWithBlock(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoIndexSignatureMappedType_test.go b/tsc/pkg/fourslash/tests/quickInfoIndexSignatureMappedType_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoIndexSignatureMappedType_test.go rename to tsc/pkg/fourslash/tests/quickInfoIndexSignatureMappedType_test.go index 04dd567ef7a70..95d2808beab20 100644 --- a/tsc/internal/fourslash/tests/quickInfoIndexSignatureMappedType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoIndexSignatureMappedType_test.go @@ -3,14 +3,14 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoIndexSignatureMappedType(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") - // Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3018 + // Regression test for https://github.com/frida/TypeScript/tsc/issues/3018 // Quick info for property access resolved from an index signature on a mapped type // (e.g. Record) should show the value type rather than nothing. const content = ` diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc2_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc2_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc2_test.go index 3cace18d4418d..46269ece3c173 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc3_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc3_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc3_test.go index e2b8db58f8e08..44a4ba5e9cee9 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc4_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc4_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc4_test.go index 6a7bc8a920900..53e747401d50b 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc5_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc5_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc5_test.go index db3212042adef..7250e1e1770e4 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc6_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc6_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc6_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc6_test.go index 76ef019a35374..d90e00774e8b5 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc6_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritDoc_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritDoc_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoInheritDoc_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritDoc_test.go index 81aaa843c763d..55546f37340fb 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritDoc_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoInheritedLinkTag_test.go b/tsc/pkg/fourslash/tests/quickInfoInheritedLinkTag_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoInheritedLinkTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoInheritedLinkTag_test.go index e5634974ae42b..2d038cc814e14 100644 --- a/tsc/internal/fourslash/tests/quickInfoInheritedLinkTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoInheritedLinkTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoInheritedLinkTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go index 5681313f35c12..92f4655b3c10d 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocAtBeforeSpace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocAtBeforeSpace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocBackticks_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocBackticks_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoJSDocBackticks_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocBackticks_test.go index 0bb565ea11794..e8f3c712b301f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocBackticks_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocBackticks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocBackticks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go index adafdbff9a205..60dd3a57666cd 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocCodefenceAtSign_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocCodefenceAtSign(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocFunctionNew_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocFunctionNew_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJSDocFunctionNew_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocFunctionNew_test.go index e226273de23bf..2e33121060e49 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocFunctionNew_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocFunctionNew_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocFunctionNew(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocFunctionThis_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocFunctionThis_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoJSDocFunctionThis_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocFunctionThis_test.go index 45a9a8edb4eab..6327022655a3e 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocFunctionThis_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocFunctionThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocFunctionThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocLinkBackticks_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocLinkBackticks_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoJSDocLinkBackticks_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocLinkBackticks_test.go index 44798dd1deabc..e79e6af05c1ad 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocLinkBackticks_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocLinkBackticks_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocLinkBackticks(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go index 5cae97c2df3d0..12f8747b1fbb2 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocParamWithInvalidTagInComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocParamWithInvalidTagInComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go index de9fbf2df662f..162034d00ba88 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocParamWithTrailingAtBeforeCommentEnd_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocParamWithTrailingAtBeforeCommentEnd(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocTags_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocTags_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoJSDocTags_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocTags_test.go index de6a1c85b66a1..316d5fbcdc947 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocTags_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocTags_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocTags(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go b/tsc/pkg/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go similarity index 95% rename from tsc/internal/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go index 05f99df439a0f..99a607545e17d 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSDocTypedefPropertyWithInvalidTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSDocTypedefPropertyWithInvalidTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJSExport_test.go b/tsc/pkg/fourslash/tests/quickInfoJSExport_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJSExport_test.go rename to tsc/pkg/fourslash/tests/quickInfoJSExport_test.go index 253ae51d90df1..e4f31c8a55e18 100644 --- a/tsc/internal/fourslash/tests/quickInfoJSExport_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJSExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJSExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocAlias_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoJsDocAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocAlias_test.go index baff1d302b2a3..37fbcd1a03b87 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go index bbd1553587a16..6fdfffc7c0354 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetterNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocGetterSetterNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocGetterSetter_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetter_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoJsDocGetterSetter_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetter_test.go index 760f793670284..eac9f0bf98b95 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocGetterSetter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocGetterSetter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocGetterSetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocInheritage_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocInheritage_test.go similarity index 95% rename from tsc/internal/fourslash/tests/quickInfoJsDocInheritage_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocInheritage_test.go index 43817e5bb1e5f..25b486a932269 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocInheritage_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocInheritage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocInheritage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go index 36d2e204b38f4..dc4afce0a52fe 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocNonDiscriminatedUnionSharedProp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocNonDiscriminatedUnionSharedProp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags10_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags10_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags10_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags10_test.go index c1855740bbb46..f1dac910bdf3f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags10_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags11_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags11_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags11_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags11_test.go index 84af4cabb91e7..ecb28780734bd 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags11_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags12_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags12_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags12_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags12_test.go index ba416ea0cfaed..4074e9a286f26 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags12_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags13VS_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags13VS_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags13VS_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags13VS_test.go index 0d107d5058c92..0b40e4b0d1dfd 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags13VS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags13VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags13VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags13_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags13_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags13_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags13_test.go index 7062e4a5a3177..944459588d18f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags13_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags14_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags14_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags14_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags14_test.go index 3dfb04f960ebd..ce7726912a732 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags14_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags14_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags15_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags15_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags15_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags15_test.go index 89d7c2e8673a1..fa2456c458596 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags15_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags15_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags16_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags16_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags16_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags16_test.go index 0fd53766e42a8..37d4d7bd4175d 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags16_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags16_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags16(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags1_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags1_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags1_test.go index 132fd27b75be4..4d744d2a2e0fb 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags2_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags2_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags2_test.go index 1a27b431153bc..9d0ad0f007f64 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags3_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags3_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags3_test.go index 4f394268f8fcd..30930cce7d9b7 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags4_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags4_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags4_test.go index 65c19bd6a30ff..40837d070d2a9 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags5_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags5_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags5_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags5_test.go index debc3f9d0acb0..f53ddb4f8961a 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags6_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags6_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags6_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags6_test.go index eaf7239b531a5..6c5bd341c3776 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags6_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags7_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags7_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags7_test.go index bfd5ee92484f3..651d9800e5e47 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags7_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags8_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags8_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags8_test.go index 1f8281be99f0d..1373a1878bf0f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags8_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTags9_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTags9_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoJsDocTags9_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTags9_test.go index 56d2d5e499287..47af4895d2e5c 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTags9_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTags9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTags9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTagsCallback_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsCallback_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoJsDocTagsCallback_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTagsCallback_test.go index 028a34c86ebdf..6ded6c2322188 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTagsCallback_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsCallback_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTagsCallback(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go index 42d080c23b448..73019b98a78aa 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTagsFunctionOverload01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go index 8f39e7d6dcbc6..9980948f7bb6f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTagsFunctionOverload03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go index d6c94bd4a4a03..bd911acf38bd8 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsFunctionOverload05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTagsFunctionOverload05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTagsTypedef_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsTypedef_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsDocTagsTypedef_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTagsTypedef_test.go index 5ba3e3954cb76..7d089fb7cbfbb 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTagsTypedef_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTagsTypedef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTagsTypedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go index e40f1ad0100d8..2eae9761ec2d6 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTextFormatting1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1_test.go index bd39a26833444..cd24936450dac 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocTextFormatting1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocTextFormatting1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocTextFormatting1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDocThisTag_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDocThisTag_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoJsDocThisTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDocThisTag_test.go index d5fd7d4b67991..87a3012576de2 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDocThisTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDocThisTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDocThisTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsDoc_test.go b/tsc/pkg/fourslash/tests/quickInfoJsDoc_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoJsDoc_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsDoc_test.go index 8664fc86fbf1c..7d887513bef5c 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go b/tsc/pkg/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go index a412da170f41e..d7255dcc3691b 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsPropertyAssignedAfterMethodDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsPropertyAssignedAfterMethodDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsdocEnum_test.go b/tsc/pkg/fourslash/tests/quickInfoJsdocEnum_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoJsdocEnum_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsdocEnum_test.go index 9918b3151ba7c..bc36c1861f64f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsdocEnum_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsdocEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsdocEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go b/tsc/pkg/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go index 8a2aa8133c498..203a822a8fb7f 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsdocTypedefMissingType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsdocTypedefMissingType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go b/tsc/pkg/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go rename to tsc/pkg/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go index 17a0e0b27a421..a930da3f07476 100644 --- a/tsc/internal/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoJsxNamespacedIntrinsic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoJsxNamespacedIntrinsic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink10_test.go b/tsc/pkg/fourslash/tests/quickInfoLink10_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoLink10_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink10_test.go index 74b4c450c28d5..7d33f7764518f 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink10_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink11_test.go b/tsc/pkg/fourslash/tests/quickInfoLink11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoLink11_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink11_test.go index 2dd7a5c704d2e..462a90e52dda4 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink11_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink2_test.go b/tsc/pkg/fourslash/tests/quickInfoLink2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoLink2_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink2_test.go index 8f43e8c31ba83..f7ec741571caf 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink3_test.go b/tsc/pkg/fourslash/tests/quickInfoLink3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoLink3_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink3_test.go index 0627401ea230f..28e01c2b3de6d 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink4_test.go b/tsc/pkg/fourslash/tests/quickInfoLink4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoLink4_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink4_test.go index 8d8d273c5fba5..77537cf127074 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink5_test.go b/tsc/pkg/fourslash/tests/quickInfoLink5_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoLink5_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink5_test.go index b786a71ac4b85..a092be35bd218 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink6_test.go b/tsc/pkg/fourslash/tests/quickInfoLink6_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoLink6_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink6_test.go index 42ae77611b19e..8102b7d720dde 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink6_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink7_test.go b/tsc/pkg/fourslash/tests/quickInfoLink7_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoLink7_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink7_test.go index e879cc9b5a79e..16b072e7660d3 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink7_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink8_test.go b/tsc/pkg/fourslash/tests/quickInfoLink8_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoLink8_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink8_test.go index e2e26168bbe4b..24621c46872ac 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink8_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLink9_test.go b/tsc/pkg/fourslash/tests/quickInfoLink9_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoLink9_test.go rename to tsc/pkg/fourslash/tests/quickInfoLink9_test.go index 4476a30a52279..7c55d6aeaa86d 100644 --- a/tsc/internal/fourslash/tests/quickInfoLink9_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLink9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLink9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoLinkCodePlain_test.go b/tsc/pkg/fourslash/tests/quickInfoLinkCodePlain_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoLinkCodePlain_test.go rename to tsc/pkg/fourslash/tests/quickInfoLinkCodePlain_test.go index 41ec308c53bf6..73a740d14ed26 100644 --- a/tsc/internal/fourslash/tests/quickInfoLinkCodePlain_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoLinkCodePlain_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoLinkCodePlain(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMappedSpreadTypes_test.go b/tsc/pkg/fourslash/tests/quickInfoMappedSpreadTypes_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoMappedSpreadTypes_test.go rename to tsc/pkg/fourslash/tests/quickInfoMappedSpreadTypes_test.go index 7a7cf6bf3e527..62003ae9f8ccf 100644 --- a/tsc/internal/fourslash/tests/quickInfoMappedSpreadTypes_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMappedSpreadTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMappedSpreadTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMappedTypeMethods_test.go b/tsc/pkg/fourslash/tests/quickInfoMappedTypeMethods_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoMappedTypeMethods_test.go rename to tsc/pkg/fourslash/tests/quickInfoMappedTypeMethods_test.go index 1f7fadcbbfb57..5a7776a88c5b8 100644 --- a/tsc/internal/fourslash/tests/quickInfoMappedTypeMethods_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMappedTypeMethods_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMappedTypeMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go b/tsc/pkg/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go rename to tsc/pkg/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go index 86d9bb5abba67..214e7fa8ad1d8 100644 --- a/tsc/internal/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMappedTypeRecursiveInference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMappedTypeRecursiveInference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMappedType_test.go b/tsc/pkg/fourslash/tests/quickInfoMappedType_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoMappedType_test.go rename to tsc/pkg/fourslash/tests/quickInfoMappedType_test.go index 251e47328aeb7..b0411c1246f12 100644 --- a/tsc/internal/fourslash/tests/quickInfoMappedType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMeaning_test.go b/tsc/pkg/fourslash/tests/quickInfoMeaning_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickInfoMeaning_test.go rename to tsc/pkg/fourslash/tests/quickInfoMeaning_test.go index 764c60273b6f7..4fe4691257b9e 100644 --- a/tsc/internal/fourslash/tests/quickInfoMeaning_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMeaning_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMeaning(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoMergedAlias_test.go b/tsc/pkg/fourslash/tests/quickInfoMergedAlias_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoMergedAlias_test.go rename to tsc/pkg/fourslash/tests/quickInfoMergedAlias_test.go index 5aa434d2fc73e..aa147abcfca2a 100644 --- a/tsc/internal/fourslash/tests/quickInfoMergedAlias_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoMergedAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoMergedAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoModuleVariables_test.go b/tsc/pkg/fourslash/tests/quickInfoModuleVariables_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoModuleVariables_test.go rename to tsc/pkg/fourslash/tests/quickInfoModuleVariables_test.go index 4003ee7a652af..1ab7a234072a8 100644 --- a/tsc/internal/fourslash/tests/quickInfoModuleVariables_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoModuleVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoModuleVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoNamedTupleMembers_test.go b/tsc/pkg/fourslash/tests/quickInfoNamedTupleMembers_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoNamedTupleMembers_test.go rename to tsc/pkg/fourslash/tests/quickInfoNamedTupleMembers_test.go index d6471ae711658..d1a82043492ea 100644 --- a/tsc/internal/fourslash/tests/quickInfoNamedTupleMembers_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoNamedTupleMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoNamedTupleMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go b/tsc/pkg/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go rename to tsc/pkg/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go index 52ebd393f852c..d479427a691fb 100644 --- a/tsc/internal/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoNarrowedTypeOfAliasSymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoNarrowedTypeOfAliasSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go b/tsc/pkg/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go rename to tsc/pkg/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go index 1a0f16682994b..8c714a8065d25 100644 --- a/tsc/internal/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoNestedExportEqualExportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoNestedExportEqualExportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoNestedGenericCalls_test.go b/tsc/pkg/fourslash/tests/quickInfoNestedGenericCalls_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoNestedGenericCalls_test.go rename to tsc/pkg/fourslash/tests/quickInfoNestedGenericCalls_test.go index 5b24564185ea8..fcbe40e04e0ae 100644 --- a/tsc/internal/fourslash/tests/quickInfoNestedGenericCalls_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoNestedGenericCalls_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoNestedGenericCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoObjectTypeMultiline_test.go b/tsc/pkg/fourslash/tests/quickInfoObjectTypeMultiline_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoObjectTypeMultiline_test.go rename to tsc/pkg/fourslash/tests/quickInfoObjectTypeMultiline_test.go index f903815dfa995..8376366a4f5b2 100644 --- a/tsc/internal/fourslash/tests/quickInfoObjectTypeMultiline_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoObjectTypeMultiline_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoObjectTypeMultiline(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go b/tsc/pkg/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go index 4fde159d89319..6f391a9f3ce13 100644 --- a/tsc/internal/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOfGenericTypeAssertions1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOfGenericTypeAssertions1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go b/tsc/pkg/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go rename to tsc/pkg/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go index f83713d73f023..d48ed086f4968 100644 --- a/tsc/internal/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOfLablledForStatementIterator_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOfLablledForStatementIterator(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOfStringPropertyNames1_test.go b/tsc/pkg/fourslash/tests/quickInfoOfStringPropertyNames1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOfStringPropertyNames1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOfStringPropertyNames1_test.go index 75b54e5791855..3d1f2835857a1 100644 --- a/tsc/internal/fourslash/tests/quickInfoOfStringPropertyNames1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOfStringPropertyNames1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOfStringPropertyNames1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go index e0664a98ede4d..a0903eb4acf60 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnArgumentsInsideFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnArgumentsInsideFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnCatchVariable_test.go b/tsc/pkg/fourslash/tests/quickInfoOnCatchVariable_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickInfoOnCatchVariable_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnCatchVariable_test.go index a2111b61eb0f0..1bb957f5e44f3 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnCatchVariable_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnCatchVariable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnCatchVariable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnCircularTypes_test.go b/tsc/pkg/fourslash/tests/quickInfoOnCircularTypes_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoOnCircularTypes_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnCircularTypes_test.go index 6201916a93078..d0bd61062bdda 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnCircularTypes_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnCircularTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnCircularTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go b/tsc/pkg/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go index 1b13eb8d540a8..c08e0cf496ba1 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnClassMergedWithFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnClassMergedWithFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnClosingJsx_test.go b/tsc/pkg/fourslash/tests/quickInfoOnClosingJsx_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoOnClosingJsx_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnClosingJsx_test.go index 763e1f44aec21..b8b1f27f126f3 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnClosingJsx_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnClosingJsx_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnClosingJsx(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go b/tsc/pkg/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go index dbdcf1bcbbd2f..1c0de313b540c 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnConstructorWithGenericParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnConstructorWithGenericParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go index bc6ea52dc38d5..6588a03606887 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnElementAccessInWriteLocation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go index 02f423a6f0f9e..13851274f2130 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnElementAccessInWriteLocation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go index 51bfc44ef7a41..8d9b80ac119b8 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnElementAccessInWriteLocation3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go index a684e0bffc7ab..5c5380cc0aa76 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnElementAccessInWriteLocation4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go index 8c86666e5fc44..62c04bea678e4 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnElementAccessInWriteLocation5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnElementAccessInWriteLocation5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnErrorTypes1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnErrorTypes1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoOnErrorTypes1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnErrorTypes1_test.go index 115ddc7ab35a3..246c3792085b7 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnErrorTypes1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnErrorTypes1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnErrorTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go index 439c428207ebd..75f2c5b1b12fb 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnExpandoLikePropertyWithSetterDeclarationJs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go b/tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go index d4d1a7bfc2240..7dfbd44dc1624 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnExpandoLikePropertyWithSetterDeclarationJs2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnExpandoLikePropertyWithSetterDeclarationJs2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go index 08ebedcc9c855..9b2c6e08e5a09 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnFunctionPropertyReturnedFromGenericFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go index 80340241576c7..0cb1e05fbabe4 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnFunctionPropertyReturnedFromGenericFunction2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go index 113adb6866643..b62ce1831b6a3 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnFunctionPropertyReturnedFromGenericFunction3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnFunctionPropertyReturnedFromGenericFunction3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnGenericClass_test.go b/tsc/pkg/fourslash/tests/quickInfoOnGenericClass_test.go similarity index 76% rename from tsc/internal/fourslash/tests/quickInfoOnGenericClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnGenericClass_test.go index 414a5e7f245be..411e0aa70307d 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnGenericClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnGenericClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnGenericClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go index a5fab46665397..54fbb5f777ebf 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnGenericWithConstraints1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnGenericWithConstraints1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnInternalAliases_test.go b/tsc/pkg/fourslash/tests/quickInfoOnInternalAliases_test.go similarity index 94% rename from tsc/internal/fourslash/tests/quickInfoOnInternalAliases_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnInternalAliases_test.go index f1cece3575bf8..6495c6b36e6c8 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnInternalAliases_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnInternalAliases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnInternalAliases(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go b/tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go index 0c68399c7e27b..7f56bb52dc1ba 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnJsxIntrinsicDeclaredUsingCatchCallIndexSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go b/tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go index 027b7897f2018..2a2db8dd070d5 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnJsxIntrinsicDeclaredUsingTemplateLiteralTypeSignatures(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go index 2c6c53bb6acaf..d43e4d135e96b 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedNameWithDoc1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnJsxNamespacedNameWithDoc1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedName_test.go b/tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedName_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedName_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedName_test.go index 7f19345129aec..9a8aea86f7461 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnJsxNamespacedName_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnJsxNamespacedName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnJsxNamespacedName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go b/tsc/pkg/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go index 81e826e9974a6..bf5ee6770825a 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnMergedInterfacesWithIncrementalEdits_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnMergedInterfacesWithIncrementalEdits(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnMergedInterfaces_test.go b/tsc/pkg/fourslash/tests/quickInfoOnMergedInterfaces_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOnMergedInterfaces_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnMergedInterfaces_test.go index 8abfa48e5c889..633c9f8a59322 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnMergedInterfaces_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnMergedInterfaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnMergedInterfaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnMergedModule_test.go b/tsc/pkg/fourslash/tests/quickInfoOnMergedModule_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOnMergedModule_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnMergedModule_test.go index 409a8b152a16d..78c2ac4f41876 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnMergedModule_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnMergedModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnMergedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go b/tsc/pkg/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go index f4544cf89126e..29f5d4b828a88 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnMethodOfImportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnMethodOfImportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go b/tsc/pkg/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go similarity index 95% rename from tsc/internal/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go index 9c5d45683aaf6..4e0de06eb31fc 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnNarrowedTypeInModule_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnNarrowedTypeInModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnNarrowedType_test.go b/tsc/pkg/fourslash/tests/quickInfoOnNarrowedType_test.go similarity index 94% rename from tsc/internal/fourslash/tests/quickInfoOnNarrowedType_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnNarrowedType_test.go index 12da2a2617097..af284c7a11b3b 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnNarrowedType_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnNarrowedType_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnNarrowedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnNewKeyword01_test.go b/tsc/pkg/fourslash/tests/quickInfoOnNewKeyword01_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOnNewKeyword01_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnNewKeyword01_test.go index 541a954dcaf85..73e2bd403c7a4 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnNewKeyword01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnNewKeyword01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnNewKeyword01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go index 05427dc0c72ea..e0eee3b57d427 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithAccessors_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnObjectLiteralWithAccessors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go index 0b7406bc98617..9bff5ee6ee175 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlyGetter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnObjectLiteralWithOnlyGetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go index c061b76a04035..01354f1153bd3 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnObjectLiteralWithOnlySetter_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnObjectLiteralWithOnlySetter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnParameterProperties_test.go b/tsc/pkg/fourslash/tests/quickInfoOnParameterProperties_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoOnParameterProperties_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnParameterProperties_test.go index 1ca2b0b6a42a4..1cf6cb1f22aac 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnParameterProperties_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnParameterProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnParameterProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go index ab77043334b27..501dce3cba18b 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPrivateConstructorCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPrivateConstructorCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go index 036546ca3f5b9..2f3cfb58af0e8 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropDeclaredUsingIndexSignatureOnInterfaceWithBase(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go index 7540337071507..12e9f145868f5 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropertyAccessInWriteLocation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go index 15211508e58c5..272a0bb95fa6e 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropertyAccessInWriteLocation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go index cb84bbb1f583c..ac608bb44c6af 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropertyAccessInWriteLocation3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go index 830a0469f696d..9c9ef44c2b0b0 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropertyAccessInWriteLocation4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go index 3d735721a7ff2..f10a29d4ceb27 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnPropertyAccessInWriteLocation5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnPropertyAccessInWriteLocation5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go b/tsc/pkg/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go index 6c7f114bdd186..a951c8686b371 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnProtectedConstructorCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnProtectedConstructorCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnThis2_test.go b/tsc/pkg/fourslash/tests/quickInfoOnThis2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoOnThis2_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnThis2_test.go index fc0c9f0a650f9..bd3298d52d2a1 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnThis2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnThis2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnThis2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnThis3_test.go b/tsc/pkg/fourslash/tests/quickInfoOnThis3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoOnThis3_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnThis3_test.go index 70f3538128cb8..a6b553ae5bed3 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnThis3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnThis3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnThis3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnThis4_test.go b/tsc/pkg/fourslash/tests/quickInfoOnThis4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOnThis4_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnThis4_test.go index b12bd420d935f..72643f76bd8eb 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnThis4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnThis4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnThis4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnThis5_test.go b/tsc/pkg/fourslash/tests/quickInfoOnThis5_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoOnThis5_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnThis5_test.go index 97884aaeb8cf7..0e32ec9789f88 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnThis5_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnThis5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnThis5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnThis_test.go b/tsc/pkg/fourslash/tests/quickInfoOnThis_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickInfoOnThis_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnThis_test.go index 3298e77928a45..8c4bb9e5d8022 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnThis_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go b/tsc/pkg/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go index 6cb688608fce3..97836ab9803fe 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnUnResolvedBaseConstructorSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnUnResolvedBaseConstructorSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnUndefined_test.go b/tsc/pkg/fourslash/tests/quickInfoOnUndefined_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoOnUndefined_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnUndefined_test.go index 2eea58ec60b31..8c344229d35e7 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnUndefined_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnUndefined_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnUndefined(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go b/tsc/pkg/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go index 4cf2b23ef1c5f..e32a8c1d6b59c 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnUnionPropertiesWithIdenticalJSDocComments01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnUnionPropertiesWithIdenticalJSDocComments01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go b/tsc/pkg/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go index 18d136cae4fd1..33a8ab6143c15 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnValueSymbolWithoutExportWithSameNameExportSymbol(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoOnVarInArrowExpression_test.go b/tsc/pkg/fourslash/tests/quickInfoOnVarInArrowExpression_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoOnVarInArrowExpression_test.go rename to tsc/pkg/fourslash/tests/quickInfoOnVarInArrowExpression_test.go index 63d559a25fefb..45415ee1422e5 100644 --- a/tsc/internal/fourslash/tests/quickInfoOnVarInArrowExpression_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoOnVarInArrowExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoOnVarInArrowExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoParameter_skipThisParameter_test.go b/tsc/pkg/fourslash/tests/quickInfoParameter_skipThisParameter_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoParameter_skipThisParameter_test.go rename to tsc/pkg/fourslash/tests/quickInfoParameter_skipThisParameter_test.go index 185e52265f514..29c1292e92145 100644 --- a/tsc/internal/fourslash/tests/quickInfoParameter_skipThisParameter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoParameter_skipThisParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoParameter_skipThisParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go b/tsc/pkg/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go rename to tsc/pkg/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go index 714ac7418735d..93890a354f3a1 100644 --- a/tsc/internal/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoPrivateIdentifierInTypeReferenceNoCrash1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoPrivateIdentifierInTypeReferenceNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoPropertyTag_test.go b/tsc/pkg/fourslash/tests/quickInfoPropertyTag_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoPropertyTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoPropertyTag_test.go index 37040cb3040ef..0e941f2206293 100644 --- a/tsc/internal/fourslash/tests/quickInfoPropertyTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoPropertyTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoPropertyTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go b/tsc/pkg/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go index 55870ff67ddac..c92bb365eae87 100644 --- a/tsc/internal/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoRecursiveObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoRecursiveObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go b/tsc/pkg/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go rename to tsc/pkg/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go index 76ec97843acab..b06e518b2407e 100644 --- a/tsc/internal/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoRootSymbolJSDocAggregation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoRootSymbolJSDocAggregation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go b/tsc/pkg/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go rename to tsc/pkg/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go index a5e75062d7154..1d3389b52570d 100644 --- a/tsc/internal/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSalsaMethodsOnAssignedFunctionExpressions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSalsaMethodsOnAssignedFunctionExpressions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSatisfiesTag_test.go b/tsc/pkg/fourslash/tests/quickInfoSatisfiesTag_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoSatisfiesTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoSatisfiesTag_test.go index 6ed082e5ad258..7adb441f608a6 100644 --- a/tsc/internal/fourslash/tests/quickInfoSatisfiesTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSatisfiesTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSatisfiesTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoShowsGenericSpecialization_test.go b/tsc/pkg/fourslash/tests/quickInfoShowsGenericSpecialization_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoShowsGenericSpecialization_test.go rename to tsc/pkg/fourslash/tests/quickInfoShowsGenericSpecialization_test.go index 56d802500fc4a..2552f240664ee 100644 --- a/tsc/internal/fourslash/tests/quickInfoShowsGenericSpecialization_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoShowsGenericSpecialization_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoShowsGenericSpecialization(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go index 6d00f5440e05f..06dec5d52686f 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureOptionalParameterFromUnion1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureOptionalParameterFromUnion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go index 74a444fc27295..b9dd76193a0df 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureRestParameterFromUnion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go index 3253357f4612d..e1d2217a24ee9 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureRestParameterFromUnion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go index 828903f947c24..b8f1ab15c6841 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureRestParameterFromUnion3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go index 537b22560dfd4..7b15fc2d21c4e 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureRestParameterFromUnion4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureRestParameterFromUnion4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go b/tsc/pkg/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go rename to tsc/pkg/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go index 0117365dfba83..a6bdbc7306ac0 100644 --- a/tsc/internal/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSignatureWithTrailingComma_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSignatureWithTrailingComma(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go index 2393c10dae09d..3163680abd627 100644 --- a/tsc/internal/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoSpecialPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoSpecialPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go b/tsc/pkg/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go index a87e0e6c30652..b6612b1fa76ea 100644 --- a/tsc/internal/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoStaticPrototypePropertyOnClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoStaticPrototypePropertyOnClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTemplateTag_test.go b/tsc/pkg/fourslash/tests/quickInfoTemplateTag_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoTemplateTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoTemplateTag_test.go index 008826839e05e..4120bd07f4c7d 100644 --- a/tsc/internal/fourslash/tests/quickInfoTemplateTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTemplateTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTemplateTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoThrowsTag_test.go b/tsc/pkg/fourslash/tests/quickInfoThrowsTag_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoThrowsTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoThrowsTag_test.go index 66c8292ed6cfc..a3cbe8a350e93 100644 --- a/tsc/internal/fourslash/tests/quickInfoThrowsTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoThrowsTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoThrowsTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go b/tsc/pkg/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go index b8020ac3ed1fa..63ccf9c8540b6 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypeAliasDefinedInDifferentFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypeAliasDefinedInDifferentFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go b/tsc/pkg/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go index f9d5fadf588b1..ec152d7a9dde7 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypeArgumentInferenceWithMethodWithoutBody_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypeArgumentInferenceWithMethodWithoutBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypeError_test.go b/tsc/pkg/fourslash/tests/quickInfoTypeError_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoTypeError_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypeError_test.go index 4825cd956c7de..c57faeef38a34 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypeError_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypeError_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypeError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypeOfThisInStatics_test.go b/tsc/pkg/fourslash/tests/quickInfoTypeOfThisInStatics_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoTypeOfThisInStatics_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypeOfThisInStatics_test.go index 5a82a1a541be9..80b4de4ed5bb6 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypeOfThisInStatics_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypeOfThisInStatics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypeOfThisInStatics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go b/tsc/pkg/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go index 3ccfcac33e99a..2a6860b2e5d67 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypeOnlyNamespaceAndClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypeOnlyNamespaceAndClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go b/tsc/pkg/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go index 3cad9fd6a314c..8dabd19d5eaa5 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypedGenericPrototypeMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypedGenericPrototypeMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoTypedefTag_test.go b/tsc/pkg/fourslash/tests/quickInfoTypedefTag_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoTypedefTag_test.go rename to tsc/pkg/fourslash/tests/quickInfoTypedefTag_test.go index c454efd705e8c..385aecf89f6bb 100644 --- a/tsc/internal/fourslash/tests/quickInfoTypedefTag_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoTypedefTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoTypedefTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoUnionOfNamespaces_test.go b/tsc/pkg/fourslash/tests/quickInfoUnionOfNamespaces_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickInfoUnionOfNamespaces_test.go rename to tsc/pkg/fourslash/tests/quickInfoUnionOfNamespaces_test.go index 25684035c6506..ba3dc5a85c8eb 100644 --- a/tsc/internal/fourslash/tests/quickInfoUnionOfNamespaces_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoUnionOfNamespaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoUnionOfNamespaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoUnion_discriminated_test.go b/tsc/pkg/fourslash/tests/quickInfoUnion_discriminated_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickInfoUnion_discriminated_test.go rename to tsc/pkg/fourslash/tests/quickInfoUnion_discriminated_test.go index 8d37b38eca9dc..544e2ab9c26f1 100644 --- a/tsc/internal/fourslash/tests/quickInfoUnion_discriminated_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoUnion_discriminated_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoUnion_discriminated(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go b/tsc/pkg/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go similarity index 78% rename from tsc/internal/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go rename to tsc/pkg/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go index 23ae65015754c..3060eb17366b1 100644 --- a/tsc/internal/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoUniqueSymbolJsDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoUniqueSymbolJsDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoUntypedModuleImport_test.go b/tsc/pkg/fourslash/tests/quickInfoUntypedModuleImport_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickInfoUntypedModuleImport_test.go rename to tsc/pkg/fourslash/tests/quickInfoUntypedModuleImport_test.go index 13cd64f4064c6..1086149c14aa1 100644 --- a/tsc/internal/fourslash/tests/quickInfoUntypedModuleImport_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoUntypedModuleImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoUntypedModuleImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go b/tsc/pkg/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go rename to tsc/pkg/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go index 9ed0f8476377c..fcc6d3efd9cc5 100644 --- a/tsc/internal/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoVerbosityNamespaceBindingWithDefaultExportedFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoWidenedTypes_test.go b/tsc/pkg/fourslash/tests/quickInfoWidenedTypes_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickInfoWidenedTypes_test.go rename to tsc/pkg/fourslash/tests/quickInfoWidenedTypes_test.go index 84215a131fad2..0de3ea314cfe0 100644 --- a/tsc/internal/fourslash/tests/quickInfoWidenedTypes_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoWidenedTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoWidenedTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go b/tsc/pkg/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go rename to tsc/pkg/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go index 14e5ab3ea3cbc..3fe460483951c 100644 --- a/tsc/internal/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go +++ b/tsc/pkg/fourslash/tests/quickInfoWithNestedDestructuredParameterInLambda_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoWithNestedDestructuredParameterInLambda(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go b/tsc/pkg/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go rename to tsc/pkg/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go index d3ab27a75045c..a53351f44a7ce 100644 --- a/tsc/internal/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go +++ b/tsc/pkg/fourslash/tests/quickInfo_errorSignatureFillsInTypeParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfo_errorSignatureFillsInTypeParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInfo_notInsideComment_test.go b/tsc/pkg/fourslash/tests/quickInfo_notInsideComment_test.go similarity index 75% rename from tsc/internal/fourslash/tests/quickInfo_notInsideComment_test.go rename to tsc/pkg/fourslash/tests/quickInfo_notInsideComment_test.go index 5be793d5f3a70..4fe296a59c9b0 100644 --- a/tsc/internal/fourslash/tests/quickInfo_notInsideComment_test.go +++ b/tsc/pkg/fourslash/tests/quickInfo_notInsideComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfo_notInsideComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go b/tsc/pkg/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go rename to tsc/pkg/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go index 9bcd974215403..ffe0c5ad7b00c 100644 --- a/tsc/internal/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go +++ b/tsc/pkg/fourslash/tests/quickInforForSucessiveInferencesIsNotAny_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInforForSucessiveInferencesIsNotAny(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go b/tsc/pkg/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go rename to tsc/pkg/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go index 17f8ec7e84f85..2dcd9a685d914 100644 --- a/tsc/internal/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go +++ b/tsc/pkg/fourslash/tests/quickfixImplementInterfaceUnreachableTypeUsesRelativeImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickfixImplementInterfaceUnreachableTypeUsesRelativeImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfo01_test.go b/tsc/pkg/fourslash/tests/quickinfo01_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickinfo01_test.go rename to tsc/pkg/fourslash/tests/quickinfo01_test.go index c7aa9b9f7559c..8fba42ce88b68 100644 --- a/tsc/internal/fourslash/tests/quickinfo01_test.go +++ b/tsc/pkg/fourslash/tests/quickinfo01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfo01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go b/tsc/pkg/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go rename to tsc/pkg/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go index f8dd425f2c059..11129d6e5c058 100644 --- a/tsc/internal/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoExpressionTypeNotChangedViaDeletion_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoExpressionTypeNotChangedViaDeletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go b/tsc/pkg/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go rename to tsc/pkg/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go index 11e4248cb73aa..4dfa9fcd52317 100644 --- a/tsc/internal/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoForNamespaceMergeWithClassConstrainedToSelf_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoForNamespaceMergeWithClassConstrainedToSelf(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoForUnionProperty_test.go b/tsc/pkg/fourslash/tests/quickinfoForUnionProperty_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoForUnionProperty_test.go rename to tsc/pkg/fourslash/tests/quickinfoForUnionProperty_test.go index 83f8dc83e9f30..625a299d60a30 100644 --- a/tsc/internal/fourslash/tests/quickinfoForUnionProperty_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoForUnionProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoForUnionProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosity1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosity1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickinfoVerbosity1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosity1_test.go index 295dad28247fa..4015bac8ce0a7 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosity1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosity1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosity1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosity2_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosity2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickinfoVerbosity2_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosity2_test.go index 455a76576a20d..02e96ec7cfcdd 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosity2_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosity2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosity2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosity3_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosity3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/quickinfoVerbosity3_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosity3_test.go index c20dadbed326f..3fbc49c587291 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosity3_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosity3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosity3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityAbstractClass_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityAbstractClass_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickinfoVerbosityAbstractClass_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityAbstractClass_test.go index c3b5214c4c62e..695c683b16574 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityAbstractClass_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityAbstractClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests expansion of an abstract class. diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityClass1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityClass1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickinfoVerbosityClass1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityClass1_test.go index 1795a6cebb6d2..acf95fdb206ec 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityClass1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityClass1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityClass1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityClass2_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityClass2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickinfoVerbosityClass2_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityClass2_test.go index fe3fb26d13b1c..a2b7933974caa 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityClass2_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityClass2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityClass2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go index 5543a279ad764..ab270e0c68175 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityClassInterfaceMerge_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests expansion of a class+interface merge (interface should be filtered when hovering value). diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go index 464484093e7b8..4db8b9e8a62e2 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityClassWithMixinBase_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityClassWithMixinBase(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityConditionalType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityConditionalType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityConditionalType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityConditionalType_test.go index c3829ddde8120..59a5957275847 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityConditionalType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityConditionalType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityConditionalType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityConstEnum_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityConstEnum_test.go similarity index 83% rename from tsc/internal/fourslash/tests/quickinfoVerbosityConstEnum_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityConstEnum_test.go index 6758bcfc0bcb1..e267b58eaf1f6 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityConstEnum_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityConstEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests expansion of a const enum with string initializers. diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go index 0a25de873eb43..4f4ea7be566d2 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityConstMergedWithNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests namespace expansion where a const variable is merged with a namespace (function+namespace pattern). diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go similarity index 77% rename from tsc/internal/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go index b7f205ebdfd7b..9264aa3a6f020 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityEmptyEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityEmptyEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityEnum_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityEnum_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickinfoVerbosityEnum_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityEnum_test.go index 5d842ec298d74..4bf9c5cbacc44 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityEnum_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityEnum_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityEnum(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityFunction_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityFunction_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoVerbosityFunction_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityFunction_test.go index b47089cd93182..0889be6587c35 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityFunction_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityImport_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityImport_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickinfoVerbosityImport_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityImport_test.go index d60513fb28c54..945921f3994ca 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityImport_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go index 438702ed020df..bea6949aee46a 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityIncreaseDecrease_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityIncreaseDecrease(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexSignature_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexSignature_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickinfoVerbosityIndexSignature_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityIndexSignature_test.go index 1a09489e7b5ab..11e998fcfadfd 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexSignature_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityIndexSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityIndexType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityIndexType_test.go index d0c6f6d700802..5260c8bfac8d9 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityIndexType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go index b351d8f3521ff..a38b16d9d68b3 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityIndexedAccessType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityIndexedAccessType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityInterface1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterface1_test.go similarity index 93% rename from tsc/internal/fourslash/tests/quickinfoVerbosityInterface1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityInterface1_test.go index eb8f16382f228..2b64595070bd8 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityInterface1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterface1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityInterface1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityInterface2_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterface2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickinfoVerbosityInterface2_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityInterface2_test.go index ed2b14109e806..c78ff8f4da135 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityInterface2_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterface2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityInterface2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go index cef8a531933ae..35515a929fe24 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityInterfaceMemberOrdering_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests that expanded interface members are ordered correctly: diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityIntersection1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityIntersection1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoVerbosityIntersection1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityIntersection1_test.go index 6b20d5e31d792..1afc9318c39ad 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityIntersection1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityIntersection1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityIntersection1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go index bfb2f7d70c8b5..8d7927dbb8b29 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityJSDocNamespacedTypedef_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickInfoVerbosityJSDocNamespacedTypedef(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityJs_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityJs_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickinfoVerbosityJs_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityJs_test.go index e9186c0c09046..c498073738ce4 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityJs_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityJs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityLibType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityLibType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityLibType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityLibType_test.go index 14ba89a6b45e5..8ccc18f098818 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityLibType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityLibType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityLibType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityMappedType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityMappedType_test.go similarity index 87% rename from tsc/internal/fourslash/tests/quickinfoVerbosityMappedType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityMappedType_test.go index ee789cdcfcbff..ed39ee7e07eb6 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityMappedType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityMappedType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityMappedType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go index 538b18bd22fe1..c00217e04f732 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceAnonymousClassHeritage1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespaceAnonymousClassHeritage1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go index 1f0ff8f6b5c26..5ed22d0933547 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceClassHeritage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests namespace expansion with a nested class that extends another class. diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go index 53a4b8a0c4be4..074f525afed26 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceDefaultExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespaceDefaultExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go index b3f28ced00b66..962e91c170333 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceErrorClassHeritage1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespaceErrorClassHeritage1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go similarity index 74% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go index 51a5b068b964e..dbf3df9969831 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageCrash_test.go @@ -3,13 +3,13 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Regression test for crash when hovering with verbosity on a namespace // containing interfaces with generic heritage clauses. -// See: https://github.com/microsoft/TypeScript/tsc/pull/3454#issuecomment-4285883568 +// See: https://github.com/frida/TypeScript/tsc/pull/3454#issuecomment-4285883568 func TestQuickinfoVerbosityNamespaceInterfaceHeritageCrash(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go similarity index 81% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go index 008d9f9349c68..ee4ca95cfc8e3 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash_test.go @@ -3,15 +3,15 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Regression test for crash when hovering with verbosity on a namespace // containing an interface that extends an intersection type alias. // The base type resolves to an intersection (TypeFlagsIntersection), // causing Type.Target() to panic with "Unhandled case in Type.Target". -// See: https://github.com/microsoft/TypeScript/tsc/issues/3466 +// See: https://github.com/frida/TypeScript/tsc/issues/3466 func TestQuickinfoVerbosityNamespaceInterfaceHeritageIntersectionCrash(t *testing.T) { t.Parallel() defer testutil.RecoverAndFail(t, "Panic on fourslash test") diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go index 35cf856f3f651..553233b7501d0 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespaceMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go index 38f5b9ea2e057..37daadec51b88 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceMergedInterfaceHeritage_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespaceMergedInterfaceHeritage(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go index 8743649a3742b..cee0facc79236 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespacePrivateTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests namespace expansion where members reference private/internal types diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go index 0522cc74a86f2..1b1a7952055de 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespaceTypeAliases_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests namespace expansion with type aliases whose RHS is a complex mapped/conditional type. diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespace_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespace_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNamespace_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNamespace_test.go index 957653dc3d851..e5c217e8187d9 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNamespace_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go similarity index 82% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go index 626526ce01340..065bc5ef40793 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNestedNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests namespace expansion with a nested sub-namespace. diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go index 5f9ae6b3fa6e6..d82ba169a3f3c 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityNoErrorTruncation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityNoErrorTruncation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityObjectType1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityObjectType1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityObjectType1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityObjectType1_test.go index 5bad131191c16..edacfababf077 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityObjectType1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityObjectType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityObjectType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityRecursiveType_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityRecursiveType_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickinfoVerbosityRecursiveType_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityRecursiveType_test.go index 999e58183d7ff..12fc8fda9dbc3 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityRecursiveType_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityRecursiveType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityRecursiveType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go index ee5cb38763d9c..b4c9b4b592def 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbositySelfReferentialTypeArg_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Regression test for a stack overflow in checkTypeExpandability (issue #4380). diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityServer_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityServer_test.go similarity index 79% rename from tsc/internal/fourslash/tests/quickinfoVerbosityServer_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityServer_test.go index b402e98904e61..31eade52d306a 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityServer_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityServer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityServer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go index 0c648ade131f1..76adfa4475503 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityToplevelTruncation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go index e52f66e6ce227..791666aaa13e8 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityToplevelTruncation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityToplevelTruncation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityTruncation1_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/quickinfoVerbosityTruncation1_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation1_test.go index 03459d13b8038..5eb0fbb141ef7 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityTruncation1_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityTruncation1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityTruncation2_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation2_test.go similarity index 98% rename from tsc/internal/fourslash/tests/quickinfoVerbosityTruncation2_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation2_test.go index f2a2e4fe9b34d..0b9ed39b6dc47 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityTruncation2_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityTruncation2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityTruncation2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityTuple_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityTuple_test.go similarity index 88% rename from tsc/internal/fourslash/tests/quickinfoVerbosityTuple_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityTuple_test.go index 6f8d2791c86a2..06b202b304f94 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityTuple_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityTuple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityTuple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityTypeParameter_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityTypeParameter_test.go similarity index 84% rename from tsc/internal/fourslash/tests/quickinfoVerbosityTypeParameter_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityTypeParameter_test.go index 0e357a58dc441..ee86f5a95c420 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityTypeParameter_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityTypeParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityTypeParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoVerbosityTypeof_test.go b/tsc/pkg/fourslash/tests/quickinfoVerbosityTypeof_test.go similarity index 85% rename from tsc/internal/fourslash/tests/quickinfoVerbosityTypeof_test.go rename to tsc/pkg/fourslash/tests/quickinfoVerbosityTypeof_test.go index 6dbdc0f2bf39f..46716a8d1ba83 100644 --- a/tsc/internal/fourslash/tests/quickinfoVerbosityTypeof_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoVerbosityTypeof_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoVerbosityTypeof(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/quickinfoWrongComment_test.go b/tsc/pkg/fourslash/tests/quickinfoWrongComment_test.go similarity index 86% rename from tsc/internal/fourslash/tests/quickinfoWrongComment_test.go rename to tsc/pkg/fourslash/tests/quickinfoWrongComment_test.go index 19ef549e75be1..4f1d47ebd2980 100644 --- a/tsc/internal/fourslash/tests/quickinfoWrongComment_test.go +++ b/tsc/pkg/fourslash/tests/quickinfoWrongComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestQuickinfoWrongComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/rangeFormatInsideJSDocComment_test.go b/tsc/pkg/fourslash/tests/rangeFormatInsideJSDocComment_test.go similarity index 79% rename from tsc/internal/fourslash/tests/rangeFormatInsideJSDocComment_test.go rename to tsc/pkg/fourslash/tests/rangeFormatInsideJSDocComment_test.go index 1a08d3a1c88cf..32a43cd3f62e7 100644 --- a/tsc/internal/fourslash/tests/rangeFormatInsideJSDocComment_test.go +++ b/tsc/pkg/fourslash/tests/rangeFormatInsideJSDocComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRangeFormatStartingInsideJSDocComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/reallyLargeFile_test.go b/tsc/pkg/fourslash/tests/reallyLargeFile_test.go similarity index 99% rename from tsc/internal/fourslash/tests/reallyLargeFile_test.go rename to tsc/pkg/fourslash/tests/reallyLargeFile_test.go index c6190bc370b22..a39706e4458df 100644 --- a/tsc/internal/fourslash/tests/reallyLargeFile_test.go +++ b/tsc/pkg/fourslash/tests/reallyLargeFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReallyLargeFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/recursiveClassReference_test.go b/tsc/pkg/fourslash/tests/recursiveClassReference_test.go similarity index 79% rename from tsc/internal/fourslash/tests/recursiveClassReference_test.go rename to tsc/pkg/fourslash/tests/recursiveClassReference_test.go index de73eb8e69ded..7d685e4400ef1 100644 --- a/tsc/internal/fourslash/tests/recursiveClassReference_test.go +++ b/tsc/pkg/fourslash/tests/recursiveClassReference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRecursiveClassReference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/recursiveGenerics2_test.go b/tsc/pkg/fourslash/tests/recursiveGenerics2_test.go similarity index 77% rename from tsc/internal/fourslash/tests/recursiveGenerics2_test.go rename to tsc/pkg/fourslash/tests/recursiveGenerics2_test.go index a808ea1427ca1..a305af3b5a3ab 100644 --- a/tsc/internal/fourslash/tests/recursiveGenerics2_test.go +++ b/tsc/pkg/fourslash/tests/recursiveGenerics2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRecursiveGenerics2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/recursiveInternalModuleImport_test.go b/tsc/pkg/fourslash/tests/recursiveInternalModuleImport_test.go similarity index 78% rename from tsc/internal/fourslash/tests/recursiveInternalModuleImport_test.go rename to tsc/pkg/fourslash/tests/recursiveInternalModuleImport_test.go index 0a6f60fb7fb55..962939c9b7a90 100644 --- a/tsc/internal/fourslash/tests/recursiveInternalModuleImport_test.go +++ b/tsc/pkg/fourslash/tests/recursiveInternalModuleImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRecursiveInternalModuleImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/recursiveWrappedTypeParameters1_test.go b/tsc/pkg/fourslash/tests/recursiveWrappedTypeParameters1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/recursiveWrappedTypeParameters1_test.go rename to tsc/pkg/fourslash/tests/recursiveWrappedTypeParameters1_test.go index 581130a92a1da..e8dbdc4074f50 100644 --- a/tsc/internal/fourslash/tests/recursiveWrappedTypeParameters1_test.go +++ b/tsc/pkg/fourslash/tests/recursiveWrappedTypeParameters1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRecursiveWrappedTypeParameters1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/refactorConvertToEsModule_module_node12_test.go b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_node12_test.go similarity index 86% rename from tsc/internal/fourslash/tests/refactorConvertToEsModule_module_node12_test.go rename to tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_node12_test.go index 1c3162814ff30..70780f197cc15 100644 --- a/tsc/internal/fourslash/tests/refactorConvertToEsModule_module_node12_test.go +++ b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_node12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRefactorConvertToEsModule_module_node12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go similarity index 86% rename from tsc/internal/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go rename to tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go index 810ad1cae4eaf..7d3b9f5177b50 100644 --- a/tsc/internal/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go +++ b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_module_nodenext_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRefactorConvertToEsModule_module_nodenext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go similarity index 78% rename from tsc/internal/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go rename to tsc/pkg/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go index 26d6e1350d3b0..bd68cde4509a9 100644 --- a/tsc/internal/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go +++ b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_notAtTopLevel_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRefactorConvertToEsModule_notAtTopLevel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go similarity index 77% rename from tsc/internal/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go rename to tsc/pkg/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go index c3df55b3fc650..ddb6f6f28e079 100644 --- a/tsc/internal/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go +++ b/tsc/pkg/fourslash/tests/refactorConvertToEsModule_notInCommonjsProject_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRefactorConvertToEsModule_notInCommonjsProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referenceInParameterPropertyDeclaration_test.go b/tsc/pkg/fourslash/tests/referenceInParameterPropertyDeclaration_test.go similarity index 86% rename from tsc/internal/fourslash/tests/referenceInParameterPropertyDeclaration_test.go rename to tsc/pkg/fourslash/tests/referenceInParameterPropertyDeclaration_test.go index c70e1fb51f801..867d7b6e9678d 100644 --- a/tsc/internal/fourslash/tests/referenceInParameterPropertyDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/referenceInParameterPropertyDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferenceInParameterPropertyDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referenceToClass_test.go b/tsc/pkg/fourslash/tests/referenceToClass_test.go similarity index 84% rename from tsc/internal/fourslash/tests/referenceToClass_test.go rename to tsc/pkg/fourslash/tests/referenceToClass_test.go index 7593a33500920..724b4454dadc0 100644 --- a/tsc/internal/fourslash/tests/referenceToClass_test.go +++ b/tsc/pkg/fourslash/tests/referenceToClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferenceToClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referenceToEmptyObject_test.go b/tsc/pkg/fourslash/tests/referenceToEmptyObject_test.go similarity index 76% rename from tsc/internal/fourslash/tests/referenceToEmptyObject_test.go rename to tsc/pkg/fourslash/tests/referenceToEmptyObject_test.go index 84d71a9d72f06..712dd10348cff 100644 --- a/tsc/internal/fourslash/tests/referenceToEmptyObject_test.go +++ b/tsc/pkg/fourslash/tests/referenceToEmptyObject_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferenceToEmptyObject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/references01_test.go b/tsc/pkg/fourslash/tests/references01_test.go similarity index 84% rename from tsc/internal/fourslash/tests/references01_test.go rename to tsc/pkg/fourslash/tests/references01_test.go index 5151d2794d2ad..4a085de57aa1c 100644 --- a/tsc/internal/fourslash/tests/references01_test.go +++ b/tsc/pkg/fourslash/tests/references01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferences01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesBloomFilters2_test.go b/tsc/pkg/fourslash/tests/referencesBloomFilters2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesBloomFilters2_test.go rename to tsc/pkg/fourslash/tests/referencesBloomFilters2_test.go index a0972e6bb281b..7a76109655a48 100644 --- a/tsc/internal/fourslash/tests/referencesBloomFilters2_test.go +++ b/tsc/pkg/fourslash/tests/referencesBloomFilters2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesBloomFilters2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesBloomFilters3_test.go b/tsc/pkg/fourslash/tests/referencesBloomFilters3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesBloomFilters3_test.go rename to tsc/pkg/fourslash/tests/referencesBloomFilters3_test.go index 8ad5ebce1a13d..0f96454358451 100644 --- a/tsc/internal/fourslash/tests/referencesBloomFilters3_test.go +++ b/tsc/pkg/fourslash/tests/referencesBloomFilters3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesBloomFilters3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesBloomFilters_test.go b/tsc/pkg/fourslash/tests/referencesBloomFilters_test.go similarity index 84% rename from tsc/internal/fourslash/tests/referencesBloomFilters_test.go rename to tsc/pkg/fourslash/tests/referencesBloomFilters_test.go index 1223755c27ae5..1b98be022cb4b 100644 --- a/tsc/internal/fourslash/tests/referencesBloomFilters_test.go +++ b/tsc/pkg/fourslash/tests/referencesBloomFilters_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesBloomFilters(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForAmbients2_test.go b/tsc/pkg/fourslash/tests/referencesForAmbients2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/referencesForAmbients2_test.go rename to tsc/pkg/fourslash/tests/referencesForAmbients2_test.go index 7250320c9b17e..e93e017538777 100644 --- a/tsc/internal/fourslash/tests/referencesForAmbients2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForAmbients2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForAmbients2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForAmbients_test.go b/tsc/pkg/fourslash/tests/referencesForAmbients_test.go similarity index 85% rename from tsc/internal/fourslash/tests/referencesForAmbients_test.go rename to tsc/pkg/fourslash/tests/referencesForAmbients_test.go index fb4fab4e307fb..53accbbd3d12b 100644 --- a/tsc/internal/fourslash/tests/referencesForAmbients_test.go +++ b/tsc/pkg/fourslash/tests/referencesForAmbients_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForAmbients(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForClassLocal_test.go b/tsc/pkg/fourslash/tests/referencesForClassLocal_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForClassLocal_test.go rename to tsc/pkg/fourslash/tests/referencesForClassLocal_test.go index 54af0c108a502..67a180ae51118 100644 --- a/tsc/internal/fourslash/tests/referencesForClassLocal_test.go +++ b/tsc/pkg/fourslash/tests/referencesForClassLocal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForClassLocal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go b/tsc/pkg/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go similarity index 84% rename from tsc/internal/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go rename to tsc/pkg/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go index 2e9f6f7e0f9c7..5d582cd74a841 100644 --- a/tsc/internal/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go +++ b/tsc/pkg/fourslash/tests/referencesForClassMembersExtendingAbstractClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForClassMembersExtendingAbstractClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go b/tsc/pkg/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go rename to tsc/pkg/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go index 78a286e2e07af..ec94108afc8b2 100644 --- a/tsc/internal/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go +++ b/tsc/pkg/fourslash/tests/referencesForClassMembersExtendingGenericClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForClassMembersExtendingGenericClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForClassMembers_test.go b/tsc/pkg/fourslash/tests/referencesForClassMembers_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForClassMembers_test.go rename to tsc/pkg/fourslash/tests/referencesForClassMembers_test.go index b98f8cbfc1503..a898c1564671b 100644 --- a/tsc/internal/fourslash/tests/referencesForClassMembers_test.go +++ b/tsc/pkg/fourslash/tests/referencesForClassMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForClassMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForClassParameter_test.go b/tsc/pkg/fourslash/tests/referencesForClassParameter_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForClassParameter_test.go rename to tsc/pkg/fourslash/tests/referencesForClassParameter_test.go index 2ab3e6d9bee20..b83f27e91e43b 100644 --- a/tsc/internal/fourslash/tests/referencesForClassParameter_test.go +++ b/tsc/pkg/fourslash/tests/referencesForClassParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForClassParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go similarity index 87% rename from tsc/internal/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go rename to tsc/pkg/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go index 585e3053749e8..0a94bf3474ebf 100644 --- a/tsc/internal/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go +++ b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedObjectLiteralProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForContextuallyTypedObjectLiteralProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go rename to tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go index e31a7c6a68288..b5ef547bd3413 100644 --- a/tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForContextuallyTypedUnionProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go similarity index 90% rename from tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go rename to tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go index 91ca8dbca20e8..9cd354689ddff 100644 --- a/tsc/internal/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go +++ b/tsc/pkg/fourslash/tests/referencesForContextuallyTypedUnionProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForContextuallyTypedUnionProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForDeclarationKeywords_test.go b/tsc/pkg/fourslash/tests/referencesForDeclarationKeywords_test.go similarity index 93% rename from tsc/internal/fourslash/tests/referencesForDeclarationKeywords_test.go rename to tsc/pkg/fourslash/tests/referencesForDeclarationKeywords_test.go index 7699351eace2f..1fb104537adf7 100644 --- a/tsc/internal/fourslash/tests/referencesForDeclarationKeywords_test.go +++ b/tsc/pkg/fourslash/tests/referencesForDeclarationKeywords_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForDeclarationKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForEnums_test.go b/tsc/pkg/fourslash/tests/referencesForEnums_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForEnums_test.go rename to tsc/pkg/fourslash/tests/referencesForEnums_test.go index 414334d15c14f..241ad5d359f12 100644 --- a/tsc/internal/fourslash/tests/referencesForEnums_test.go +++ b/tsc/pkg/fourslash/tests/referencesForEnums_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForEnums(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForExportedValues_test.go b/tsc/pkg/fourslash/tests/referencesForExportedValues_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForExportedValues_test.go rename to tsc/pkg/fourslash/tests/referencesForExportedValues_test.go index ca3c988189079..c4a2648f86c07 100644 --- a/tsc/internal/fourslash/tests/referencesForExportedValues_test.go +++ b/tsc/pkg/fourslash/tests/referencesForExportedValues_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForExportedValues(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForExpressionKeywords_test.go b/tsc/pkg/fourslash/tests/referencesForExpressionKeywords_test.go similarity index 85% rename from tsc/internal/fourslash/tests/referencesForExpressionKeywords_test.go rename to tsc/pkg/fourslash/tests/referencesForExpressionKeywords_test.go index 69ecdb38f193b..c2a3963d71108 100644 --- a/tsc/internal/fourslash/tests/referencesForExpressionKeywords_test.go +++ b/tsc/pkg/fourslash/tests/referencesForExpressionKeywords_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForExpressionKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForExternalModuleNames_test.go b/tsc/pkg/fourslash/tests/referencesForExternalModuleNames_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForExternalModuleNames_test.go rename to tsc/pkg/fourslash/tests/referencesForExternalModuleNames_test.go index 5511453f43cf6..0a7c346caf185 100644 --- a/tsc/internal/fourslash/tests/referencesForExternalModuleNames_test.go +++ b/tsc/pkg/fourslash/tests/referencesForExternalModuleNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForExternalModuleNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForFunctionOverloads_test.go b/tsc/pkg/fourslash/tests/referencesForFunctionOverloads_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForFunctionOverloads_test.go rename to tsc/pkg/fourslash/tests/referencesForFunctionOverloads_test.go index c2307864399f6..a8e8a02271a6d 100644 --- a/tsc/internal/fourslash/tests/referencesForFunctionOverloads_test.go +++ b/tsc/pkg/fourslash/tests/referencesForFunctionOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForFunctionOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForFunctionParameter_test.go b/tsc/pkg/fourslash/tests/referencesForFunctionParameter_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/referencesForFunctionParameter_test.go index 9d8c881e49270..e0704e6e89198 100644 --- a/tsc/internal/fourslash/tests/referencesForFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/referencesForFunctionParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobals2_test.go b/tsc/pkg/fourslash/tests/referencesForGlobals2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForGlobals2_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobals2_test.go index 000776edaa719..2823256d99b90 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobals2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobals2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobals2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobals3_test.go b/tsc/pkg/fourslash/tests/referencesForGlobals3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForGlobals3_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobals3_test.go index 2190bc0823dcb..c0760a401890b 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobals3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobals3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobals3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobals4_test.go b/tsc/pkg/fourslash/tests/referencesForGlobals4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForGlobals4_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobals4_test.go index 95caf79b95b34..cb8e09a92fe20 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobals4_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobals4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobals4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobals5_test.go b/tsc/pkg/fourslash/tests/referencesForGlobals5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForGlobals5_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobals5_test.go index 97c9ab5eae42f..925685e280328 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobals5_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobals5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobals5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobalsInExternalModule_test.go b/tsc/pkg/fourslash/tests/referencesForGlobalsInExternalModule_test.go similarity index 85% rename from tsc/internal/fourslash/tests/referencesForGlobalsInExternalModule_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobalsInExternalModule_test.go index 7448bf6e398ff..87eee93b06a9d 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobalsInExternalModule_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobalsInExternalModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobalsInExternalModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForGlobals_test.go b/tsc/pkg/fourslash/tests/referencesForGlobals_test.go similarity index 86% rename from tsc/internal/fourslash/tests/referencesForGlobals_test.go rename to tsc/pkg/fourslash/tests/referencesForGlobals_test.go index 9fc7e5c673549..c4def3e0c6dd0 100644 --- a/tsc/internal/fourslash/tests/referencesForGlobals_test.go +++ b/tsc/pkg/fourslash/tests/referencesForGlobals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForGlobals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForIllegalAssignment_test.go b/tsc/pkg/fourslash/tests/referencesForIllegalAssignment_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForIllegalAssignment_test.go rename to tsc/pkg/fourslash/tests/referencesForIllegalAssignment_test.go index 0c5f174fb7d1f..afc94957e8a82 100644 --- a/tsc/internal/fourslash/tests/referencesForIllegalAssignment_test.go +++ b/tsc/pkg/fourslash/tests/referencesForIllegalAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForIllegalAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForImports_test.go b/tsc/pkg/fourslash/tests/referencesForImports_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForImports_test.go rename to tsc/pkg/fourslash/tests/referencesForImports_test.go index 5a766fff4ff8f..0a5f4c836bed3 100644 --- a/tsc/internal/fourslash/tests/referencesForImports_test.go +++ b/tsc/pkg/fourslash/tests/referencesForImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForIndexProperty2_test.go b/tsc/pkg/fourslash/tests/referencesForIndexProperty2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/referencesForIndexProperty2_test.go rename to tsc/pkg/fourslash/tests/referencesForIndexProperty2_test.go index d23665a413385..57aa035916302 100644 --- a/tsc/internal/fourslash/tests/referencesForIndexProperty2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForIndexProperty2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForIndexProperty2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForIndexProperty3_test.go b/tsc/pkg/fourslash/tests/referencesForIndexProperty3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForIndexProperty3_test.go rename to tsc/pkg/fourslash/tests/referencesForIndexProperty3_test.go index 71bd275ec9937..5288b2c79f89f 100644 --- a/tsc/internal/fourslash/tests/referencesForIndexProperty3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForIndexProperty3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForIndexProperty3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForIndexProperty_test.go b/tsc/pkg/fourslash/tests/referencesForIndexProperty_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForIndexProperty_test.go rename to tsc/pkg/fourslash/tests/referencesForIndexProperty_test.go index 102b71cc302ac..8efdfd1c4f055 100644 --- a/tsc/internal/fourslash/tests/referencesForIndexProperty_test.go +++ b/tsc/pkg/fourslash/tests/referencesForIndexProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForIndexProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties10_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties10_test.go similarity index 87% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties10_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties10_test.go index 41f25698134ef..8b317e8397160 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties10_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties2_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties2_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties2_test.go index 53f34da8565a2..56adcab1fb199 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties3_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties3_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties3_test.go index f02b89d1c55b3..dda250eb4aa28 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties4_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties4_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties4_test.go index de48b8c222c23..1fbad8539a882 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties4_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties5_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties5_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties5_test.go index 425c0e2779c1c..8f31f0b0f32b4 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties5_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties6_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties6_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties6_test.go index 5cfc44b245b8a..84c8da88a67ed 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties6_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties7_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties7_test.go similarity index 85% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties7_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties7_test.go index 3ac490f4a05d2..dc7d71d6d7537 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties7_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties8_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties8_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties8_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties8_test.go index 2020ba42b9c2d..fb11d2688deec 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties8_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties9_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties9_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties9_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties9_test.go index 73291ab49f312..3a5d4d0bc4ca0 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties9_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForInheritedProperties_test.go b/tsc/pkg/fourslash/tests/referencesForInheritedProperties_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesForInheritedProperties_test.go rename to tsc/pkg/fourslash/tests/referencesForInheritedProperties_test.go index a2ee18c161264..893b9aa340b92 100644 --- a/tsc/internal/fourslash/tests/referencesForInheritedProperties_test.go +++ b/tsc/pkg/fourslash/tests/referencesForInheritedProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForInheritedProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel2_test.go b/tsc/pkg/fourslash/tests/referencesForLabel2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForLabel2_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel2_test.go index 0646869717df9..17562338a2717 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel3_test.go b/tsc/pkg/fourslash/tests/referencesForLabel3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/referencesForLabel3_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel3_test.go index 0c4f073803d78..e5a37b7218b3f 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel4_test.go b/tsc/pkg/fourslash/tests/referencesForLabel4_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForLabel4_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel4_test.go index 8d7670cb6a660..8901574885fd8 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel4_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel5_test.go b/tsc/pkg/fourslash/tests/referencesForLabel5_test.go similarity index 84% rename from tsc/internal/fourslash/tests/referencesForLabel5_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel5_test.go index fcdc0b00bde09..7895f0ce925f0 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel5_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel6_test.go b/tsc/pkg/fourslash/tests/referencesForLabel6_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForLabel6_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel6_test.go index 51974cc2f6c29..3e345e360f434 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel6_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForLabel_test.go b/tsc/pkg/fourslash/tests/referencesForLabel_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForLabel_test.go rename to tsc/pkg/fourslash/tests/referencesForLabel_test.go index ec2d50addb256..5346c76637dd6 100644 --- a/tsc/internal/fourslash/tests/referencesForLabel_test.go +++ b/tsc/pkg/fourslash/tests/referencesForLabel_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForLabel(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations2_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations2_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations2_test.go index b50a5cbc26f72..8e4833743f9df 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations3_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations3_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations3_test.go index 9df170c238c5c..80009a3395e97 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations4_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations4_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations4_test.go index 93ab6776d4f75..fcd0f4b5457e3 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations4_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations5_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations5_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations5_test.go index a6f269af297bb..6b945c8f34257 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations5_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations6_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations6_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations6_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations6_test.go index d60129f1fdb3b..409376c0c4455 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations6_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations7_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations7_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations7_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations7_test.go index e469d789407a3..1d78cb120d20c 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations7_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations8_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations8_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations8_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations8_test.go index 0003bab7a76b7..1e725701b7e92 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations8_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForMergedDeclarations_test.go b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations_test.go similarity index 82% rename from tsc/internal/fourslash/tests/referencesForMergedDeclarations_test.go rename to tsc/pkg/fourslash/tests/referencesForMergedDeclarations_test.go index 184e504e81eef..31a827d7ef512 100644 --- a/tsc/internal/fourslash/tests/referencesForMergedDeclarations_test.go +++ b/tsc/pkg/fourslash/tests/referencesForMergedDeclarations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForMergedDeclarations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForModifiers_test.go b/tsc/pkg/fourslash/tests/referencesForModifiers_test.go similarity index 89% rename from tsc/internal/fourslash/tests/referencesForModifiers_test.go rename to tsc/pkg/fourslash/tests/referencesForModifiers_test.go index 90ce9671cfbcd..ef689900072d4 100644 --- a/tsc/internal/fourslash/tests/referencesForModifiers_test.go +++ b/tsc/pkg/fourslash/tests/referencesForModifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForNoContext_test.go b/tsc/pkg/fourslash/tests/referencesForNoContext_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesForNoContext_test.go rename to tsc/pkg/fourslash/tests/referencesForNoContext_test.go index bfa5301d25f1d..ff374a8425882 100644 --- a/tsc/internal/fourslash/tests/referencesForNoContext_test.go +++ b/tsc/pkg/fourslash/tests/referencesForNoContext_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForNoContext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go b/tsc/pkg/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go rename to tsc/pkg/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go index a9a3412f3c658..b4ed81ff83aa4 100644 --- a/tsc/internal/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go +++ b/tsc/pkg/fourslash/tests/referencesForNumericLiteralPropertyNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForNumericLiteralPropertyNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForObjectLiteralProperties_test.go b/tsc/pkg/fourslash/tests/referencesForObjectLiteralProperties_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForObjectLiteralProperties_test.go rename to tsc/pkg/fourslash/tests/referencesForObjectLiteralProperties_test.go index 8d7752f5c9750..0af193b9939ce 100644 --- a/tsc/internal/fourslash/tests/referencesForObjectLiteralProperties_test.go +++ b/tsc/pkg/fourslash/tests/referencesForObjectLiteralProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForObjectLiteralProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForOverrides_test.go b/tsc/pkg/fourslash/tests/referencesForOverrides_test.go similarity index 93% rename from tsc/internal/fourslash/tests/referencesForOverrides_test.go rename to tsc/pkg/fourslash/tests/referencesForOverrides_test.go index e6792d44ee8bc..3fe3284682926 100644 --- a/tsc/internal/fourslash/tests/referencesForOverrides_test.go +++ b/tsc/pkg/fourslash/tests/referencesForOverrides_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForOverrides(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForPropertiesOfGenericType_test.go b/tsc/pkg/fourslash/tests/referencesForPropertiesOfGenericType_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForPropertiesOfGenericType_test.go rename to tsc/pkg/fourslash/tests/referencesForPropertiesOfGenericType_test.go index 0f2e10db51f29..5af9a23f7b7f7 100644 --- a/tsc/internal/fourslash/tests/referencesForPropertiesOfGenericType_test.go +++ b/tsc/pkg/fourslash/tests/referencesForPropertiesOfGenericType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForPropertiesOfGenericType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStatementKeywords_test.go b/tsc/pkg/fourslash/tests/referencesForStatementKeywords_test.go similarity index 98% rename from tsc/internal/fourslash/tests/referencesForStatementKeywords_test.go rename to tsc/pkg/fourslash/tests/referencesForStatementKeywords_test.go index 99c5dd8a1c5a1..87def47ef72b8 100644 --- a/tsc/internal/fourslash/tests/referencesForStatementKeywords_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStatementKeywords_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStatementKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStatic_test.go b/tsc/pkg/fourslash/tests/referencesForStatic_test.go similarity index 87% rename from tsc/internal/fourslash/tests/referencesForStatic_test.go rename to tsc/pkg/fourslash/tests/referencesForStatic_test.go index 6abf14334d2cc..9490b89fd4a52 100644 --- a/tsc/internal/fourslash/tests/referencesForStatic_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStatic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStatic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go b/tsc/pkg/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go similarity index 87% rename from tsc/internal/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go rename to tsc/pkg/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go index f440303cd92d4..8d0cc9969ae89 100644 --- a/tsc/internal/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStaticsAndMembersWithSameNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStaticsAndMembersWithSameNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go index 8f7da8a61d2c4..5d60addaa4347 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go index 68303a6874b43..8c5fd014f98b1 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go index 1d89863d6b21b..fdb621a613755 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go index cf7f3696ed2aa..dcb46a87bfb04 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go index dccef0a548974..1d1db7682df9a 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go index 25221bf9f0535..29192b7e7c642 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames_test.go b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames_test.go rename to tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames_test.go index c8e960252e706..ebb2c963b41f2 100644 --- a/tsc/internal/fourslash/tests/referencesForStringLiteralPropertyNames_test.go +++ b/tsc/pkg/fourslash/tests/referencesForStringLiteralPropertyNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForStringLiteralPropertyNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForTypeKeywords_test.go b/tsc/pkg/fourslash/tests/referencesForTypeKeywords_test.go similarity index 88% rename from tsc/internal/fourslash/tests/referencesForTypeKeywords_test.go rename to tsc/pkg/fourslash/tests/referencesForTypeKeywords_test.go index fbda8850d634b..ae9541a3e4ce4 100644 --- a/tsc/internal/fourslash/tests/referencesForTypeKeywords_test.go +++ b/tsc/pkg/fourslash/tests/referencesForTypeKeywords_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForTypeKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesForUnionProperties_test.go b/tsc/pkg/fourslash/tests/referencesForUnionProperties_test.go similarity index 83% rename from tsc/internal/fourslash/tests/referencesForUnionProperties_test.go rename to tsc/pkg/fourslash/tests/referencesForUnionProperties_test.go index 14b3ee771a97e..eda1206ce68eb 100644 --- a/tsc/internal/fourslash/tests/referencesForUnionProperties_test.go +++ b/tsc/pkg/fourslash/tests/referencesForUnionProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesForUnionProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesInComment_test.go b/tsc/pkg/fourslash/tests/referencesInComment_test.go similarity index 79% rename from tsc/internal/fourslash/tests/referencesInComment_test.go rename to tsc/pkg/fourslash/tests/referencesInComment_test.go index 4281cb6407b80..e46177eac3852 100644 --- a/tsc/internal/fourslash/tests/referencesInComment_test.go +++ b/tsc/pkg/fourslash/tests/referencesInComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesInComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesInConfiguredProject_test.go b/tsc/pkg/fourslash/tests/referencesInConfiguredProject_test.go similarity index 86% rename from tsc/internal/fourslash/tests/referencesInConfiguredProject_test.go rename to tsc/pkg/fourslash/tests/referencesInConfiguredProject_test.go index ead73b4a67335..b00695723ddd5 100644 --- a/tsc/internal/fourslash/tests/referencesInConfiguredProject_test.go +++ b/tsc/pkg/fourslash/tests/referencesInConfiguredProject_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesInConfiguredProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go b/tsc/pkg/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go similarity index 86% rename from tsc/internal/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go rename to tsc/pkg/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go index 318b37d6333a7..572faada19772 100644 --- a/tsc/internal/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go +++ b/tsc/pkg/fourslash/tests/referencesInEmptyFileWithMultipleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesInEmptyFileWithMultipleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesInEmptyFile_test.go b/tsc/pkg/fourslash/tests/referencesInEmptyFile_test.go similarity index 75% rename from tsc/internal/fourslash/tests/referencesInEmptyFile_test.go rename to tsc/pkg/fourslash/tests/referencesInEmptyFile_test.go index e192479d5fc7b..70113162f2cb7 100644 --- a/tsc/internal/fourslash/tests/referencesInEmptyFile_test.go +++ b/tsc/pkg/fourslash/tests/referencesInEmptyFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesInEmptyFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go b/tsc/pkg/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go similarity index 87% rename from tsc/internal/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go rename to tsc/pkg/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go index f2a6cd23f6707..a8a69ba80a603 100644 --- a/tsc/internal/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go +++ b/tsc/pkg/fourslash/tests/referencesInStringLiteralValueWithMultipleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesInStringLiteralValueWithMultipleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go b/tsc/pkg/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go similarity index 89% rename from tsc/internal/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go rename to tsc/pkg/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go index d3b8347cbb7f5..dec55d0094c26 100644 --- a/tsc/internal/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/referencesIsAvailableThroughGlobalNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesIsAvailableThroughGlobalNoCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go b/tsc/pkg/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go similarity index 78% rename from tsc/internal/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go rename to tsc/pkg/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go index ed91a951207a5..8942e4c9884df 100644 --- a/tsc/internal/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/referencesToNonPropertyNameStringLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesToNonPropertyNameStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/referencesToStringLiteralValue_test.go b/tsc/pkg/fourslash/tests/referencesToStringLiteralValue_test.go similarity index 77% rename from tsc/internal/fourslash/tests/referencesToStringLiteralValue_test.go rename to tsc/pkg/fourslash/tests/referencesToStringLiteralValue_test.go index 27c2660d9f710..4979a182bf09d 100644 --- a/tsc/internal/fourslash/tests/referencesToStringLiteralValue_test.go +++ b/tsc/pkg/fourslash/tests/referencesToStringLiteralValue_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReferencesToStringLiteralValue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/regexDetection_test.go b/tsc/pkg/fourslash/tests/regexDetection_test.go similarity index 84% rename from tsc/internal/fourslash/tests/regexDetection_test.go rename to tsc/pkg/fourslash/tests/regexDetection_test.go index 6e553cded4e0f..76267f64cddf9 100644 --- a/tsc/internal/fourslash/tests/regexDetection_test.go +++ b/tsc/pkg/fourslash/tests/regexDetection_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRegexDetection(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/regexErrorRecovery_test.go b/tsc/pkg/fourslash/tests/regexErrorRecovery_test.go similarity index 81% rename from tsc/internal/fourslash/tests/regexErrorRecovery_test.go rename to tsc/pkg/fourslash/tests/regexErrorRecovery_test.go index 63c026ca03ff1..81c38d6af9c1f 100644 --- a/tsc/internal/fourslash/tests/regexErrorRecovery_test.go +++ b/tsc/pkg/fourslash/tests/regexErrorRecovery_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRegexErrorRecovery(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/regexp_test.go b/tsc/pkg/fourslash/tests/regexp_test.go similarity index 73% rename from tsc/internal/fourslash/tests/regexp_test.go rename to tsc/pkg/fourslash/tests/regexp_test.go index 1db540419a1af..cc24321398f9a 100644 --- a/tsc/internal/fourslash/tests/regexp_test.go +++ b/tsc/pkg/fourslash/tests/regexp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRegexp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/remoteGetReferences_test.go b/tsc/pkg/fourslash/tests/remoteGetReferences_test.go similarity index 96% rename from tsc/internal/fourslash/tests/remoteGetReferences_test.go rename to tsc/pkg/fourslash/tests/remoteGetReferences_test.go index c606c03e8e05c..4894d641394c9 100644 --- a/tsc/internal/fourslash/tests/remoteGetReferences_test.go +++ b/tsc/pkg/fourslash/tests/remoteGetReferences_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoteGetReferences(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeDeclareFunctionExports_test.go b/tsc/pkg/fourslash/tests/removeDeclareFunctionExports_test.go similarity index 80% rename from tsc/internal/fourslash/tests/removeDeclareFunctionExports_test.go rename to tsc/pkg/fourslash/tests/removeDeclareFunctionExports_test.go index 52ff8974593e8..e63cb909cbe32 100644 --- a/tsc/internal/fourslash/tests/removeDeclareFunctionExports_test.go +++ b/tsc/pkg/fourslash/tests/removeDeclareFunctionExports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveDeclareFunctionExports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeDeclareInModule_test.go b/tsc/pkg/fourslash/tests/removeDeclareInModule_test.go similarity index 78% rename from tsc/internal/fourslash/tests/removeDeclareInModule_test.go rename to tsc/pkg/fourslash/tests/removeDeclareInModule_test.go index 63c8d38197ed6..99ae4721cbef9 100644 --- a/tsc/internal/fourslash/tests/removeDeclareInModule_test.go +++ b/tsc/pkg/fourslash/tests/removeDeclareInModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveDeclareInModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeDeclareKeyword_test.go b/tsc/pkg/fourslash/tests/removeDeclareKeyword_test.go similarity index 75% rename from tsc/internal/fourslash/tests/removeDeclareKeyword_test.go rename to tsc/pkg/fourslash/tests/removeDeclareKeyword_test.go index 77f07f16c1469..30111fe5aa281 100644 --- a/tsc/internal/fourslash/tests/removeDeclareKeyword_test.go +++ b/tsc/pkg/fourslash/tests/removeDeclareKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveDeclareKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeDeclareParamTypeAnnotation_test.go b/tsc/pkg/fourslash/tests/removeDeclareParamTypeAnnotation_test.go similarity index 77% rename from tsc/internal/fourslash/tests/removeDeclareParamTypeAnnotation_test.go rename to tsc/pkg/fourslash/tests/removeDeclareParamTypeAnnotation_test.go index 6f1be2fb6d9d1..73d996e206814 100644 --- a/tsc/internal/fourslash/tests/removeDeclareParamTypeAnnotation_test.go +++ b/tsc/pkg/fourslash/tests/removeDeclareParamTypeAnnotation_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveDeclareParamTypeAnnotation(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeDuplicateIdentifier_test.go b/tsc/pkg/fourslash/tests/removeDuplicateIdentifier_test.go similarity index 75% rename from tsc/internal/fourslash/tests/removeDuplicateIdentifier_test.go rename to tsc/pkg/fourslash/tests/removeDuplicateIdentifier_test.go index 1d4cd2dc1c428..50e34ac3c0eb5 100644 --- a/tsc/internal/fourslash/tests/removeDuplicateIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/removeDuplicateIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveDuplicateIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeExportedClassFromReopenedModule_test.go b/tsc/pkg/fourslash/tests/removeExportedClassFromReopenedModule_test.go similarity index 81% rename from tsc/internal/fourslash/tests/removeExportedClassFromReopenedModule_test.go rename to tsc/pkg/fourslash/tests/removeExportedClassFromReopenedModule_test.go index 1b0342e880039..e1452955cd630 100644 --- a/tsc/internal/fourslash/tests/removeExportedClassFromReopenedModule_test.go +++ b/tsc/pkg/fourslash/tests/removeExportedClassFromReopenedModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveExportedClassFromReopenedModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeInterfaceExtendsClause_test.go b/tsc/pkg/fourslash/tests/removeInterfaceExtendsClause_test.go similarity index 77% rename from tsc/internal/fourslash/tests/removeInterfaceExtendsClause_test.go rename to tsc/pkg/fourslash/tests/removeInterfaceExtendsClause_test.go index 8bb0bd7bb4793..371862c75843d 100644 --- a/tsc/internal/fourslash/tests/removeInterfaceExtendsClause_test.go +++ b/tsc/pkg/fourslash/tests/removeInterfaceExtendsClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveInterfaceExtendsClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go b/tsc/pkg/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go similarity index 78% rename from tsc/internal/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go rename to tsc/pkg/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go index 379ba03ca63cf..ef3053770b7ee 100644 --- a/tsc/internal/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go +++ b/tsc/pkg/fourslash/tests/removeInterfaceUsedAsGenericTypeArgument_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveInterfaceUsedAsGenericTypeArgument(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go b/tsc/pkg/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go similarity index 77% rename from tsc/internal/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go rename to tsc/pkg/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go index 0d6f552ac0393..4f311e4eb9a44 100644 --- a/tsc/internal/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go +++ b/tsc/pkg/fourslash/tests/removeParameterBetweenCommentAndParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveParameterBetweenCommentAndParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go b/tsc/pkg/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go similarity index 78% rename from tsc/internal/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go rename to tsc/pkg/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go index d6188b8a83b01..27de6f6cbf333 100644 --- a/tsc/internal/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go +++ b/tsc/pkg/fourslash/tests/removeVarFromModuleWithReopenedEnums_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRemoveVarFromModuleWithReopenedEnums(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/rename01_test.go b/tsc/pkg/fourslash/tests/rename01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/rename01_test.go rename to tsc/pkg/fourslash/tests/rename01_test.go index e077c450dc1a9..4131e3678bb3b 100644 --- a/tsc/internal/fourslash/tests/rename01_test.go +++ b/tsc/pkg/fourslash/tests/rename01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRename01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAcrossMultipleProjects_test.go b/tsc/pkg/fourslash/tests/renameAcrossMultipleProjects_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameAcrossMultipleProjects_test.go rename to tsc/pkg/fourslash/tests/renameAcrossMultipleProjects_test.go index 08dad52b2e005..5d9ce2e4749b8 100644 --- a/tsc/internal/fourslash/tests/renameAcrossMultipleProjects_test.go +++ b/tsc/pkg/fourslash/tests/renameAcrossMultipleProjects_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAcrossMultipleProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAlias2_test.go b/tsc/pkg/fourslash/tests/renameAlias2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameAlias2_test.go rename to tsc/pkg/fourslash/tests/renameAlias2_test.go index bc080c7d5af05..e34e23a89bb19 100644 --- a/tsc/internal/fourslash/tests/renameAlias2_test.go +++ b/tsc/pkg/fourslash/tests/renameAlias2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAlias2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAlias3_test.go b/tsc/pkg/fourslash/tests/renameAlias3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameAlias3_test.go rename to tsc/pkg/fourslash/tests/renameAlias3_test.go index 10fe47d531cac..5c00a35d35615 100644 --- a/tsc/internal/fourslash/tests/renameAlias3_test.go +++ b/tsc/pkg/fourslash/tests/renameAlias3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAlias3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAliasExternalModule2_test.go b/tsc/pkg/fourslash/tests/renameAliasExternalModule2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameAliasExternalModule2_test.go rename to tsc/pkg/fourslash/tests/renameAliasExternalModule2_test.go index 7faacd6389f7b..819165bf2d03a 100644 --- a/tsc/internal/fourslash/tests/renameAliasExternalModule2_test.go +++ b/tsc/pkg/fourslash/tests/renameAliasExternalModule2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAliasExternalModule2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAliasExternalModule3_test.go b/tsc/pkg/fourslash/tests/renameAliasExternalModule3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameAliasExternalModule3_test.go rename to tsc/pkg/fourslash/tests/renameAliasExternalModule3_test.go index 6890234b4f3b8..b836e9742140f 100644 --- a/tsc/internal/fourslash/tests/renameAliasExternalModule3_test.go +++ b/tsc/pkg/fourslash/tests/renameAliasExternalModule3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAliasExternalModule3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAliasExternalModule_test.go b/tsc/pkg/fourslash/tests/renameAliasExternalModule_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameAliasExternalModule_test.go rename to tsc/pkg/fourslash/tests/renameAliasExternalModule_test.go index 43464d68f6cb4..79353afa00a64 100644 --- a/tsc/internal/fourslash/tests/renameAliasExternalModule_test.go +++ b/tsc/pkg/fourslash/tests/renameAliasExternalModule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAliasExternalModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameAlias_test.go b/tsc/pkg/fourslash/tests/renameAlias_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameAlias_test.go rename to tsc/pkg/fourslash/tests/renameAlias_test.go index c01eb8f216851..54391d994749b 100644 --- a/tsc/internal/fourslash/tests/renameAlias_test.go +++ b/tsc/pkg/fourslash/tests/renameAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameBindingElementInitializerExternal_test.go b/tsc/pkg/fourslash/tests/renameBindingElementInitializerExternal_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameBindingElementInitializerExternal_test.go rename to tsc/pkg/fourslash/tests/renameBindingElementInitializerExternal_test.go index 55ec5a09cd5ad..9e6c18d46bef8 100644 --- a/tsc/internal/fourslash/tests/renameBindingElementInitializerExternal_test.go +++ b/tsc/pkg/fourslash/tests/renameBindingElementInitializerExternal_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameBindingElementInitializerExternal(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameBindingElementInitializerProperty_test.go b/tsc/pkg/fourslash/tests/renameBindingElementInitializerProperty_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameBindingElementInitializerProperty_test.go rename to tsc/pkg/fourslash/tests/renameBindingElementInitializerProperty_test.go index 5a200056b5b9f..4066f8e95aac4 100644 --- a/tsc/internal/fourslash/tests/renameBindingElementInitializerProperty_test.go +++ b/tsc/pkg/fourslash/tests/renameBindingElementInitializerProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameBindingElementInitializerProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameBuiltinTypes_test.go b/tsc/pkg/fourslash/tests/renameBuiltinTypes_test.go similarity index 84% rename from tsc/internal/fourslash/tests/renameBuiltinTypes_test.go rename to tsc/pkg/fourslash/tests/renameBuiltinTypes_test.go index b6c202182450d..e2bbd9db8ae28 100644 --- a/tsc/internal/fourslash/tests/renameBuiltinTypes_test.go +++ b/tsc/pkg/fourslash/tests/renameBuiltinTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameBuiltinTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameCommentsAndStrings1_test.go b/tsc/pkg/fourslash/tests/renameCommentsAndStrings1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameCommentsAndStrings1_test.go rename to tsc/pkg/fourslash/tests/renameCommentsAndStrings1_test.go index 05de2fe805912..6e9ec06baf720 100644 --- a/tsc/internal/fourslash/tests/renameCommentsAndStrings1_test.go +++ b/tsc/pkg/fourslash/tests/renameCommentsAndStrings1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameCommentsAndStrings1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameCommentsAndStrings2_test.go b/tsc/pkg/fourslash/tests/renameCommentsAndStrings2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameCommentsAndStrings2_test.go rename to tsc/pkg/fourslash/tests/renameCommentsAndStrings2_test.go index baefaa31c2dd4..cafd1702bd91b 100644 --- a/tsc/internal/fourslash/tests/renameCommentsAndStrings2_test.go +++ b/tsc/pkg/fourslash/tests/renameCommentsAndStrings2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameCommentsAndStrings2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameCommentsAndStrings3_test.go b/tsc/pkg/fourslash/tests/renameCommentsAndStrings3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameCommentsAndStrings3_test.go rename to tsc/pkg/fourslash/tests/renameCommentsAndStrings3_test.go index b1f9b8817c833..363ce2fe09fd2 100644 --- a/tsc/internal/fourslash/tests/renameCommentsAndStrings3_test.go +++ b/tsc/pkg/fourslash/tests/renameCommentsAndStrings3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameCommentsAndStrings3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameCommentsAndStrings4_test.go b/tsc/pkg/fourslash/tests/renameCommentsAndStrings4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameCommentsAndStrings4_test.go rename to tsc/pkg/fourslash/tests/renameCommentsAndStrings4_test.go index 39dd056bfd01f..f3ea040a82a7a 100644 --- a/tsc/internal/fourslash/tests/renameCommentsAndStrings4_test.go +++ b/tsc/pkg/fourslash/tests/renameCommentsAndStrings4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameCommentsAndStrings4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameContextuallyTypedProperties2_test.go b/tsc/pkg/fourslash/tests/renameContextuallyTypedProperties2_test.go similarity index 93% rename from tsc/internal/fourslash/tests/renameContextuallyTypedProperties2_test.go rename to tsc/pkg/fourslash/tests/renameContextuallyTypedProperties2_test.go index 241b63014278a..2afa8583e2e08 100644 --- a/tsc/internal/fourslash/tests/renameContextuallyTypedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/renameContextuallyTypedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameContextuallyTypedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameContextuallyTypedProperties_test.go b/tsc/pkg/fourslash/tests/renameContextuallyTypedProperties_test.go similarity index 93% rename from tsc/internal/fourslash/tests/renameContextuallyTypedProperties_test.go rename to tsc/pkg/fourslash/tests/renameContextuallyTypedProperties_test.go index a6a60811496d7..9b141644555e3 100644 --- a/tsc/internal/fourslash/tests/renameContextuallyTypedProperties_test.go +++ b/tsc/pkg/fourslash/tests/renameContextuallyTypedProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameContextuallyTypedProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameCrossJsTs01_test.go b/tsc/pkg/fourslash/tests/renameCrossJsTs01_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameCrossJsTs01_test.go rename to tsc/pkg/fourslash/tests/renameCrossJsTs01_test.go index a604151ca0d88..e14a6c5219e8d 100644 --- a/tsc/internal/fourslash/tests/renameCrossJsTs01_test.go +++ b/tsc/pkg/fourslash/tests/renameCrossJsTs01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameCrossJsTs01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDeclarationKeywords_test.go b/tsc/pkg/fourslash/tests/renameDeclarationKeywords_test.go similarity index 95% rename from tsc/internal/fourslash/tests/renameDeclarationKeywords_test.go rename to tsc/pkg/fourslash/tests/renameDeclarationKeywords_test.go index da707e631beb5..671fb1ad0d19f 100644 --- a/tsc/internal/fourslash/tests/renameDeclarationKeywords_test.go +++ b/tsc/pkg/fourslash/tests/renameDeclarationKeywords_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDeclarationKeywords(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDefaultImportDifferentName_test.go b/tsc/pkg/fourslash/tests/renameDefaultImportDifferentName_test.go similarity index 88% rename from tsc/internal/fourslash/tests/renameDefaultImportDifferentName_test.go rename to tsc/pkg/fourslash/tests/renameDefaultImportDifferentName_test.go index 7f3bafd2c95bb..8a6886a53343d 100644 --- a/tsc/internal/fourslash/tests/renameDefaultImportDifferentName_test.go +++ b/tsc/pkg/fourslash/tests/renameDefaultImportDifferentName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDefaultImportDifferentName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDefaultImport_test.go b/tsc/pkg/fourslash/tests/renameDefaultImport_test.go similarity index 87% rename from tsc/internal/fourslash/tests/renameDefaultImport_test.go rename to tsc/pkg/fourslash/tests/renameDefaultImport_test.go index 82fcf1efccf54..6d3068bd89741 100644 --- a/tsc/internal/fourslash/tests/renameDefaultImport_test.go +++ b/tsc/pkg/fourslash/tests/renameDefaultImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDefaultImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDefaultKeyword_test.go b/tsc/pkg/fourslash/tests/renameDefaultKeyword_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameDefaultKeyword_test.go rename to tsc/pkg/fourslash/tests/renameDefaultKeyword_test.go index d53acadb087ca..591a735a34d6c 100644 --- a/tsc/internal/fourslash/tests/renameDefaultKeyword_test.go +++ b/tsc/pkg/fourslash/tests/renameDefaultKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDefaultKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDefaultLibDontWork_test.go b/tsc/pkg/fourslash/tests/renameDefaultLibDontWork_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameDefaultLibDontWork_test.go rename to tsc/pkg/fourslash/tests/renameDefaultLibDontWork_test.go index a5d9f5bd5d24b..154c61384b1aa 100644 --- a/tsc/internal/fourslash/tests/renameDefaultLibDontWork_test.go +++ b/tsc/pkg/fourslash/tests/renameDefaultLibDontWork_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDefaultLibDontWork(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentInForOf_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentInForOf_test.go similarity index 87% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentInForOf_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentInForOf_test.go index 88cedcc80c669..8bb04e33f4b77 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentInForOf_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentInForOf_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentInForOf(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentInFor_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentInFor_test.go similarity index 87% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentInFor_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentInFor_test.go index 05193bdf6437f..12641bbe586ef 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentInFor_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentInFor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentInFor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go index 9e3f6abd79222..30ec07295eeb6 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInArrayLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentNestedInArrayLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go index a7ea203a9230b..323e532914241 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentNestedInFor2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go index 1e47d6a3dc497..052c1bb75a4ce 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentNestedInForOf2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go similarity index 89% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go index 14cc5ac442f62..8c7537e6c33ad 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInForOf_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentNestedInForOf(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go similarity index 89% rename from tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go index 470907f8c0c23..6c0bde42ca2fd 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignmentNestedInFor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignmentNestedInFor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringAssignment_test.go b/tsc/pkg/fourslash/tests/renameDestructuringAssignment_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameDestructuringAssignment_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringAssignment_test.go index 71134d8551c75..39790a640851a 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringAssignment_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringClassProperty_test.go b/tsc/pkg/fourslash/tests/renameDestructuringClassProperty_test.go similarity index 87% rename from tsc/internal/fourslash/tests/renameDestructuringClassProperty_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringClassProperty_test.go index fb16e7d016df2..edaf6fc149517 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringClassProperty_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringClassProperty_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringClassProperty(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringDeclarationInForOf_test.go b/tsc/pkg/fourslash/tests/renameDestructuringDeclarationInForOf_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameDestructuringDeclarationInForOf_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringDeclarationInForOf_test.go index dc0f1e8aba0e6..85ad6ea3186c9 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringDeclarationInForOf_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringDeclarationInForOf_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringDeclarationInForOf(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringDeclarationInFor_test.go b/tsc/pkg/fourslash/tests/renameDestructuringDeclarationInFor_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameDestructuringDeclarationInFor_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringDeclarationInFor_test.go index 5b0043f54d487..38994ce66ff85 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringDeclarationInFor_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringDeclarationInFor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringDeclarationInFor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringFunctionParameter_test.go b/tsc/pkg/fourslash/tests/renameDestructuringFunctionParameter_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameDestructuringFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringFunctionParameter_test.go index 281451f7ad67b..101e4904631dc 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringFunctionParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameDestructuringNestedBindingElement_test.go b/tsc/pkg/fourslash/tests/renameDestructuringNestedBindingElement_test.go similarity index 88% rename from tsc/internal/fourslash/tests/renameDestructuringNestedBindingElement_test.go rename to tsc/pkg/fourslash/tests/renameDestructuringNestedBindingElement_test.go index 6bc64e71bb257..e3f1bc2d28a91 100644 --- a/tsc/internal/fourslash/tests/renameDestructuringNestedBindingElement_test.go +++ b/tsc/pkg/fourslash/tests/renameDestructuringNestedBindingElement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameDestructuringNestedBindingElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameExportCrash_test.go b/tsc/pkg/fourslash/tests/renameExportCrash_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameExportCrash_test.go rename to tsc/pkg/fourslash/tests/renameExportCrash_test.go index 2a821018a58b4..93e56569f422d 100644 --- a/tsc/internal/fourslash/tests/renameExportCrash_test.go +++ b/tsc/pkg/fourslash/tests/renameExportCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameExportCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameExportSpecifier2_test.go b/tsc/pkg/fourslash/tests/renameExportSpecifier2_test.go similarity index 68% rename from tsc/internal/fourslash/tests/renameExportSpecifier2_test.go rename to tsc/pkg/fourslash/tests/renameExportSpecifier2_test.go index d5b83e67c55a9..d3181004829c2 100644 --- a/tsc/internal/fourslash/tests/renameExportSpecifier2_test.go +++ b/tsc/pkg/fourslash/tests/renameExportSpecifier2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameExportSpecifier2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameExportSpecifier_test.go b/tsc/pkg/fourslash/tests/renameExportSpecifier_test.go similarity index 69% rename from tsc/internal/fourslash/tests/renameExportSpecifier_test.go rename to tsc/pkg/fourslash/tests/renameExportSpecifier_test.go index f9248876bfbe7..0f5fc0e2698c1 100644 --- a/tsc/internal/fourslash/tests/renameExportSpecifier_test.go +++ b/tsc/pkg/fourslash/tests/renameExportSpecifier_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameExportSpecifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFilePackageJson_test.go b/tsc/pkg/fourslash/tests/renameFilePackageJson_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameFilePackageJson_test.go rename to tsc/pkg/fourslash/tests/renameFilePackageJson_test.go index 7cdf83fbd2a85..e5a5f81a6f637 100644 --- a/tsc/internal/fourslash/tests/renameFilePackageJson_test.go +++ b/tsc/pkg/fourslash/tests/renameFilePackageJson_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFilePackageJson(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForAliasingExport01_test.go b/tsc/pkg/fourslash/tests/renameForAliasingExport01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameForAliasingExport01_test.go rename to tsc/pkg/fourslash/tests/renameForAliasingExport01_test.go index 917ec5d85665b..8fde4609d3cef 100644 --- a/tsc/internal/fourslash/tests/renameForAliasingExport01_test.go +++ b/tsc/pkg/fourslash/tests/renameForAliasingExport01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForAliasingExport01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForAliasingExport02_test.go b/tsc/pkg/fourslash/tests/renameForAliasingExport02_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameForAliasingExport02_test.go rename to tsc/pkg/fourslash/tests/renameForAliasingExport02_test.go index dd3164329845b..ef5dc1a10b63b 100644 --- a/tsc/internal/fourslash/tests/renameForAliasingExport02_test.go +++ b/tsc/pkg/fourslash/tests/renameForAliasingExport02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForAliasingExport02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport01_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport01_test.go similarity index 88% rename from tsc/internal/fourslash/tests/renameForDefaultExport01_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport01_test.go index 142d101ddc9b1..d7a245a908515 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport01_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport02_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport02_test.go similarity index 77% rename from tsc/internal/fourslash/tests/renameForDefaultExport02_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport02_test.go index 09b4cf6fab1e3..833a66349e80d 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport02_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport02_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport03_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport03_test.go similarity index 76% rename from tsc/internal/fourslash/tests/renameForDefaultExport03_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport03_test.go index ca7fb9991be39..32e8fd82daf46 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport03_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport03_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport04_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport04_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameForDefaultExport04_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport04_test.go index 1be56166ca3cc..b4f9a1b5ea12a 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport04_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport04_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport04(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport05_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport05_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameForDefaultExport05_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport05_test.go index 342187028355d..d6cd416b2bd1f 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport05_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport06_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport06_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameForDefaultExport06_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport06_test.go index b2142c51df551..1931d08467098 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport06_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport07_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport07_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameForDefaultExport07_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport07_test.go index 72daae119c0de..ec2309a8162ab 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport07_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport07_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport07(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport08_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport08_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameForDefaultExport08_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport08_test.go index e0c21b3f81348..81d8492eb6bf4 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport08_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport08_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport08(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForDefaultExport09_test.go b/tsc/pkg/fourslash/tests/renameForDefaultExport09_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameForDefaultExport09_test.go rename to tsc/pkg/fourslash/tests/renameForDefaultExport09_test.go index f8c2374db6b5d..731d7931a2a59 100644 --- a/tsc/internal/fourslash/tests/renameForDefaultExport09_test.go +++ b/tsc/pkg/fourslash/tests/renameForDefaultExport09_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForDefaultExport09(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameForStringLiteral_test.go b/tsc/pkg/fourslash/tests/renameForStringLiteral_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameForStringLiteral_test.go rename to tsc/pkg/fourslash/tests/renameForStringLiteral_test.go index 1d6bbf5eaa725..9f8e56a914f3d 100644 --- a/tsc/internal/fourslash/tests/renameForStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/renameForStringLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameForStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFromNodeModulesDep1_test.go b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameFromNodeModulesDep1_test.go rename to tsc/pkg/fourslash/tests/renameFromNodeModulesDep1_test.go index d6f7777a3b04d..fa4aa431f4bbc 100644 --- a/tsc/internal/fourslash/tests/renameFromNodeModulesDep1_test.go +++ b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFromNodeModulesDep1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFromNodeModulesDep2_test.go b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameFromNodeModulesDep2_test.go rename to tsc/pkg/fourslash/tests/renameFromNodeModulesDep2_test.go index 901115747290c..d8fb6d8ec86c2 100644 --- a/tsc/internal/fourslash/tests/renameFromNodeModulesDep2_test.go +++ b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep2_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFromNodeModulesDep2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFromNodeModulesDep3_test.go b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameFromNodeModulesDep3_test.go rename to tsc/pkg/fourslash/tests/renameFromNodeModulesDep3_test.go index e850050cebd21..ed33773768efb 100644 --- a/tsc/internal/fourslash/tests/renameFromNodeModulesDep3_test.go +++ b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFromNodeModulesDep3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFromNodeModulesDep4_test.go b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep4_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameFromNodeModulesDep4_test.go rename to tsc/pkg/fourslash/tests/renameFromNodeModulesDep4_test.go index 7478fe60b2a19..17a455868827e 100644 --- a/tsc/internal/fourslash/tests/renameFromNodeModulesDep4_test.go +++ b/tsc/pkg/fourslash/tests/renameFromNodeModulesDep4_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFromNodeModulesDep4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFunctionParameter1_test.go b/tsc/pkg/fourslash/tests/renameFunctionParameter1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameFunctionParameter1_test.go rename to tsc/pkg/fourslash/tests/renameFunctionParameter1_test.go index a568f41492d92..d83788cce17e6 100644 --- a/tsc/internal/fourslash/tests/renameFunctionParameter1_test.go +++ b/tsc/pkg/fourslash/tests/renameFunctionParameter1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFunctionParameter1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameFunctionParameter2_test.go b/tsc/pkg/fourslash/tests/renameFunctionParameter2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameFunctionParameter2_test.go rename to tsc/pkg/fourslash/tests/renameFunctionParameter2_test.go index 038359f19e4bd..34221206d311c 100644 --- a/tsc/internal/fourslash/tests/renameFunctionParameter2_test.go +++ b/tsc/pkg/fourslash/tests/renameFunctionParameter2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameFunctionParameter2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportAndExportInDiffFiles_test.go b/tsc/pkg/fourslash/tests/renameImportAndExportInDiffFiles_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameImportAndExportInDiffFiles_test.go rename to tsc/pkg/fourslash/tests/renameImportAndExportInDiffFiles_test.go index 8b394eb262f07..e8c55009c0542 100644 --- a/tsc/internal/fourslash/tests/renameImportAndExportInDiffFiles_test.go +++ b/tsc/pkg/fourslash/tests/renameImportAndExportInDiffFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportAndExportInDiffFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportAndExport_test.go b/tsc/pkg/fourslash/tests/renameImportAndExport_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameImportAndExport_test.go rename to tsc/pkg/fourslash/tests/renameImportAndExport_test.go index a3975af4bb00f..f585cda762282 100644 --- a/tsc/internal/fourslash/tests/renameImportAndExport_test.go +++ b/tsc/pkg/fourslash/tests/renameImportAndExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportAndExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportAndShorthand_test.go b/tsc/pkg/fourslash/tests/renameImportAndShorthand_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameImportAndShorthand_test.go rename to tsc/pkg/fourslash/tests/renameImportAndShorthand_test.go index 3993915ab058c..d51f4590ab6e4 100644 --- a/tsc/internal/fourslash/tests/renameImportAndShorthand_test.go +++ b/tsc/pkg/fourslash/tests/renameImportAndShorthand_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportAndShorthand(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportNamespaceAndShorthand_test.go b/tsc/pkg/fourslash/tests/renameImportNamespaceAndShorthand_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameImportNamespaceAndShorthand_test.go rename to tsc/pkg/fourslash/tests/renameImportNamespaceAndShorthand_test.go index 2695b9c915a95..b8fabcbdebf1b 100644 --- a/tsc/internal/fourslash/tests/renameImportNamespaceAndShorthand_test.go +++ b/tsc/pkg/fourslash/tests/renameImportNamespaceAndShorthand_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportNamespaceAndShorthand(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportOfExportEquals2_test.go b/tsc/pkg/fourslash/tests/renameImportOfExportEquals2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/renameImportOfExportEquals2_test.go rename to tsc/pkg/fourslash/tests/renameImportOfExportEquals2_test.go index 614a039664107..04c7be67277f5 100644 --- a/tsc/internal/fourslash/tests/renameImportOfExportEquals2_test.go +++ b/tsc/pkg/fourslash/tests/renameImportOfExportEquals2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportOfExportEquals2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportOfExportEquals_test.go b/tsc/pkg/fourslash/tests/renameImportOfExportEquals_test.go similarity index 92% rename from tsc/internal/fourslash/tests/renameImportOfExportEquals_test.go rename to tsc/pkg/fourslash/tests/renameImportOfExportEquals_test.go index 91f4d5fcd510c..608ddea93d994 100644 --- a/tsc/internal/fourslash/tests/renameImportOfExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/renameImportOfExportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportOfExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportOfReExport2_test.go b/tsc/pkg/fourslash/tests/renameImportOfReExport2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameImportOfReExport2_test.go rename to tsc/pkg/fourslash/tests/renameImportOfReExport2_test.go index e5731e6566081..a91885cf2d410 100644 --- a/tsc/internal/fourslash/tests/renameImportOfReExport2_test.go +++ b/tsc/pkg/fourslash/tests/renameImportOfReExport2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportOfReExport2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportOfReExport_test.go b/tsc/pkg/fourslash/tests/renameImportOfReExport_test.go similarity index 89% rename from tsc/internal/fourslash/tests/renameImportOfReExport_test.go rename to tsc/pkg/fourslash/tests/renameImportOfReExport_test.go index bce0c43c6f178..c3ce308c2ce01 100644 --- a/tsc/internal/fourslash/tests/renameImportOfReExport_test.go +++ b/tsc/pkg/fourslash/tests/renameImportOfReExport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportOfReExport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportRequire_test.go b/tsc/pkg/fourslash/tests/renameImportRequire_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameImportRequire_test.go rename to tsc/pkg/fourslash/tests/renameImportRequire_test.go index 82ca0e399ac07..f2ddd7a269851 100644 --- a/tsc/internal/fourslash/tests/renameImportRequire_test.go +++ b/tsc/pkg/fourslash/tests/renameImportRequire_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportRequire(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go b/tsc/pkg/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go rename to tsc/pkg/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go index 1fe6b7924c8d2..f46ce6481ce54 100644 --- a/tsc/internal/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go +++ b/tsc/pkg/fourslash/tests/renameImportSpecifierNoResourceOperations_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportSpecifierNoResourceOperations(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameImportSpecifierPropertyName_test.go b/tsc/pkg/fourslash/tests/renameImportSpecifierPropertyName_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameImportSpecifierPropertyName_test.go rename to tsc/pkg/fourslash/tests/renameImportSpecifierPropertyName_test.go index f416c7c0dc7c2..b6b2d09b36383 100644 --- a/tsc/internal/fourslash/tests/renameImportSpecifierPropertyName_test.go +++ b/tsc/pkg/fourslash/tests/renameImportSpecifierPropertyName_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameImportSpecifierPropertyName(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInConfiguredProject_test.go b/tsc/pkg/fourslash/tests/renameInConfiguredProject_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameInConfiguredProject_test.go rename to tsc/pkg/fourslash/tests/renameInConfiguredProject_test.go index ba3162de8be8f..8df833492f982 100644 --- a/tsc/internal/fourslash/tests/renameInConfiguredProject_test.go +++ b/tsc/pkg/fourslash/tests/renameInConfiguredProject_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInConfiguredProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInfoForFunctionExpression01_test.go b/tsc/pkg/fourslash/tests/renameInfoForFunctionExpression01_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameInfoForFunctionExpression01_test.go rename to tsc/pkg/fourslash/tests/renameInfoForFunctionExpression01_test.go index bbefec5467508..aa93b3695ae44 100644 --- a/tsc/internal/fourslash/tests/renameInfoForFunctionExpression01_test.go +++ b/tsc/pkg/fourslash/tests/renameInfoForFunctionExpression01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInfoForFunctionExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties1_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameInheritedProperties1_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties1_test.go index 5499941ac9b0f..54bc5511c74cd 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties1_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties2_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameInheritedProperties2_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties2_test.go index 36fa1794ba503..2d74888168312 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties2_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties3_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameInheritedProperties3_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties3_test.go index 63c429fce00cb..4e961ddc82046 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties3_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties4_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameInheritedProperties4_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties4_test.go index d7a537e5673f6..c49d4a9a66a81 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties4_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties5_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameInheritedProperties5_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties5_test.go index 19f574253884d..c87d966d4ba05 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties5_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties6_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties6_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameInheritedProperties6_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties6_test.go index 6c830cd561c7a..5f46bb40fd20c 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties6_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties7_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties7_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameInheritedProperties7_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties7_test.go index 69df4c1032f66..d0510d8ae0189 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties7_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameInheritedProperties8_test.go b/tsc/pkg/fourslash/tests/renameInheritedProperties8_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameInheritedProperties8_test.go rename to tsc/pkg/fourslash/tests/renameInheritedProperties8_test.go index 98485e7fdbc7c..926404d2ad03b 100644 --- a/tsc/internal/fourslash/tests/renameInheritedProperties8_test.go +++ b/tsc/pkg/fourslash/tests/renameInheritedProperties8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameInheritedProperties8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJSDocNamepath_test.go b/tsc/pkg/fourslash/tests/renameJSDocNamepath_test.go similarity index 77% rename from tsc/internal/fourslash/tests/renameJSDocNamepath_test.go rename to tsc/pkg/fourslash/tests/renameJSDocNamepath_test.go index f98eb2311bca7..8754b7377561f 100644 --- a/tsc/internal/fourslash/tests/renameJSDocNamepath_test.go +++ b/tsc/pkg/fourslash/tests/renameJSDocNamepath_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJSDocNamepath(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsDocImportTag_test.go b/tsc/pkg/fourslash/tests/renameJsDocImportTag_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsDocImportTag_test.go rename to tsc/pkg/fourslash/tests/renameJsDocImportTag_test.go index 50b43c68b4d5c..31f93c20fc9a2 100644 --- a/tsc/internal/fourslash/tests/renameJsDocImportTag_test.go +++ b/tsc/pkg/fourslash/tests/renameJsDocImportTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsDocImportTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsDocTypeLiteral_test.go b/tsc/pkg/fourslash/tests/renameJsDocTypeLiteral_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsDocTypeLiteral_test.go rename to tsc/pkg/fourslash/tests/renameJsDocTypeLiteral_test.go index c33d8e8a73bf6..aa90cfb314dbf 100644 --- a/tsc/internal/fourslash/tests/renameJsDocTypeLiteral_test.go +++ b/tsc/pkg/fourslash/tests/renameJsDocTypeLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsDocTypeLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsExports01_test.go b/tsc/pkg/fourslash/tests/renameJsExports01_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameJsExports01_test.go rename to tsc/pkg/fourslash/tests/renameJsExports01_test.go index 3daeeb85187d2..cd3d47a156274 100644 --- a/tsc/internal/fourslash/tests/renameJsExports01_test.go +++ b/tsc/pkg/fourslash/tests/renameJsExports01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsExports01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsExports02_test.go b/tsc/pkg/fourslash/tests/renameJsExports02_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameJsExports02_test.go rename to tsc/pkg/fourslash/tests/renameJsExports02_test.go index af02ef36428d0..53e1666ae0902 100644 --- a/tsc/internal/fourslash/tests/renameJsExports02_test.go +++ b/tsc/pkg/fourslash/tests/renameJsExports02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsExports02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsExports03_test.go b/tsc/pkg/fourslash/tests/renameJsExports03_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsExports03_test.go rename to tsc/pkg/fourslash/tests/renameJsExports03_test.go index 27927a033d63d..871e12f027abc 100644 --- a/tsc/internal/fourslash/tests/renameJsExports03_test.go +++ b/tsc/pkg/fourslash/tests/renameJsExports03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsExports03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsOverloadedFunctionParameter_test.go b/tsc/pkg/fourslash/tests/renameJsOverloadedFunctionParameter_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameJsOverloadedFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/renameJsOverloadedFunctionParameter_test.go index c8a17d7c22689..59b65fd0f0433 100644 --- a/tsc/internal/fourslash/tests/renameJsOverloadedFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/renameJsOverloadedFunctionParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsOverloadedFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPropertyAssignment2_test.go b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsPropertyAssignment2_test.go rename to tsc/pkg/fourslash/tests/renameJsPropertyAssignment2_test.go index ad6f754a8a767..62582539b255c 100644 --- a/tsc/internal/fourslash/tests/renameJsPropertyAssignment2_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPropertyAssignment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPropertyAssignment3_test.go b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsPropertyAssignment3_test.go rename to tsc/pkg/fourslash/tests/renameJsPropertyAssignment3_test.go index 8f660553637a3..26c9c63578f7f 100644 --- a/tsc/internal/fourslash/tests/renameJsPropertyAssignment3_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPropertyAssignment3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPropertyAssignment4_test.go b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameJsPropertyAssignment4_test.go rename to tsc/pkg/fourslash/tests/renameJsPropertyAssignment4_test.go index 8c9923e699fc9..473c4de874828 100644 --- a/tsc/internal/fourslash/tests/renameJsPropertyAssignment4_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPropertyAssignment4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPropertyAssignment_test.go b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameJsPropertyAssignment_test.go rename to tsc/pkg/fourslash/tests/renameJsPropertyAssignment_test.go index 3be408cc98942..1c93f90876eb8 100644 --- a/tsc/internal/fourslash/tests/renameJsPropertyAssignment_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPropertyAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPropertyAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPrototypeProperty01_test.go b/tsc/pkg/fourslash/tests/renameJsPrototypeProperty01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsPrototypeProperty01_test.go rename to tsc/pkg/fourslash/tests/renameJsPrototypeProperty01_test.go index cbb64aacabed3..26ab3a99164be 100644 --- a/tsc/internal/fourslash/tests/renameJsPrototypeProperty01_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPrototypeProperty01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPrototypeProperty01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsPrototypeProperty02_test.go b/tsc/pkg/fourslash/tests/renameJsPrototypeProperty02_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsPrototypeProperty02_test.go rename to tsc/pkg/fourslash/tests/renameJsPrototypeProperty02_test.go index 10464898a8011..2b98a97b452e0 100644 --- a/tsc/internal/fourslash/tests/renameJsPrototypeProperty02_test.go +++ b/tsc/pkg/fourslash/tests/renameJsPrototypeProperty02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsPrototypeProperty02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go b/tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go rename to tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go index fe66b167b4e90..74fe32d21a597 100644 --- a/tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go +++ b/tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsSpecialAssignmentRhs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go b/tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go rename to tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go index 9bc8aa6c62780..3d162054d2499 100644 --- a/tsc/internal/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go +++ b/tsc/pkg/fourslash/tests/renameJsSpecialAssignmentRhs2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsSpecialAssignmentRhs2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsThisProperty01_test.go b/tsc/pkg/fourslash/tests/renameJsThisProperty01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameJsThisProperty01_test.go rename to tsc/pkg/fourslash/tests/renameJsThisProperty01_test.go index 0bf1ebda0b843..8fb0ef3afbdab 100644 --- a/tsc/internal/fourslash/tests/renameJsThisProperty01_test.go +++ b/tsc/pkg/fourslash/tests/renameJsThisProperty01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsThisProperty01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsThisProperty03_test.go b/tsc/pkg/fourslash/tests/renameJsThisProperty03_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsThisProperty03_test.go rename to tsc/pkg/fourslash/tests/renameJsThisProperty03_test.go index dbcc2752005fa..531b1805161b7 100644 --- a/tsc/internal/fourslash/tests/renameJsThisProperty03_test.go +++ b/tsc/pkg/fourslash/tests/renameJsThisProperty03_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsThisProperty03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsThisProperty05_test.go b/tsc/pkg/fourslash/tests/renameJsThisProperty05_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsThisProperty05_test.go rename to tsc/pkg/fourslash/tests/renameJsThisProperty05_test.go index ac95ba0c207fe..f0920bcabf899 100644 --- a/tsc/internal/fourslash/tests/renameJsThisProperty05_test.go +++ b/tsc/pkg/fourslash/tests/renameJsThisProperty05_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsThisProperty05(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameJsThisProperty06_test.go b/tsc/pkg/fourslash/tests/renameJsThisProperty06_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameJsThisProperty06_test.go rename to tsc/pkg/fourslash/tests/renameJsThisProperty06_test.go index dc4d20278e5f7..31504486971de 100644 --- a/tsc/internal/fourslash/tests/renameJsThisProperty06_test.go +++ b/tsc/pkg/fourslash/tests/renameJsThisProperty06_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameJsThisProperty06(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel1_test.go b/tsc/pkg/fourslash/tests/renameLabel1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/renameLabel1_test.go rename to tsc/pkg/fourslash/tests/renameLabel1_test.go index 12fe3ff7b1f65..9eab7b8cd0d1b 100644 --- a/tsc/internal/fourslash/tests/renameLabel1_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel2_test.go b/tsc/pkg/fourslash/tests/renameLabel2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/renameLabel2_test.go rename to tsc/pkg/fourslash/tests/renameLabel2_test.go index 2aef122485d0c..17a9255f32e71 100644 --- a/tsc/internal/fourslash/tests/renameLabel2_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel3_test.go b/tsc/pkg/fourslash/tests/renameLabel3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameLabel3_test.go rename to tsc/pkg/fourslash/tests/renameLabel3_test.go index a8ffe5fcb68e6..2bc988aa4b60b 100644 --- a/tsc/internal/fourslash/tests/renameLabel3_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel4_test.go b/tsc/pkg/fourslash/tests/renameLabel4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameLabel4_test.go rename to tsc/pkg/fourslash/tests/renameLabel4_test.go index fecfc64e1c3a2..b46fae765eb86 100644 --- a/tsc/internal/fourslash/tests/renameLabel4_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel5_test.go b/tsc/pkg/fourslash/tests/renameLabel5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameLabel5_test.go rename to tsc/pkg/fourslash/tests/renameLabel5_test.go index ee2873b68f01a..04f415a817cd8 100644 --- a/tsc/internal/fourslash/tests/renameLabel5_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLabel6_test.go b/tsc/pkg/fourslash/tests/renameLabel6_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameLabel6_test.go rename to tsc/pkg/fourslash/tests/renameLabel6_test.go index aae1d68220bc5..96f66941759c1 100644 --- a/tsc/internal/fourslash/tests/renameLabel6_test.go +++ b/tsc/pkg/fourslash/tests/renameLabel6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLabel6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLocationsForClassExpression01_test.go b/tsc/pkg/fourslash/tests/renameLocationsForClassExpression01_test.go similarity index 84% rename from tsc/internal/fourslash/tests/renameLocationsForClassExpression01_test.go rename to tsc/pkg/fourslash/tests/renameLocationsForClassExpression01_test.go index 032f4f4b10750..ba8abe7c5376c 100644 --- a/tsc/internal/fourslash/tests/renameLocationsForClassExpression01_test.go +++ b/tsc/pkg/fourslash/tests/renameLocationsForClassExpression01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLocationsForClassExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLocationsForFunctionExpression01_test.go b/tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression01_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameLocationsForFunctionExpression01_test.go rename to tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression01_test.go index d66f130f3b736..06c784de0c48c 100644 --- a/tsc/internal/fourslash/tests/renameLocationsForFunctionExpression01_test.go +++ b/tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLocationsForFunctionExpression01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameLocationsForFunctionExpression02_test.go b/tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression02_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameLocationsForFunctionExpression02_test.go rename to tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression02_test.go index 83542ad830f75..1d82838f6858e 100644 --- a/tsc/internal/fourslash/tests/renameLocationsForFunctionExpression02_test.go +++ b/tsc/pkg/fourslash/tests/renameLocationsForFunctionExpression02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameLocationsForFunctionExpression02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameModifiers_test.go b/tsc/pkg/fourslash/tests/renameModifiers_test.go similarity index 92% rename from tsc/internal/fourslash/tests/renameModifiers_test.go rename to tsc/pkg/fourslash/tests/renameModifiers_test.go index bb096a7bf7760..6eb9a53558b54 100644 --- a/tsc/internal/fourslash/tests/renameModifiers_test.go +++ b/tsc/pkg/fourslash/tests/renameModifiers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameModifiers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameModuleExportsProperties1_test.go b/tsc/pkg/fourslash/tests/renameModuleExportsProperties1_test.go similarity index 67% rename from tsc/internal/fourslash/tests/renameModuleExportsProperties1_test.go rename to tsc/pkg/fourslash/tests/renameModuleExportsProperties1_test.go index 4f047bc45cd26..99367e6100207 100644 --- a/tsc/internal/fourslash/tests/renameModuleExportsProperties1_test.go +++ b/tsc/pkg/fourslash/tests/renameModuleExportsProperties1_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameModuleExportsProperties1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameModuleExportsProperties2_test.go b/tsc/pkg/fourslash/tests/renameModuleExportsProperties2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameModuleExportsProperties2_test.go rename to tsc/pkg/fourslash/tests/renameModuleExportsProperties2_test.go index b6bd5870bbb08..fb6877526e326 100644 --- a/tsc/internal/fourslash/tests/renameModuleExportsProperties2_test.go +++ b/tsc/pkg/fourslash/tests/renameModuleExportsProperties2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameModuleExportsProperties2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameModuleExportsProperties3_test.go b/tsc/pkg/fourslash/tests/renameModuleExportsProperties3_test.go similarity index 69% rename from tsc/internal/fourslash/tests/renameModuleExportsProperties3_test.go rename to tsc/pkg/fourslash/tests/renameModuleExportsProperties3_test.go index 6dd3a319dd981..8c6d5a6a9b019 100644 --- a/tsc/internal/fourslash/tests/renameModuleExportsProperties3_test.go +++ b/tsc/pkg/fourslash/tests/renameModuleExportsProperties3_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameModuleExportsProperties3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameModuleToVar_test.go b/tsc/pkg/fourslash/tests/renameModuleToVar_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameModuleToVar_test.go rename to tsc/pkg/fourslash/tests/renameModuleToVar_test.go index f983df85f3d84..98407dfe18e82 100644 --- a/tsc/internal/fourslash/tests/renameModuleToVar_test.go +++ b/tsc/pkg/fourslash/tests/renameModuleToVar_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameModuleToVar(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNameOnEnumMember_test.go b/tsc/pkg/fourslash/tests/renameNameOnEnumMember_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameNameOnEnumMember_test.go rename to tsc/pkg/fourslash/tests/renameNameOnEnumMember_test.go index fb007cf4b4073..2680e9db84953 100644 --- a/tsc/internal/fourslash/tests/renameNameOnEnumMember_test.go +++ b/tsc/pkg/fourslash/tests/renameNameOnEnumMember_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNameOnEnumMember(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go b/tsc/pkg/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go similarity index 86% rename from tsc/internal/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go rename to tsc/pkg/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go index e95c9098dd130..351094e51f407 100644 --- a/tsc/internal/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go +++ b/tsc/pkg/fourslash/tests/renameNamedImportUseAliasesForRenames_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNamedImportUseAliasesForRenames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNamedImport_test.go b/tsc/pkg/fourslash/tests/renameNamedImport_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameNamedImport_test.go rename to tsc/pkg/fourslash/tests/renameNamedImport_test.go index a8cc09a29c78c..ed22cbdcc0c90 100644 --- a/tsc/internal/fourslash/tests/renameNamedImport_test.go +++ b/tsc/pkg/fourslash/tests/renameNamedImport_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNamedImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNamespaceImport_test.go b/tsc/pkg/fourslash/tests/renameNamespaceImport_test.go similarity index 90% rename from tsc/internal/fourslash/tests/renameNamespaceImport_test.go rename to tsc/pkg/fourslash/tests/renameNamespaceImport_test.go index 706365ef2323c..24611e8f3d91d 100644 --- a/tsc/internal/fourslash/tests/renameNamespaceImport_test.go +++ b/tsc/pkg/fourslash/tests/renameNamespaceImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNamespaceImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNamespace_test.go b/tsc/pkg/fourslash/tests/renameNamespace_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameNamespace_test.go rename to tsc/pkg/fourslash/tests/renameNamespace_test.go index 590d7a8c78f13..1c2b2204106a3 100644 --- a/tsc/internal/fourslash/tests/renameNamespace_test.go +++ b/tsc/pkg/fourslash/tests/renameNamespace_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNamespace(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNoDefaultLib_test.go b/tsc/pkg/fourslash/tests/renameNoDefaultLib_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameNoDefaultLib_test.go rename to tsc/pkg/fourslash/tests/renameNoDefaultLib_test.go index b20a13c4c07c9..ab1859af356e7 100644 --- a/tsc/internal/fourslash/tests/renameNoDefaultLib_test.go +++ b/tsc/pkg/fourslash/tests/renameNoDefaultLib_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNoDefaultLib(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNumericalIndexSingleQuoted_test.go b/tsc/pkg/fourslash/tests/renameNumericalIndexSingleQuoted_test.go similarity index 72% rename from tsc/internal/fourslash/tests/renameNumericalIndexSingleQuoted_test.go rename to tsc/pkg/fourslash/tests/renameNumericalIndexSingleQuoted_test.go index 07504fc6f467c..fa25962956ff6 100644 --- a/tsc/internal/fourslash/tests/renameNumericalIndexSingleQuoted_test.go +++ b/tsc/pkg/fourslash/tests/renameNumericalIndexSingleQuoted_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNumericalIndexSingleQuoted(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameNumericalIndex_test.go b/tsc/pkg/fourslash/tests/renameNumericalIndex_test.go similarity index 76% rename from tsc/internal/fourslash/tests/renameNumericalIndex_test.go rename to tsc/pkg/fourslash/tests/renameNumericalIndex_test.go index 8a7bb0fc76506..2cfc405e74acc 100644 --- a/tsc/internal/fourslash/tests/renameNumericalIndex_test.go +++ b/tsc/pkg/fourslash/tests/renameNumericalIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameNumericalIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameObjectBindingElementPropertyName01_test.go b/tsc/pkg/fourslash/tests/renameObjectBindingElementPropertyName01_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameObjectBindingElementPropertyName01_test.go rename to tsc/pkg/fourslash/tests/renameObjectBindingElementPropertyName01_test.go index a366c1d4ab49a..15d39b91a4427 100644 --- a/tsc/internal/fourslash/tests/renameObjectBindingElementPropertyName01_test.go +++ b/tsc/pkg/fourslash/tests/renameObjectBindingElementPropertyName01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameObjectBindingElementPropertyName01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameObjectSpreadAssignment_test.go b/tsc/pkg/fourslash/tests/renameObjectSpreadAssignment_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameObjectSpreadAssignment_test.go rename to tsc/pkg/fourslash/tests/renameObjectSpreadAssignment_test.go index 8a84c30619eb9..ed6a67fd56434 100644 --- a/tsc/internal/fourslash/tests/renameObjectSpreadAssignment_test.go +++ b/tsc/pkg/fourslash/tests/renameObjectSpreadAssignment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameObjectSpreadAssignment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameObjectSpread_test.go b/tsc/pkg/fourslash/tests/renameObjectSpread_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameObjectSpread_test.go rename to tsc/pkg/fourslash/tests/renameObjectSpread_test.go index 8999665913d05..6147b541fd9c8 100644 --- a/tsc/internal/fourslash/tests/renameObjectSpread_test.go +++ b/tsc/pkg/fourslash/tests/renameObjectSpread_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameObjectSpread(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration1_test.go b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameParameterPropertyDeclaration1_test.go rename to tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration1_test.go index fd2efb318662f..8ecab4e0d10f4 100644 --- a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration1_test.go +++ b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameParameterPropertyDeclaration1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration2_test.go b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameParameterPropertyDeclaration2_test.go rename to tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration2_test.go index 17ae46c2e25a2..e39d4aa9ae1c5 100644 --- a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration2_test.go +++ b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameParameterPropertyDeclaration2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration3_test.go b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameParameterPropertyDeclaration3_test.go rename to tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration3_test.go index d29c9966509a2..723af81452710 100644 --- a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration3_test.go +++ b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameParameterPropertyDeclaration3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration4_test.go b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameParameterPropertyDeclaration4_test.go rename to tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration4_test.go index 7b67a2efd99d7..506e386933ffa 100644 --- a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration4_test.go +++ b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameParameterPropertyDeclaration4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration5_test.go b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration5_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameParameterPropertyDeclaration5_test.go rename to tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration5_test.go index 24d13cb84fd8f..d066e32de6282 100644 --- a/tsc/internal/fourslash/tests/renameParameterPropertyDeclaration5_test.go +++ b/tsc/pkg/fourslash/tests/renameParameterPropertyDeclaration5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameParameterPropertyDeclaration5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renamePrivateAccessor_test.go b/tsc/pkg/fourslash/tests/renamePrivateAccessor_test.go similarity index 74% rename from tsc/internal/fourslash/tests/renamePrivateAccessor_test.go rename to tsc/pkg/fourslash/tests/renamePrivateAccessor_test.go index 8443c6d5d21c8..b138174cc0c07 100644 --- a/tsc/internal/fourslash/tests/renamePrivateAccessor_test.go +++ b/tsc/pkg/fourslash/tests/renamePrivateAccessor_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenamePrivateAccessor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renamePrivateFields1_test.go b/tsc/pkg/fourslash/tests/renamePrivateFields1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renamePrivateFields1_test.go rename to tsc/pkg/fourslash/tests/renamePrivateFields1_test.go index 69a7084a46db3..fcbbe4317b38d 100644 --- a/tsc/internal/fourslash/tests/renamePrivateFields1_test.go +++ b/tsc/pkg/fourslash/tests/renamePrivateFields1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenamePrivateFields1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renamePrivateFields_test.go b/tsc/pkg/fourslash/tests/renamePrivateFields_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renamePrivateFields_test.go rename to tsc/pkg/fourslash/tests/renamePrivateFields_test.go index ae65b4d09a705..47fa2caa861bd 100644 --- a/tsc/internal/fourslash/tests/renamePrivateFields_test.go +++ b/tsc/pkg/fourslash/tests/renamePrivateFields_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenamePrivateFields(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renamePrivateMethod_test.go b/tsc/pkg/fourslash/tests/renamePrivateMethod_test.go similarity index 71% rename from tsc/internal/fourslash/tests/renamePrivateMethod_test.go rename to tsc/pkg/fourslash/tests/renamePrivateMethod_test.go index 443b6c0839bed..42b3c41a84cd7 100644 --- a/tsc/internal/fourslash/tests/renamePrivateMethod_test.go +++ b/tsc/pkg/fourslash/tests/renamePrivateMethod_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenamePrivateMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go b/tsc/pkg/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go rename to tsc/pkg/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go index cf7e562889212..f973636d50aaa 100644 --- a/tsc/internal/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go +++ b/tsc/pkg/fourslash/tests/renamePropertyAccessExpressionHeritageClause_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenamePropertyAccessExpressionHeritageClause(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go b/tsc/pkg/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go rename to tsc/pkg/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go index d91bd8808a1bc..4c15920751fc1 100644 --- a/tsc/internal/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go +++ b/tsc/pkg/fourslash/tests/renameQuotedSingleCharacterPropertyName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameQuotedSingleCharacterPropertyName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReExportDefault_test.go b/tsc/pkg/fourslash/tests/renameReExportDefault_test.go similarity index 88% rename from tsc/internal/fourslash/tests/renameReExportDefault_test.go rename to tsc/pkg/fourslash/tests/renameReExportDefault_test.go index 412faa297df5f..e38f08cec9418 100644 --- a/tsc/internal/fourslash/tests/renameReExportDefault_test.go +++ b/tsc/pkg/fourslash/tests/renameReExportDefault_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReExportDefault(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag1_test.go b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/renameReferenceFromLinkTag1_test.go rename to tsc/pkg/fourslash/tests/renameReferenceFromLinkTag1_test.go index b5b5885c2c309..c56583619bf7c 100644 --- a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag1_test.go +++ b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReferenceFromLinkTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag2_test.go b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/renameReferenceFromLinkTag2_test.go rename to tsc/pkg/fourslash/tests/renameReferenceFromLinkTag2_test.go index 5694f5a0e2f81..7ff4d39371add 100644 --- a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag2_test.go +++ b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReferenceFromLinkTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag3_test.go b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag3_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameReferenceFromLinkTag3_test.go rename to tsc/pkg/fourslash/tests/renameReferenceFromLinkTag3_test.go index 08ce34dbf27f3..f823010ade6e7 100644 --- a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag3_test.go +++ b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReferenceFromLinkTag3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag4_test.go b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag4_test.go similarity index 76% rename from tsc/internal/fourslash/tests/renameReferenceFromLinkTag4_test.go rename to tsc/pkg/fourslash/tests/renameReferenceFromLinkTag4_test.go index c286f0b62c36b..131590ee26b7b 100644 --- a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag4_test.go +++ b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReferenceFromLinkTag4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag5_test.go b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag5_test.go similarity index 76% rename from tsc/internal/fourslash/tests/renameReferenceFromLinkTag5_test.go rename to tsc/pkg/fourslash/tests/renameReferenceFromLinkTag5_test.go index 24038d8d9fad2..13660bb63855a 100644 --- a/tsc/internal/fourslash/tests/renameReferenceFromLinkTag5_test.go +++ b/tsc/pkg/fourslash/tests/renameReferenceFromLinkTag5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameReferenceFromLinkTag5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameRestBindingElement_test.go b/tsc/pkg/fourslash/tests/renameRestBindingElement_test.go similarity index 69% rename from tsc/internal/fourslash/tests/renameRestBindingElement_test.go rename to tsc/pkg/fourslash/tests/renameRestBindingElement_test.go index e7c374fdcab4f..d0357f2c6c263 100644 --- a/tsc/internal/fourslash/tests/renameRestBindingElement_test.go +++ b/tsc/pkg/fourslash/tests/renameRestBindingElement_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameRestBindingElement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameRest_test.go b/tsc/pkg/fourslash/tests/renameRest_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameRest_test.go rename to tsc/pkg/fourslash/tests/renameRest_test.go index abda9d12aebbf..d861ba8021c26 100644 --- a/tsc/internal/fourslash/tests/renameRest_test.go +++ b/tsc/pkg/fourslash/tests/renameRest_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameRest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralOk1_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralOk1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameStringLiteralOk1_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralOk1_test.go index 76dfe09e41ff6..6bbfb2796a37a 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralOk1_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralOk1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralOk1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralOk_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralOk_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameStringLiteralOk_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralOk_test.go index 31522ebcf31f7..7fff4d61df1c5 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralOk_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralOk_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralOk(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralTypes1_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralTypes1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameStringLiteralTypes1_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralTypes1_test.go index 13fe4ced468c4..3619d90f713e0 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralTypes1_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralTypes1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralTypes1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralTypes2_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralTypes2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameStringLiteralTypes2_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralTypes2_test.go index b2215be168f7b..5f3e2c506d0e3 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralTypes2_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralTypes2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralTypes2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralTypes3_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralTypes3_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameStringLiteralTypes3_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralTypes3_test.go index a82ed14d553cc..d2cba0f5388f8 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralTypes3_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralTypes3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralTypes3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralTypes4_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralTypes4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameStringLiteralTypes4_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralTypes4_test.go index 6a7228d8304aa..9324860a3898b 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralTypes4_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralTypes4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralTypes4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringLiteralTypes5_test.go b/tsc/pkg/fourslash/tests/renameStringLiteralTypes5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/renameStringLiteralTypes5_test.go rename to tsc/pkg/fourslash/tests/renameStringLiteralTypes5_test.go index 8d3c30354f01f..91db0a4205e47 100644 --- a/tsc/internal/fourslash/tests/renameStringLiteralTypes5_test.go +++ b/tsc/pkg/fourslash/tests/renameStringLiteralTypes5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringLiteralTypes5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringPropertyNames2_test.go b/tsc/pkg/fourslash/tests/renameStringPropertyNames2_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameStringPropertyNames2_test.go rename to tsc/pkg/fourslash/tests/renameStringPropertyNames2_test.go index 5b3ff3d693863..0109f094b21b0 100644 --- a/tsc/internal/fourslash/tests/renameStringPropertyNames2_test.go +++ b/tsc/pkg/fourslash/tests/renameStringPropertyNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringPropertyNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameStringPropertyNames_test.go b/tsc/pkg/fourslash/tests/renameStringPropertyNames_test.go similarity index 81% rename from tsc/internal/fourslash/tests/renameStringPropertyNames_test.go rename to tsc/pkg/fourslash/tests/renameStringPropertyNames_test.go index 0991bd0324b50..e13c8e4b54107 100644 --- a/tsc/internal/fourslash/tests/renameStringPropertyNames_test.go +++ b/tsc/pkg/fourslash/tests/renameStringPropertyNames_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameStringPropertyNames(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go b/tsc/pkg/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go similarity index 91% rename from tsc/internal/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go rename to tsc/pkg/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go index c1f4715235a28..9343d9645df63 100644 --- a/tsc/internal/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go +++ b/tsc/pkg/fourslash/tests/renameTemplateLiteralsComputedProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameTemplateLiteralsComputedProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go b/tsc/pkg/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go similarity index 85% rename from tsc/internal/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go rename to tsc/pkg/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go index 23cd00dd179ce..68dbef5fb8955 100644 --- a/tsc/internal/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go +++ b/tsc/pkg/fourslash/tests/renameTemplateLiteralsDefinePropertyJs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameTemplateLiteralsDefinePropertyJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameThis_test.go b/tsc/pkg/fourslash/tests/renameThis_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameThis_test.go rename to tsc/pkg/fourslash/tests/renameThis_test.go index a78652aa8a582..259b6e784f409 100644 --- a/tsc/internal/fourslash/tests/renameThis_test.go +++ b/tsc/pkg/fourslash/tests/renameThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameUMDModuleAlias1_test.go b/tsc/pkg/fourslash/tests/renameUMDModuleAlias1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/renameUMDModuleAlias1_test.go rename to tsc/pkg/fourslash/tests/renameUMDModuleAlias1_test.go index 445f28854dbb5..82e113c182be7 100644 --- a/tsc/internal/fourslash/tests/renameUMDModuleAlias1_test.go +++ b/tsc/pkg/fourslash/tests/renameUMDModuleAlias1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameUMDModuleAlias1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameUMDModuleAlias2_test.go b/tsc/pkg/fourslash/tests/renameUMDModuleAlias2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/renameUMDModuleAlias2_test.go rename to tsc/pkg/fourslash/tests/renameUMDModuleAlias2_test.go index 215fa8b9c5f3a..8237d8b8586d8 100644 --- a/tsc/internal/fourslash/tests/renameUMDModuleAlias2_test.go +++ b/tsc/pkg/fourslash/tests/renameUMDModuleAlias2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameUMDModuleAlias2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/renameUnresolvedReexport1_test.go b/tsc/pkg/fourslash/tests/renameUnresolvedReexport1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/renameUnresolvedReexport1_test.go rename to tsc/pkg/fourslash/tests/renameUnresolvedReexport1_test.go index be5414955482c..526f6488dc1b8 100644 --- a/tsc/internal/fourslash/tests/renameUnresolvedReexport1_test.go +++ b/tsc/pkg/fourslash/tests/renameUnresolvedReexport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameUnresolvedReexport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/restArgSignatureHelp_test.go b/tsc/pkg/fourslash/tests/restArgSignatureHelp_test.go similarity index 79% rename from tsc/internal/fourslash/tests/restArgSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/restArgSignatureHelp_test.go index 43b85e6f6d08b..8392bd6b9826f 100644 --- a/tsc/internal/fourslash/tests/restArgSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/restArgSignatureHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRestArgSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/restArgType_test.go b/tsc/pkg/fourslash/tests/restArgType_test.go similarity index 95% rename from tsc/internal/fourslash/tests/restArgType_test.go rename to tsc/pkg/fourslash/tests/restArgType_test.go index eb8499c05c989..7617f073bc50e 100644 --- a/tsc/internal/fourslash/tests/restArgType_test.go +++ b/tsc/pkg/fourslash/tests/restArgType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRestArgType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/restParamsContextuallyTyped_test.go b/tsc/pkg/fourslash/tests/restParamsContextuallyTyped_test.go similarity index 81% rename from tsc/internal/fourslash/tests/restParamsContextuallyTyped_test.go rename to tsc/pkg/fourslash/tests/restParamsContextuallyTyped_test.go index d8b432d0fa73e..ce8fc9db977ea 100644 --- a/tsc/internal/fourslash/tests/restParamsContextuallyTyped_test.go +++ b/tsc/pkg/fourslash/tests/restParamsContextuallyTyped_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRestParamsContextuallyTyped(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/returnRecursiveType_test.go b/tsc/pkg/fourslash/tests/returnRecursiveType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/returnRecursiveType_test.go rename to tsc/pkg/fourslash/tests/returnRecursiveType_test.go index 22218f506c9be..b11b6f685d31e 100644 --- a/tsc/internal/fourslash/tests/returnRecursiveType_test.go +++ b/tsc/pkg/fourslash/tests/returnRecursiveType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReturnRecursiveType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/returnTypeOfGenericFunction1_test.go b/tsc/pkg/fourslash/tests/returnTypeOfGenericFunction1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/returnTypeOfGenericFunction1_test.go rename to tsc/pkg/fourslash/tests/returnTypeOfGenericFunction1_test.go index 294150c584c59..3d33e227acfbf 100644 --- a/tsc/internal/fourslash/tests/returnTypeOfGenericFunction1_test.go +++ b/tsc/pkg/fourslash/tests/returnTypeOfGenericFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReturnTypeOfGenericFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/reverseMappedTypeQuickInfo_test.go b/tsc/pkg/fourslash/tests/reverseMappedTypeQuickInfo_test.go similarity index 89% rename from tsc/internal/fourslash/tests/reverseMappedTypeQuickInfo_test.go rename to tsc/pkg/fourslash/tests/reverseMappedTypeQuickInfo_test.go index 27cbf6728bc72..5b0e336ca2e1d 100644 --- a/tsc/internal/fourslash/tests/reverseMappedTypeQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/reverseMappedTypeQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestReverseMappedTypeQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go similarity index 92% rename from tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go rename to tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go index 2f614136da781..8cf146cd5594c 100644 --- a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go +++ b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRewriteRelativeImportExtensionsProjectReferences1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go rename to tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go index f81383ab4039a..eff7b739262fc 100644 --- a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go +++ b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRewriteRelativeImportExtensionsProjectReferences2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go similarity index 91% rename from tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go rename to tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go index 81e8312364776..fa03e4e33f53a 100644 --- a/tsc/internal/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go +++ b/tsc/pkg/fourslash/tests/rewriteRelativeImportExtensionsProjectReferences3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRewriteRelativeImportExtensionsProjectReferences3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/satisfiesOperatorCompletion_test.go b/tsc/pkg/fourslash/tests/satisfiesOperatorCompletion_test.go similarity index 78% rename from tsc/internal/fourslash/tests/satisfiesOperatorCompletion_test.go rename to tsc/pkg/fourslash/tests/satisfiesOperatorCompletion_test.go index 797b9cc53b885..7f035cdd192d8 100644 --- a/tsc/internal/fourslash/tests/satisfiesOperatorCompletion_test.go +++ b/tsc/pkg/fourslash/tests/satisfiesOperatorCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSatisfiesOperatorCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/scopeOfUnionProperties_test.go b/tsc/pkg/fourslash/tests/scopeOfUnionProperties_test.go similarity index 77% rename from tsc/internal/fourslash/tests/scopeOfUnionProperties_test.go rename to tsc/pkg/fourslash/tests/scopeOfUnionProperties_test.go index ea309154bb975..4bba73a712e0e 100644 --- a/tsc/internal/fourslash/tests/scopeOfUnionProperties_test.go +++ b/tsc/pkg/fourslash/tests/scopeOfUnionProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestScopeOfUnionProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/selfReferencedExternalModule2_test.go b/tsc/pkg/fourslash/tests/selfReferencedExternalModule2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/selfReferencedExternalModule2_test.go rename to tsc/pkg/fourslash/tests/selfReferencedExternalModule2_test.go index 8fbee61cb0e0e..c33299192b55e 100644 --- a/tsc/internal/fourslash/tests/selfReferencedExternalModule2_test.go +++ b/tsc/pkg/fourslash/tests/selfReferencedExternalModule2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSelfReferencedExternalModule2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/selfReferencedExternalModule_test.go b/tsc/pkg/fourslash/tests/selfReferencedExternalModule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/selfReferencedExternalModule_test.go rename to tsc/pkg/fourslash/tests/selfReferencedExternalModule_test.go index 3e240cfaa2bd4..46ba84c34424b 100644 --- a/tsc/internal/fourslash/tests/selfReferencedExternalModule_test.go +++ b/tsc/pkg/fourslash/tests/selfReferencedExternalModule_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSelfReferencedExternalModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassification1_test.go b/tsc/pkg/fourslash/tests/semanticClassification1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/semanticClassification1_test.go rename to tsc/pkg/fourslash/tests/semanticClassification1_test.go index 3b3c0fb1449b0..eda5a66c26403 100644 --- a/tsc/internal/fourslash/tests/semanticClassification1_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassification1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassification1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassification2_test.go b/tsc/pkg/fourslash/tests/semanticClassification2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/semanticClassification2_test.go rename to tsc/pkg/fourslash/tests/semanticClassification2_test.go index b5fd8d0d95c4d..2feb2dbcbaefb 100644 --- a/tsc/internal/fourslash/tests/semanticClassification2_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassification2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassification2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationAlias_test.go b/tsc/pkg/fourslash/tests/semanticClassificationAlias_test.go similarity index 84% rename from tsc/internal/fourslash/tests/semanticClassificationAlias_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationAlias_test.go index 43fa42e59c966..fbf4ae0c486cb 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationAlias_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationClassExpressionMethod_test.go b/tsc/pkg/fourslash/tests/semanticClassificationClassExpressionMethod_test.go similarity index 85% rename from tsc/internal/fourslash/tests/semanticClassificationClassExpressionMethod_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationClassExpressionMethod_test.go index 1dc30107256d8..19e4175f3a592 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationClassExpressionMethod_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationClassExpressionMethod_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationClassExpressionMethod(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationClassExpression_test.go b/tsc/pkg/fourslash/tests/semanticClassificationClassExpression_test.go similarity index 84% rename from tsc/internal/fourslash/tests/semanticClassificationClassExpression_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationClassExpression_test.go index 868e75980fba4..e356716829e99 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationClassExpression_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationClassExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationClassExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationInTemplateExpressions_test.go b/tsc/pkg/fourslash/tests/semanticClassificationInTemplateExpressions_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticClassificationInTemplateExpressions_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationInTemplateExpressions_test.go index f6d6299e1c9fa..e7baa2e902794 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationInTemplateExpressions_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationInTemplateExpressions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationInTemplateExpressions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go b/tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go index f03bc837a46f9..14f71957cc03e 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationInstantiatedModuleWithVariableOfSameName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go b/tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go index 4cc607ec1d37b..4221983035be6 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationInstantiatedModuleWithVariableOfSameName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationInstantiatedModuleWithVariableOfSameName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationJSX_test.go b/tsc/pkg/fourslash/tests/semanticClassificationJSX_test.go similarity index 85% rename from tsc/internal/fourslash/tests/semanticClassificationJSX_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationJSX_test.go index ee42282835dce..4fe43ebd26f60 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationJSX_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationJSX_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationJSX(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationModules_test.go b/tsc/pkg/fourslash/tests/semanticClassificationModules_test.go similarity index 88% rename from tsc/internal/fourslash/tests/semanticClassificationModules_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationModules_test.go index b87005ae5c627..78190c19e8a2b 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationModules_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationModules_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationModules(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go b/tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go index 3ddc4f8f24905..9c8eff7cfff5f 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationUninstantiatedModuleWithVariableOfSameName1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go b/tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go index 7d14a59064358..b26237a3fa024 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationUninstantiatedModuleWithVariableOfSameName2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationUninstantiatedModuleWithVariableOfSameName2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificationWithUnionTypes_test.go b/tsc/pkg/fourslash/tests/semanticClassificationWithUnionTypes_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticClassificationWithUnionTypes_test.go rename to tsc/pkg/fourslash/tests/semanticClassificationWithUnionTypes_test.go index ff2260066f65a..2a226a7ec8e72 100644 --- a/tsc/internal/fourslash/tests/semanticClassificationWithUnionTypes_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificationWithUnionTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificationWithUnionTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticClassificatonTypeAlias_test.go b/tsc/pkg/fourslash/tests/semanticClassificatonTypeAlias_test.go similarity index 87% rename from tsc/internal/fourslash/tests/semanticClassificatonTypeAlias_test.go rename to tsc/pkg/fourslash/tests/semanticClassificatonTypeAlias_test.go index 053788629739f..03516053cd323 100644 --- a/tsc/internal/fourslash/tests/semanticClassificatonTypeAlias_test.go +++ b/tsc/pkg/fourslash/tests/semanticClassificatonTypeAlias_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticClassificatonTypeAlias(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables2_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables2_test.go similarity index 91% rename from tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables2_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables2_test.go index 415be1f4608a3..0565313a883ac 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables2_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationCallableVariables2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables_test.go similarity index 92% rename from tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables_test.go index 5196bfcf231a2..d33faf613110e 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationCallableVariables_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationCallableVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationCallableVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationClassProperties_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationClassProperties_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticModernClassificationClassProperties_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationClassProperties_test.go index 9da72e4eeb832..e95053df6a64c 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationClassProperties_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationClassProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationClassProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationConstructorTypes_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationConstructorTypes_test.go similarity index 87% rename from tsc/internal/fourslash/tests/semanticModernClassificationConstructorTypes_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationConstructorTypes_test.go index e305517182a5a..25c9dcca4e522 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationConstructorTypes_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationConstructorTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationConstructorTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationFunctions_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationFunctions_test.go similarity index 90% rename from tsc/internal/fourslash/tests/semanticModernClassificationFunctions_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationFunctions_test.go index 0b92e7124a867..e6ea88739e1d9 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationFunctions_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationFunctions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationFunctions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go index faa5456ff7850..d5d355b10d9a9 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationInfinityAndNaN_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationInfinityAndNaN(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationInterfaces_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationInterfaces_test.go similarity index 90% rename from tsc/internal/fourslash/tests/semanticModernClassificationInterfaces_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationInterfaces_test.go index 95e263a564ae5..a2cfe956504a0 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationInterfaces_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationInterfaces_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationInterfaces(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationMembers_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationMembers_test.go similarity index 89% rename from tsc/internal/fourslash/tests/semanticModernClassificationMembers_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationMembers_test.go index 6759ef45ecc82..152d9ad6a6ab8 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationMembers_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationObjectProperties_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationObjectProperties_test.go similarity index 85% rename from tsc/internal/fourslash/tests/semanticModernClassificationObjectProperties_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationObjectProperties_test.go index 1ab230184cb41..5db6676872f55 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationObjectProperties_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationObjectProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationObjectProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semanticModernClassificationVariables_test.go b/tsc/pkg/fourslash/tests/semanticModernClassificationVariables_test.go similarity index 87% rename from tsc/internal/fourslash/tests/semanticModernClassificationVariables_test.go rename to tsc/pkg/fourslash/tests/semanticModernClassificationVariables_test.go index 0a39a5ab88e36..3256c53e3cc43 100644 --- a/tsc/internal/fourslash/tests/semanticModernClassificationVariables_test.go +++ b/tsc/pkg/fourslash/tests/semanticModernClassificationVariables_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemanticModernClassificationVariables(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go b/tsc/pkg/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go similarity index 76% rename from tsc/internal/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go rename to tsc/pkg/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go index 70158736379e4..43a65d5c4ba57 100644 --- a/tsc/internal/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go +++ b/tsc/pkg/fourslash/tests/semicolonFormattingAfterArrayLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemicolonFormattingAfterArrayLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semicolonFormattingInsideAComment_test.go b/tsc/pkg/fourslash/tests/semicolonFormattingInsideAComment_test.go similarity index 76% rename from tsc/internal/fourslash/tests/semicolonFormattingInsideAComment_test.go rename to tsc/pkg/fourslash/tests/semicolonFormattingInsideAComment_test.go index b3b5bfdae36ac..4f15ecaaa205f 100644 --- a/tsc/internal/fourslash/tests/semicolonFormattingInsideAComment_test.go +++ b/tsc/pkg/fourslash/tests/semicolonFormattingInsideAComment_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemicolonFormattingInsideAComment(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go b/tsc/pkg/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go similarity index 78% rename from tsc/internal/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go rename to tsc/pkg/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go index ddb5194ee16ab..2e6843a04ec96 100644 --- a/tsc/internal/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/semicolonFormattingInsideAStringLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemicolonFormattingInsideAStringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semicolonFormattingNestedStatements_test.go b/tsc/pkg/fourslash/tests/semicolonFormattingNestedStatements_test.go similarity index 85% rename from tsc/internal/fourslash/tests/semicolonFormattingNestedStatements_test.go rename to tsc/pkg/fourslash/tests/semicolonFormattingNestedStatements_test.go index 390b753b20ea2..ef89d57812cd8 100644 --- a/tsc/internal/fourslash/tests/semicolonFormattingNestedStatements_test.go +++ b/tsc/pkg/fourslash/tests/semicolonFormattingNestedStatements_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemicolonFormattingNestedStatements(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/semicolonFormatting_test.go b/tsc/pkg/fourslash/tests/semicolonFormatting_test.go similarity index 77% rename from tsc/internal/fourslash/tests/semicolonFormatting_test.go rename to tsc/pkg/fourslash/tests/semicolonFormatting_test.go index 7b8a1b949b885..c9951d4834202 100644 --- a/tsc/internal/fourslash/tests/semicolonFormatting_test.go +++ b/tsc/pkg/fourslash/tests/semicolonFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSemicolonFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/sideEffectImportsSuggestion1_test.go b/tsc/pkg/fourslash/tests/sideEffectImportsSuggestion1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/sideEffectImportsSuggestion1_test.go rename to tsc/pkg/fourslash/tests/sideEffectImportsSuggestion1_test.go index 7d24d27a84c05..d0c116c571092 100644 --- a/tsc/internal/fourslash/tests/sideEffectImportsSuggestion1_test.go +++ b/tsc/pkg/fourslash/tests/sideEffectImportsSuggestion1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSideEffectImportsSuggestion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelp01_test.go b/tsc/pkg/fourslash/tests/signatureHelp01_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelp01_test.go rename to tsc/pkg/fourslash/tests/signatureHelp01_test.go index e1dbcc95bfb2c..f017978d28370 100644 --- a/tsc/internal/fourslash/tests/signatureHelp01_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelp01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelp01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAfterParameterVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpAfterParameterVS_test.go similarity index 76% rename from tsc/internal/fourslash/tests/signatureHelpAfterParameterVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAfterParameterVS_test.go index 04c7855db7580..725480c3c28ca 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAfterParameterVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAfterParameterVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAfterParameterVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAfterParameter_test.go b/tsc/pkg/fourslash/tests/signatureHelpAfterParameter_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpAfterParameter_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAfterParameter_test.go index 34d8873a69c4a..4b6b363019faf 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAfterParameter_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAfterParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAfterParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAnonymousFunction_test.go b/tsc/pkg/fourslash/tests/signatureHelpAnonymousFunction_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpAnonymousFunction_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAnonymousFunction_test.go index c6e0c644f9ecb..4e11bad2ed081 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAnonymousFunction_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAnonymousFunction_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAnonymousFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAnonymousTypeVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpAnonymousTypeVS_test.go similarity index 72% rename from tsc/internal/fourslash/tests/signatureHelpAnonymousTypeVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAnonymousTypeVS_test.go index 142f19fcf1a35..5137f32003310 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAnonymousTypeVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAnonymousTypeVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAnonymousTypeVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAnonymousType_test.go b/tsc/pkg/fourslash/tests/signatureHelpAnonymousType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/signatureHelpAnonymousType_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAnonymousType_test.go index 741e9458db685..f85a2de9acec6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAnonymousType_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAnonymousType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAnonymousType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpApplicableRange_test.go b/tsc/pkg/fourslash/tests/signatureHelpApplicableRange_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpApplicableRange_test.go rename to tsc/pkg/fourslash/tests/signatureHelpApplicableRange_test.go index fb033a321b3c8..3cfa1cbb1a3f3 100644 --- a/tsc/internal/fourslash/tests/signatureHelpApplicableRange_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpApplicableRange_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpApplicableRange(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAtEOF2_test.go b/tsc/pkg/fourslash/tests/signatureHelpAtEOF2_test.go similarity index 71% rename from tsc/internal/fourslash/tests/signatureHelpAtEOF2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAtEOF2_test.go index d694f78b53686..69f7039c6db7c 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAtEOF2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAtEOF2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAtEOF2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpAtEOF_test.go b/tsc/pkg/fourslash/tests/signatureHelpAtEOF_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpAtEOF_test.go rename to tsc/pkg/fourslash/tests/signatureHelpAtEOF_test.go index 2652a55f5dfce..04bbe6ea313ee 100644 --- a/tsc/internal/fourslash/tests/signatureHelpAtEOF_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpAtEOF_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpAtEOF(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpBeforeSemicolon1_test.go b/tsc/pkg/fourslash/tests/signatureHelpBeforeSemicolon1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpBeforeSemicolon1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpBeforeSemicolon1_test.go index 5e19b9dc914a8..1f8fd5267cafc 100644 --- a/tsc/internal/fourslash/tests/signatureHelpBeforeSemicolon1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpBeforeSemicolon1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpBeforeSemicolon1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go b/tsc/pkg/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go similarity index 78% rename from tsc/internal/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go rename to tsc/pkg/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go index 419a3c44120f6..0e36d30096e5e 100644 --- a/tsc/internal/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpBetweenTypeArgsAndArgs_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTokenCrash2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpBindingPatternVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpBindingPatternVS_test.go similarity index 90% rename from tsc/internal/fourslash/tests/signatureHelpBindingPatternVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpBindingPatternVS_test.go index 2b252f819953d..5c806cf56fa1f 100644 --- a/tsc/internal/fourslash/tests/signatureHelpBindingPatternVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpBindingPatternVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpBindingPatternVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpBindingPattern_test.go b/tsc/pkg/fourslash/tests/signatureHelpBindingPattern_test.go similarity index 94% rename from tsc/internal/fourslash/tests/signatureHelpBindingPattern_test.go rename to tsc/pkg/fourslash/tests/signatureHelpBindingPattern_test.go index e4d3f01c0e97b..cea69ef775b16 100644 --- a/tsc/internal/fourslash/tests/signatureHelpBindingPattern_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpBindingPattern_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests for signature help with binding pattern parameters. diff --git a/tsc/internal/fourslash/tests/signatureHelpCallExpressionJs_test.go b/tsc/pkg/fourslash/tests/signatureHelpCallExpressionJs_test.go similarity index 90% rename from tsc/internal/fourslash/tests/signatureHelpCallExpressionJs_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCallExpressionJs_test.go index 1353ee41c8793..e72019cbc3faa 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCallExpressionJs_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCallExpressionJs_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCallExpressionJs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCallExpressionTuples_test.go b/tsc/pkg/fourslash/tests/signatureHelpCallExpressionTuples_test.go similarity index 94% rename from tsc/internal/fourslash/tests/signatureHelpCallExpressionTuples_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCallExpressionTuples_test.go index c80e3f4ff826e..01203f1bb926a 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCallExpressionTuples_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCallExpressionTuples_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCallExpressionTuples(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCallExpression_test.go b/tsc/pkg/fourslash/tests/signatureHelpCallExpression_test.go similarity index 85% rename from tsc/internal/fourslash/tests/signatureHelpCallExpression_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCallExpression_test.go index f2de91a79107d..ad4e643a5867c 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCallExpression_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCallExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCallExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go similarity index 95% rename from tsc/internal/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go index 5b42c0e153d56..2dd269a932b5f 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembersVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsClassMembersVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsClassMembers_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembers_test.go similarity index 96% rename from tsc/internal/fourslash/tests/signatureHelpCommentsClassMembers_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembers_test.go index b7472d8d62f27..6d88eb943571b 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsClassMembers_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassMembers_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsClassMembers(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsClassVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassVS_test.go similarity index 88% rename from tsc/internal/fourslash/tests/signatureHelpCommentsClassVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsClassVS_test.go index 026ff38a3f0f7..0450057e8c316 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsClassVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsClassVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsClassVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsClass_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsClass_test.go similarity index 91% rename from tsc/internal/fourslash/tests/signatureHelpCommentsClass_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsClass_test.go index 81696228a7739..fa73ec01d1993 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsClass_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go similarity index 96% rename from tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go index beb9b89e34341..7baee4f0cd6a8 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsingVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsCommentParsingVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsing_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsing_test.go similarity index 97% rename from tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsing_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsing_test.go index 841e6a89f2d79..627ce58b2562b 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsCommentParsing_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsCommentParsing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsCommentParsing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go index ef37f296efd5f..39bfcbd0f3838 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclarationVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsFunctionDeclarationVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go index 1c1e89d6ab4d5..44e9d17a4cd48 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go index 0037efd640af8..3162906183a5c 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpressionVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsFunctionExpressionVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go similarity index 91% rename from tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go rename to tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go index c87eb96d78c7a..42801ebf786e7 100644 --- a/tsc/internal/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpCommentsFunctionExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpCommentsFunctionExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpConstructExpression_test.go b/tsc/pkg/fourslash/tests/signatureHelpConstructExpression_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpConstructExpression_test.go rename to tsc/pkg/fourslash/tests/signatureHelpConstructExpression_test.go index 2095a1aa2a835..4f161ca6bd916 100644 --- a/tsc/internal/fourslash/tests/signatureHelpConstructExpression_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpConstructExpression_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpConstructExpression(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go similarity index 76% rename from tsc/internal/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go index ec2d89608ac6e..0772a0b8cb35d 100644 --- a/tsc/internal/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamPropertiesVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpConstructorCallParamPropertiesVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go b/tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go rename to tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go index c689bc6113e58..bde707a3b3021 100644 --- a/tsc/internal/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpConstructorCallParamProperties_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpConstructorCallParamProperties(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpConstructorInheritance_test.go b/tsc/pkg/fourslash/tests/signatureHelpConstructorInheritance_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpConstructorInheritance_test.go rename to tsc/pkg/fourslash/tests/signatureHelpConstructorInheritance_test.go index 3d4f450e1a5bd..20f35de432790 100644 --- a/tsc/internal/fourslash/tests/signatureHelpConstructorInheritance_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpConstructorInheritance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpConstructorInheritance(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpConstructorOverload_test.go b/tsc/pkg/fourslash/tests/signatureHelpConstructorOverload_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpConstructorOverload_test.go rename to tsc/pkg/fourslash/tests/signatureHelpConstructorOverload_test.go index 61852d926f25c..e5910cf6168c7 100644 --- a/tsc/internal/fourslash/tests/signatureHelpConstructorOverload_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpConstructorOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpConstructorOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go b/tsc/pkg/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go rename to tsc/pkg/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go index 6c1cdf0be5e5b..99060a570a5e5 100644 --- a/tsc/internal/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpContextualConstructSignatureNoCrash_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Tests that signature help does not panic when the contextual type has only construct signatures diff --git a/tsc/internal/fourslash/tests/signatureHelpEmptyList_test.go b/tsc/pkg/fourslash/tests/signatureHelpEmptyList_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpEmptyList_test.go rename to tsc/pkg/fourslash/tests/signatureHelpEmptyList_test.go index 46fad5e1191bf..3b31791008200 100644 --- a/tsc/internal/fourslash/tests/signatureHelpEmptyList_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpEmptyList_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpEmptyList(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go similarity index 93% rename from tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go index da74c5e69fcfb..600320ba065f8 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExpandedRestTuplesLocalLabels1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go similarity index 95% rename from tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go index 1e4febb443177..7e10878a05c95 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuplesLocalLabels1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExpandedRestTuplesLocalLabels1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuples_test.go b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuples_test.go similarity index 92% rename from tsc/internal/fourslash/tests/signatureHelpExpandedRestTuples_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuples_test.go index 54b3a92591277..daf9a61007266 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExpandedRestTuples_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestTuples_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExpandedRestTuples(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go similarity index 92% rename from tsc/internal/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go index 599d8cc680ef1..88854f4988420 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExpandedRestUnlabeledTuples_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExpandedRestUnlabeledTuples(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go b/tsc/pkg/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go similarity index 96% rename from tsc/internal/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go index de1414b52fb54..2c41a1f5be790 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExpandedTuplesArgumentIndex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExpandedTuplesArgumentIndex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpExplicitTypeArguments_test.go b/tsc/pkg/fourslash/tests/signatureHelpExplicitTypeArguments_test.go similarity index 94% rename from tsc/internal/fourslash/tests/signatureHelpExplicitTypeArguments_test.go rename to tsc/pkg/fourslash/tests/signatureHelpExplicitTypeArguments_test.go index a500e35a55f75..250a4ec2d0393 100644 --- a/tsc/internal/fourslash/tests/signatureHelpExplicitTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpExplicitTypeArguments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpExplicitTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpFilteredTriggers03_test.go b/tsc/pkg/fourslash/tests/signatureHelpFilteredTriggers03_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpFilteredTriggers03_test.go rename to tsc/pkg/fourslash/tests/signatureHelpFilteredTriggers03_test.go index e1bb8f9c4b680..9af15b1b195fd 100644 --- a/tsc/internal/fourslash/tests/signatureHelpFilteredTriggers03_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpFilteredTriggers03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpFilteredTriggers03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go b/tsc/pkg/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go rename to tsc/pkg/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go index 77a1d30aa58f1..d5c78624076a8 100644 --- a/tsc/internal/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpForNonlocalTypeDoesNotUseImportType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpForNonlocalTypeDoesNotUseImportType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpForOptionalMethods_test.go b/tsc/pkg/fourslash/tests/signatureHelpForOptionalMethods_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpForOptionalMethods_test.go rename to tsc/pkg/fourslash/tests/signatureHelpForOptionalMethods_test.go index 01a59269d03ab..49c562f6f2213 100644 --- a/tsc/internal/fourslash/tests/signatureHelpForOptionalMethods_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpForOptionalMethods_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpForOptionalMethods(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go b/tsc/pkg/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go rename to tsc/pkg/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go index a9df1ecae800e..335058c1e67e5 100644 --- a/tsc/internal/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpForSignatureWithUnreachableType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpForSignatureWithUnreachableType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpForSuperCalls1_test.go b/tsc/pkg/fourslash/tests/signatureHelpForSuperCalls1_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpForSuperCalls1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpForSuperCalls1_test.go index 4b8d6c82a9efb..76c0bbf93bcb0 100644 --- a/tsc/internal/fourslash/tests/signatureHelpForSuperCalls1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpForSuperCalls1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpForSuperCalls1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpFunctionOverload_test.go b/tsc/pkg/fourslash/tests/signatureHelpFunctionOverload_test.go similarity index 88% rename from tsc/internal/fourslash/tests/signatureHelpFunctionOverload_test.go rename to tsc/pkg/fourslash/tests/signatureHelpFunctionOverload_test.go index 64541272fcf9a..e40db225ef322 100644 --- a/tsc/internal/fourslash/tests/signatureHelpFunctionOverload_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpFunctionOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpFunctionOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpFunctionParameter_test.go b/tsc/pkg/fourslash/tests/signatureHelpFunctionParameter_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpFunctionParameter_test.go rename to tsc/pkg/fourslash/tests/signatureHelpFunctionParameter_test.go index 231373b4513cd..cd3dc0b487db8 100644 --- a/tsc/internal/fourslash/tests/signatureHelpFunctionParameter_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpFunctionParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpFunctionParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpImplicitConstructor_test.go b/tsc/pkg/fourslash/tests/signatureHelpImplicitConstructor_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpImplicitConstructor_test.go rename to tsc/pkg/fourslash/tests/signatureHelpImplicitConstructor_test.go index 89eb1998f75ef..9237fb949e617 100644 --- a/tsc/internal/fourslash/tests/signatureHelpImplicitConstructor_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpImplicitConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpImplicitConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go b/tsc/pkg/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go rename to tsc/pkg/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go index 7b73f4ddeeca3..6077c7b04281a 100644 --- a/tsc/internal/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpImportStarFromExportEquals_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpImportStarFromExportEquals(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go b/tsc/pkg/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go similarity index 78% rename from tsc/internal/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go index ff7eea1312655..93d4b48d82bc2 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInAdjacentBlockBody_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInAdjacentBlockBody(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInCallback_test.go b/tsc/pkg/fourslash/tests/signatureHelpInCallback_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpInCallback_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInCallback_test.go index dfe787fe446ea..a3b00b99b1d49 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInCallback_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInCallback_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInCallback(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go index c9579ef355c53..034124a6ae9e9 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInCompleteGenericsCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInCompleteGenericsCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go b/tsc/pkg/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go index 46d34b7d61c10..819428febf9ea 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInFunctionCallOnFunctionDeclarationInMultipleFiles(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInFunctionCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpInFunctionCall_test.go similarity index 76% rename from tsc/internal/fourslash/tests/signatureHelpInFunctionCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInFunctionCall_test.go index 17efeb399be4e..d444692b440e7 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInFunctionCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInFunctionCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInFunctionCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInParenthetical_test.go b/tsc/pkg/fourslash/tests/signatureHelpInParenthetical_test.go similarity index 83% rename from tsc/internal/fourslash/tests/signatureHelpInParenthetical_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInParenthetical_test.go index 63a0c013c3716..00a9bf9719e9b 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInParenthetical_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInParenthetical_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInParenthetical(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInRecursiveType_test.go b/tsc/pkg/fourslash/tests/signatureHelpInRecursiveType_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpInRecursiveType_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInRecursiveType_test.go index 06eedffe76d9f..5177203296c16 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInRecursiveType_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInRecursiveType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInRecursiveType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpIncompleteCalls_test.go b/tsc/pkg/fourslash/tests/signatureHelpIncompleteCalls_test.go similarity index 90% rename from tsc/internal/fourslash/tests/signatureHelpIncompleteCalls_test.go rename to tsc/pkg/fourslash/tests/signatureHelpIncompleteCalls_test.go index 61dbb9500ffa2..6e799f4bb8782 100644 --- a/tsc/internal/fourslash/tests/signatureHelpIncompleteCalls_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpIncompleteCalls_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpIncompleteCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go b/tsc/pkg/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go rename to tsc/pkg/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go index 0d3585563bcfc..9a0291f2b7e12 100644 --- a/tsc/internal/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpIncompleteJsxAttribute_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // An incomplete JSX attribute (`c=` with no value) followed on the next line by a closing diff --git a/tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go similarity index 77% rename from tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go index 2178c57d8bbd7..03122f7b64717 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTagVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInferenceJsDocImportTagVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go b/tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go index 856671b051b4a..bcca7a83813e5 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInferenceJsDocImportTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInferenceJsDocImportTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpInference_test.go b/tsc/pkg/fourslash/tests/signatureHelpInference_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpInference_test.go rename to tsc/pkg/fourslash/tests/signatureHelpInference_test.go index 1c1e04837db3d..ab6eddbf2934c 100644 --- a/tsc/internal/fourslash/tests/signatureHelpInference_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpInference_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpInference(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpIteratorNextVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpIteratorNextVS_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpIteratorNextVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpIteratorNextVS_test.go index 1b0beea05afa3..dd49ff04e5669 100644 --- a/tsc/internal/fourslash/tests/signatureHelpIteratorNextVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpIteratorNextVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpIteratorNextVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpIteratorNext_test.go b/tsc/pkg/fourslash/tests/signatureHelpIteratorNext_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpIteratorNext_test.go rename to tsc/pkg/fourslash/tests/signatureHelpIteratorNext_test.go index 1b932488bb38b..334fa9c82abce 100644 --- a/tsc/internal/fourslash/tests/signatureHelpIteratorNext_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpIteratorNext_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpIteratorNext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go index c802ef0391547..b6eba43db96aa 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTagVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSDocCallbackTagVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTag_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTag_test.go similarity index 89% rename from tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTag_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTag_test.go index 26e21ba528c04..02441f2447bdf 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSDocCallbackTag_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSDocCallbackTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSDocCallbackTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSDocTagsVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSDocTagsVS_test.go similarity index 89% rename from tsc/internal/fourslash/tests/signatureHelpJSDocTagsVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSDocTagsVS_test.go index 34366d56da57a..6599fcac314d0 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSDocTagsVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSDocTagsVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSDocTagsVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSDocTags_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSDocTags_test.go similarity index 92% rename from tsc/internal/fourslash/tests/signatureHelpJSDocTags_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSDocTags_test.go index a112daedd5168..240398214d70f 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSDocTags_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSDocTags_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSDocTags(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSMissingIdentifier_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSMissingIdentifier_test.go similarity index 77% rename from tsc/internal/fourslash/tests/signatureHelpJSMissingIdentifier_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSMissingIdentifier_test.go index 97ad08fa6cc37..e77e58365b5ca 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSMissingIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSMissingIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSMissingIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go similarity index 72% rename from tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go index f1c018cc76b3e..1204d2abc2e29 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccessVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSMissingPropertyAccessVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go similarity index 77% rename from tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go index 4403bf86e9e31..8a325ac03fd86 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSMissingPropertyAccess_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSMissingPropertyAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJSX_test.go b/tsc/pkg/fourslash/tests/signatureHelpJSX_test.go similarity index 76% rename from tsc/internal/fourslash/tests/signatureHelpJSX_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJSX_test.go index 498faae3f90f5..a47de584aaaf6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJSX_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJSX_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJSX(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go b/tsc/pkg/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go rename to tsc/pkg/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go index 1ebf226b58ab1..538f9074e7104 100644 --- a/tsc/internal/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpJsxTextLessThanTrigger_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpJsxTextLessThanTrigger(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpLeadingRestTuple_test.go b/tsc/pkg/fourslash/tests/signatureHelpLeadingRestTuple_test.go similarity index 90% rename from tsc/internal/fourslash/tests/signatureHelpLeadingRestTuple_test.go rename to tsc/pkg/fourslash/tests/signatureHelpLeadingRestTuple_test.go index 55f324d21bf30..fa123dbc1d6a5 100644 --- a/tsc/internal/fourslash/tests/signatureHelpLeadingRestTuple_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpLeadingRestTuple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpLeadingRestTuple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go b/tsc/pkg/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go similarity index 73% rename from tsc/internal/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go index 8d56f393534af..c8fa2ba3d7217 100644 --- a/tsc/internal/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpMalformedTaggedTemplateNoCrash1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpMalformedTaggedTemplateNoCrash1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpNegativeTests2_test.go b/tsc/pkg/fourslash/tests/signatureHelpNegativeTests2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpNegativeTests2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNegativeTests2_test.go index 227953ef0e0b5..510ba9964b4b9 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNegativeTests2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNegativeTests2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpNegativeTests2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpNegativeTests_test.go b/tsc/pkg/fourslash/tests/signatureHelpNegativeTests_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpNegativeTests_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNegativeTests_test.go index b4832ce3de4df..f65bca963a2c6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNegativeTests_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNegativeTests_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpNegativeTests(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go b/tsc/pkg/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go index 5e5c0bcccaea2..cd056238c5743 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNestedCallTrailingComma_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpNestedCallTrailingComma(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpNestedCalls_test.go b/tsc/pkg/fourslash/tests/signatureHelpNestedCalls_test.go similarity index 94% rename from tsc/internal/fourslash/tests/signatureHelpNestedCalls_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNestedCalls_test.go index a1916285dbdfe..f5b963abf6b9a 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNestedCalls_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNestedCalls_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpNestedCalls(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go b/tsc/pkg/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go similarity index 89% rename from tsc/internal/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go index 727a5245ef0fb..c62c7815660f6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNestedTypeArgumentGTBalance_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Regression for getPossibleTypeArgumentsInfo (see PR #3222): when scanning backward through diff --git a/tsc/internal/fourslash/tests/signatureHelpNoArguments_test.go b/tsc/pkg/fourslash/tests/signatureHelpNoArguments_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelpNoArguments_test.go rename to tsc/pkg/fourslash/tests/signatureHelpNoArguments_test.go index 6b8c6f94945c0..1f86951344d72 100644 --- a/tsc/internal/fourslash/tests/signatureHelpNoArguments_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpNoArguments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpNoArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go b/tsc/pkg/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go rename to tsc/pkg/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go index 4474fe034fc09..e631cbd501ca4 100644 --- a/tsc/internal/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpObjectCreationExpressionNoArgs_NotAvailable_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpObjectCreationExpressionNoArgs_NotAvailable(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpObjectLiteral_test.go b/tsc/pkg/fourslash/tests/signatureHelpObjectLiteral_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/signatureHelpObjectLiteral_test.go index 0c0a7cdf8f01d..9630ac7d39e02 100644 --- a/tsc/internal/fourslash/tests/signatureHelpObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnDeclaration_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnDeclaration_test.go similarity index 74% rename from tsc/internal/fourslash/tests/signatureHelpOnDeclaration_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnDeclaration_test.go index dc86224476fbc..1d4d93d2df915 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnImportDefer_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnImportDefer_test.go similarity index 75% rename from tsc/internal/fourslash/tests/signatureHelpOnImportDefer_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnImportDefer_test.go index e56292bd48f75..8aa8fac4ea37d 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnImportDefer_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnImportDefer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnImportDefer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnNestedOverloads_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnNestedOverloads_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpOnNestedOverloads_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnNestedOverloads_test.go index db8142b0a9f3e..bfbb669eaf6bd 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnNestedOverloads_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnNestedOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnNestedOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnOverloadOnConst_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadOnConst_test.go similarity index 88% rename from tsc/internal/fourslash/tests/signatureHelpOnOverloadOnConst_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnOverloadOnConst_test.go index 115763a50c364..52cb02841fde1 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnOverloadOnConst_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadOnConst_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnOverloadOnConst(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go index 5689c391288df..d83d8fd67eb9e 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnOverloadsDifferentArity2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go similarity index 89% rename from tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go index 2ace1a30b112e..bd8681069e053 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnOverloadsDifferentArity3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go index 46829f8fdb4af..8e7040708cfb4 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnOverloadsDifferentArity_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnOverloadsDifferentArity(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnOverloads_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnOverloads_test.go similarity index 86% rename from tsc/internal/fourslash/tests/signatureHelpOnOverloads_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnOverloads_test.go index 9b21a849e9757..7eeaffdaa8aa6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnOverloads_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnOverloads_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnOverloads(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go similarity index 83% rename from tsc/internal/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go index 20c1bee22be20..f4d13ca621271 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnSuperWhenMembersAreNotResolved_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnSuperWhenMembersAreNotResolved(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOnTypePredicates_test.go b/tsc/pkg/fourslash/tests/signatureHelpOnTypePredicates_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpOnTypePredicates_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOnTypePredicates_test.go index 22127451ccf80..fb06e0109fed9 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOnTypePredicates_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOnTypePredicates_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnTypePredicates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOptionalCall2_test.go b/tsc/pkg/fourslash/tests/signatureHelpOptionalCall2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/signatureHelpOptionalCall2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOptionalCall2_test.go index 936cbf59c2ae8..2dbf61ae8e4c1 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOptionalCall2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOptionalCall2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOptionalCall2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpOptionalCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpOptionalCall_test.go similarity index 82% rename from tsc/internal/fourslash/tests/signatureHelpOptionalCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpOptionalCall_test.go index 3d586d859731e..78558a90a8900 100644 --- a/tsc/internal/fourslash/tests/signatureHelpOptionalCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpOptionalCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOptionalCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs1VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs1VS_test.go similarity index 75% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs1VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs1VS_test.go index ed52fc8a0b103..010f493846906 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs1VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs1_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs1_test.go index 26eba9f606114..faa2e7b8311ea 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs2VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs2VS_test.go similarity index 78% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs2VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs2VS_test.go index d4b46b79146b9..3c25c31a690a4 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs2VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs2VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs2VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs2_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs2_test.go index 2bbe9274b718b..f9c9a9067a76a 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs3VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs3VS_test.go similarity index 71% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs3VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs3VS_test.go index 1868c0219d8f1..725d6f137d639 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs3VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs3VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs3VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpRestArgs3_test.go b/tsc/pkg/fourslash/tests/signatureHelpRestArgs3_test.go similarity index 77% rename from tsc/internal/fourslash/tests/signatureHelpRestArgs3_test.go rename to tsc/pkg/fourslash/tests/signatureHelpRestArgs3_test.go index 800e547cefb85..d0c42bf1ec163 100644 --- a/tsc/internal/fourslash/tests/signatureHelpRestArgs3_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpRestArgs3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpRestArgs3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSimpleConstructorCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpSimpleConstructorCall_test.go similarity index 88% rename from tsc/internal/fourslash/tests/signatureHelpSimpleConstructorCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSimpleConstructorCall_test.go index 8d2aff4d9914a..06ffd4c7474d6 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSimpleConstructorCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSimpleConstructorCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSimpleConstructorCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSimpleFunctionCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpSimpleFunctionCall_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpSimpleFunctionCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSimpleFunctionCall_test.go index 149101afbb3da..6dbbe76623f67 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSimpleFunctionCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSimpleFunctionCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSimpleFunctionCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSimpleSuperCall_test.go b/tsc/pkg/fourslash/tests/signatureHelpSimpleSuperCall_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpSimpleSuperCall_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSimpleSuperCall_test.go index d1eaca2c1faf0..bc2eb88ed01d7 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSimpleSuperCall_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSimpleSuperCall_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSimpleSuperCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSkippedArgs1VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1VS_test.go similarity index 72% rename from tsc/internal/fourslash/tests/signatureHelpSkippedArgs1VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1VS_test.go index 9da43bee92d65..894f5635bfb0b 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSkippedArgs1VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSkippedArgs1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSkippedArgs1_test.go b/tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/signatureHelpSkippedArgs1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1_test.go index a8e04b9ba518d..004c71ca2df9d 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSkippedArgs1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSkippedArgs1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSkippedArgs1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpSuperConstructorOverload_test.go b/tsc/pkg/fourslash/tests/signatureHelpSuperConstructorOverload_test.go similarity index 90% rename from tsc/internal/fourslash/tests/signatureHelpSuperConstructorOverload_test.go rename to tsc/pkg/fourslash/tests/signatureHelpSuperConstructorOverload_test.go index 0a9b7ffc657fd..7adffc100d023 100644 --- a/tsc/internal/fourslash/tests/signatureHelpSuperConstructorOverload_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpSuperConstructorOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpSuperConstructorOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go index e458c7f21abc9..9a26226c2aa27 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTaggedTemplatesNegatives1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go index 922ab2d3a84a3..8d168a38d2ca1 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTaggedTemplatesNegatives2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go index 8bbf5ebe81cfe..391993f7f9b3a 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTaggedTemplatesNegatives3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go index f79ca33833fa3..17c38cb13e9c8 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTaggedTemplatesNegatives4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go index 1a7dd07427f00..9dac53c64f183 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTaggedTemplatesNegatives5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTaggedTemplatesNegatives5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpThis_test.go b/tsc/pkg/fourslash/tests/signatureHelpThis_test.go similarity index 93% rename from tsc/internal/fourslash/tests/signatureHelpThis_test.go rename to tsc/pkg/fourslash/tests/signatureHelpThis_test.go index 7e25250a1592d..cbc875bd3c8b0 100644 --- a/tsc/internal/fourslash/tests/signatureHelpThis_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpThis_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpThis(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTokenCrash_test.go b/tsc/pkg/fourslash/tests/signatureHelpTokenCrash_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpTokenCrash_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTokenCrash_test.go index 29423970f1c7d..0fd2a94c73d31 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTokenCrash_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTokenCrash_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTokenCrash(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTrailingRestTuple_test.go b/tsc/pkg/fourslash/tests/signatureHelpTrailingRestTuple_test.go similarity index 91% rename from tsc/internal/fourslash/tests/signatureHelpTrailingRestTuple_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTrailingRestTuple_test.go index a2a9d49d7fac8..ed635a6b7574f 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTrailingRestTuple_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTrailingRestTuple_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTrailingRestTuple(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTypeArguments2VS_test.go b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments2VS_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpTypeArguments2VS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTypeArguments2VS_test.go index 020262408179e..9265e2a756e48 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTypeArguments2VS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments2VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTypeArguments2VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTypeArguments2_test.go b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/signatureHelpTypeArguments2_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTypeArguments2_test.go index f8fc4c17feeb2..361a310462e86 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTypeArguments2_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTypeArguments2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go b/tsc/pkg/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go similarity index 81% rename from tsc/internal/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go index 3bd9bf9f68dfa..7f5091d385523 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTypeArgumentsWithUntypedTarget_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpOnTypeArgumentsWithUnresolvedTarget(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTypeArguments_test.go b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments_test.go similarity index 94% rename from tsc/internal/fourslash/tests/signatureHelpTypeArguments_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTypeArguments_test.go index e317c9ac2116d..6921278157402 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTypeArguments_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTypeArguments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTypeArguments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go b/tsc/pkg/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go rename to tsc/pkg/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go index 0762227e98caa..f97cffa490474 100644 --- a/tsc/internal/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpTypeParametersNotVariadic_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpTypeParametersNotVariadic(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go b/tsc/pkg/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go similarity index 87% rename from tsc/internal/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go rename to tsc/pkg/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go index 826531850e444..0920ce0514437 100644 --- a/tsc/internal/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpUnresolvedTypeErrorRecovery_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // Building a call's signature label reuses the callee's declared parameter type node. A diff --git a/tsc/internal/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go b/tsc/pkg/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go similarity index 76% rename from tsc/internal/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go rename to tsc/pkg/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go index a052498887339..af691d53dc1f3 100644 --- a/tsc/internal/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpWithInterfaceAsIdentifier_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpWithInterfaceAsIdentifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go b/tsc/pkg/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go rename to tsc/pkg/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go index 59603a3c25544..f3d82ae9ed336 100644 --- a/tsc/internal/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpWithInvalidArgumentList1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpWithInvalidArgumentList1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpWithTriggers02_test.go b/tsc/pkg/fourslash/tests/signatureHelpWithTriggers02_test.go similarity index 88% rename from tsc/internal/fourslash/tests/signatureHelpWithTriggers02_test.go rename to tsc/pkg/fourslash/tests/signatureHelpWithTriggers02_test.go index 10df0ba8b145d..c9f12ef17dcd9 100644 --- a/tsc/internal/fourslash/tests/signatureHelpWithTriggers02_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpWithTriggers02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpWithTriggers02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpWithUnknownVS_test.go b/tsc/pkg/fourslash/tests/signatureHelpWithUnknownVS_test.go similarity index 68% rename from tsc/internal/fourslash/tests/signatureHelpWithUnknownVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelpWithUnknownVS_test.go index ee85073fd7ba4..4ae58acd81cbb 100644 --- a/tsc/internal/fourslash/tests/signatureHelpWithUnknownVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpWithUnknownVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpWithUnknownVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelpWithUnknown_test.go b/tsc/pkg/fourslash/tests/signatureHelpWithUnknown_test.go similarity index 73% rename from tsc/internal/fourslash/tests/signatureHelpWithUnknown_test.go rename to tsc/pkg/fourslash/tests/signatureHelpWithUnknown_test.go index 073746e0bdb2e..5ab0c4160c9df 100644 --- a/tsc/internal/fourslash/tests/signatureHelpWithUnknown_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelpWithUnknown_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelpWithUnknown(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelp_contextual_test.go b/tsc/pkg/fourslash/tests/signatureHelp_contextual_test.go similarity index 96% rename from tsc/internal/fourslash/tests/signatureHelp_contextual_test.go rename to tsc/pkg/fourslash/tests/signatureHelp_contextual_test.go index 1ba085ae31000..57368355135b1 100644 --- a/tsc/internal/fourslash/tests/signatureHelp_contextual_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelp_contextual_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelp_contextual(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelp_unionTypeVS_test.go b/tsc/pkg/fourslash/tests/signatureHelp_unionTypeVS_test.go similarity index 80% rename from tsc/internal/fourslash/tests/signatureHelp_unionTypeVS_test.go rename to tsc/pkg/fourslash/tests/signatureHelp_unionTypeVS_test.go index d3df1ffae81b1..23dc018327919 100644 --- a/tsc/internal/fourslash/tests/signatureHelp_unionTypeVS_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelp_unionTypeVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelp_unionTypeVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/signatureHelp_unionType_test.go b/tsc/pkg/fourslash/tests/signatureHelp_unionType_test.go similarity index 85% rename from tsc/internal/fourslash/tests/signatureHelp_unionType_test.go rename to tsc/pkg/fourslash/tests/signatureHelp_unionType_test.go index 36045a78e97d0..048ca1c19cc51 100644 --- a/tsc/internal/fourslash/tests/signatureHelp_unionType_test.go +++ b/tsc/pkg/fourslash/tests/signatureHelp_unionType_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSignatureHelp_unionType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/singleLineTypeLiteralFormatting_test.go b/tsc/pkg/fourslash/tests/singleLineTypeLiteralFormatting_test.go similarity index 78% rename from tsc/internal/fourslash/tests/singleLineTypeLiteralFormatting_test.go rename to tsc/pkg/fourslash/tests/singleLineTypeLiteralFormatting_test.go index d20850ab800c8..d22bbabe3cb96 100644 --- a/tsc/internal/fourslash/tests/singleLineTypeLiteralFormatting_test.go +++ b/tsc/pkg/fourslash/tests/singleLineTypeLiteralFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSingleLineTypeLiteralFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartIndentNamedImport_test.go b/tsc/pkg/fourslash/tests/smartIndentNamedImport_test.go similarity index 85% rename from tsc/internal/fourslash/tests/smartIndentNamedImport_test.go rename to tsc/pkg/fourslash/tests/smartIndentNamedImport_test.go index 361b8db6c60b2..8bb0e86e5a3ee 100644 --- a/tsc/internal/fourslash/tests/smartIndentNamedImport_test.go +++ b/tsc/pkg/fourslash/tests/smartIndentNamedImport_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartIndentNamedImport(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags10_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags10_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags10_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags10_test.go index c130f133f1ecc..0a91dded65c77 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags10_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags11_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags11_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags11_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags11_test.go index d8b7b496c9b6b..f17bbf6958bc0 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags11_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags12_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags12_test.go similarity index 79% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags12_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags12_test.go index 3c65ba3f48046..3afa4a1802252 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags12_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags12_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags13_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags13_test.go similarity index 79% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags13_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags13_test.go index 415af4fc1d65f..22e899fef4183 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags13_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags13_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags1_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags1_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags1_test.go index 89b39f74eb175..d7f97184a5087 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags1_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags2_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags2_test.go index 8d8e376ae9286..16f8d118ea1a1 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags3_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags3_test.go similarity index 76% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags3_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags3_test.go index 440a943da8e3d..5fc792e519dbb 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags3_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags4_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags4_test.go similarity index 79% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags4_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags4_test.go index 89440568a1c20..30e995b5327c4 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags4_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags5_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags5_test.go similarity index 80% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags5_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags5_test.go index 4df0400816bff..759fecf5f8258 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags5_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags6_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags6_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags6_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags6_test.go index 170d2eac56fe0..6d04ec157cb2d 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags6_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags7_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags7_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags7_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags7_test.go index 9d72932669ff3..8c3a4a322549c 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags7_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags8_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags8_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags8_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags8_test.go index 19d4f80be2cf5..12e5b8403dd3d 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags8_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDocTags9_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags9_test.go similarity index 76% rename from tsc/internal/fourslash/tests/smartSelection_JSDocTags9_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDocTags9_test.go index 6ab5f40ceac0d..91d013b2c272e 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDocTags9_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDocTags9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDocTags9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_JSDoc_test.go b/tsc/pkg/fourslash/tests/smartSelection_JSDoc_test.go similarity index 78% rename from tsc/internal/fourslash/tests/smartSelection_JSDoc_test.go rename to tsc/pkg/fourslash/tests/smartSelection_JSDoc_test.go index 45db8de122490..110c5cadd20d5 100644 --- a/tsc/internal/fourslash/tests/smartSelection_JSDoc_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_JSDoc_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_JSDoc(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_behindCaret_test.go b/tsc/pkg/fourslash/tests/smartSelection_behindCaret_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_behindCaret_test.go rename to tsc/pkg/fourslash/tests/smartSelection_behindCaret_test.go index 513d2967c69ab..613880abe67e3 100644 --- a/tsc/internal/fourslash/tests/smartSelection_behindCaret_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_behindCaret_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_behindCaret(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_bindingPatterns_test.go b/tsc/pkg/fourslash/tests/smartSelection_bindingPatterns_test.go similarity index 76% rename from tsc/internal/fourslash/tests/smartSelection_bindingPatterns_test.go rename to tsc/pkg/fourslash/tests/smartSelection_bindingPatterns_test.go index b7c01d381288f..3733a4fbd0362 100644 --- a/tsc/internal/fourslash/tests/smartSelection_bindingPatterns_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_bindingPatterns_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_bindingPatterns(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_comment1_test.go b/tsc/pkg/fourslash/tests/smartSelection_comment1_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_comment1_test.go rename to tsc/pkg/fourslash/tests/smartSelection_comment1_test.go index 4de7f773dd7ea..ab95cd44e5611 100644 --- a/tsc/internal/fourslash/tests/smartSelection_comment1_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_comment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_comment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_comment2_test.go b/tsc/pkg/fourslash/tests/smartSelection_comment2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_comment2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_comment2_test.go index b04009acca5eb..0c7dd0a8da445 100644 --- a/tsc/internal/fourslash/tests/smartSelection_comment2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_comment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_comment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_complex_test.go b/tsc/pkg/fourslash/tests/smartSelection_complex_test.go similarity index 81% rename from tsc/internal/fourslash/tests/smartSelection_complex_test.go rename to tsc/pkg/fourslash/tests/smartSelection_complex_test.go index 308f6efb2e3e2..c007f6047d578 100644 --- a/tsc/internal/fourslash/tests/smartSelection_complex_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_complex_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_complex(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_emptyRanges_test.go b/tsc/pkg/fourslash/tests/smartSelection_emptyRanges_test.go similarity index 78% rename from tsc/internal/fourslash/tests/smartSelection_emptyRanges_test.go rename to tsc/pkg/fourslash/tests/smartSelection_emptyRanges_test.go index d123133b7094d..f17d3f9b7c56a 100644 --- a/tsc/internal/fourslash/tests/smartSelection_emptyRanges_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_emptyRanges_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_emptyRanges(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_function1_test.go b/tsc/pkg/fourslash/tests/smartSelection_function1_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_function1_test.go rename to tsc/pkg/fourslash/tests/smartSelection_function1_test.go index 29f67cdf79141..f37f1309b05ab 100644 --- a/tsc/internal/fourslash/tests/smartSelection_function1_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_function1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_function1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_function2_test.go b/tsc/pkg/fourslash/tests/smartSelection_function2_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_function2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_function2_test.go index e7c4f4a879e13..b865d84db77e2 100644 --- a/tsc/internal/fourslash/tests/smartSelection_function2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_function2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_function2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_function3_test.go b/tsc/pkg/fourslash/tests/smartSelection_function3_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_function3_test.go rename to tsc/pkg/fourslash/tests/smartSelection_function3_test.go index a88d6c3fdb6ae..6cef66168e16b 100644 --- a/tsc/internal/fourslash/tests/smartSelection_function3_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_function3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_function3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_functionParams1_test.go b/tsc/pkg/fourslash/tests/smartSelection_functionParams1_test.go similarity index 76% rename from tsc/internal/fourslash/tests/smartSelection_functionParams1_test.go rename to tsc/pkg/fourslash/tests/smartSelection_functionParams1_test.go index 2be48419b862c..c3496abf390d4 100644 --- a/tsc/internal/fourslash/tests/smartSelection_functionParams1_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_functionParams1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_functionParams1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_functionParams2_test.go b/tsc/pkg/fourslash/tests/smartSelection_functionParams2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_functionParams2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_functionParams2_test.go index 7a274cf31f998..fb887e1d66769 100644 --- a/tsc/internal/fourslash/tests/smartSelection_functionParams2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_functionParams2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_functionParams2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_imports_test.go b/tsc/pkg/fourslash/tests/smartSelection_imports_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_imports_test.go rename to tsc/pkg/fourslash/tests/smartSelection_imports_test.go index ea7eda54e1106..a71cc5fbb3884 100644 --- a/tsc/internal/fourslash/tests/smartSelection_imports_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_imports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_imports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_lastBlankLine_test.go b/tsc/pkg/fourslash/tests/smartSelection_lastBlankLine_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_lastBlankLine_test.go rename to tsc/pkg/fourslash/tests/smartSelection_lastBlankLine_test.go index e4587dd659ebb..7d832a5f2e99b 100644 --- a/tsc/internal/fourslash/tests/smartSelection_lastBlankLine_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_lastBlankLine_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_lastBlankLine(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_loneVariableDeclaration_test.go b/tsc/pkg/fourslash/tests/smartSelection_loneVariableDeclaration_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_loneVariableDeclaration_test.go rename to tsc/pkg/fourslash/tests/smartSelection_loneVariableDeclaration_test.go index 7a0feaef18604..8de8f1d820a97 100644 --- a/tsc/internal/fourslash/tests/smartSelection_loneVariableDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_loneVariableDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_loneVariableDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_mappedTypes_test.go b/tsc/pkg/fourslash/tests/smartSelection_mappedTypes_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_mappedTypes_test.go rename to tsc/pkg/fourslash/tests/smartSelection_mappedTypes_test.go index 631fd06164d75..4e361d6577a9f 100644 --- a/tsc/internal/fourslash/tests/smartSelection_mappedTypes_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_mappedTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_mappedTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_objectTypes_test.go b/tsc/pkg/fourslash/tests/smartSelection_objectTypes_test.go similarity index 77% rename from tsc/internal/fourslash/tests/smartSelection_objectTypes_test.go rename to tsc/pkg/fourslash/tests/smartSelection_objectTypes_test.go index 839221e3ad7d6..328cad0341571 100644 --- a/tsc/internal/fourslash/tests/smartSelection_objectTypes_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_objectTypes_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_objectTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_punctuationPriority_test.go b/tsc/pkg/fourslash/tests/smartSelection_punctuationPriority_test.go similarity index 74% rename from tsc/internal/fourslash/tests/smartSelection_punctuationPriority_test.go rename to tsc/pkg/fourslash/tests/smartSelection_punctuationPriority_test.go index 5b9e6e33691e9..9946243c0d469 100644 --- a/tsc/internal/fourslash/tests/smartSelection_punctuationPriority_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_punctuationPriority_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_punctuationPriority(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_simple1_test.go b/tsc/pkg/fourslash/tests/smartSelection_simple1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/smartSelection_simple1_test.go rename to tsc/pkg/fourslash/tests/smartSelection_simple1_test.go index 20705da69173e..d7c3b40b83f4e 100644 --- a/tsc/internal/fourslash/tests/smartSelection_simple1_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_simple1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_simple1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_simple2_test.go b/tsc/pkg/fourslash/tests/smartSelection_simple2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/smartSelection_simple2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_simple2_test.go index 20d67ca222fbe..570847afef0ae 100644 --- a/tsc/internal/fourslash/tests/smartSelection_simple2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_simple2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_simple2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_stringLiteral_test.go b/tsc/pkg/fourslash/tests/smartSelection_stringLiteral_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_stringLiteral_test.go rename to tsc/pkg/fourslash/tests/smartSelection_stringLiteral_test.go index 54fac5979d5d2..75c695acc3952 100644 --- a/tsc/internal/fourslash/tests/smartSelection_stringLiteral_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_stringLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_stringLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_templateStrings2_test.go b/tsc/pkg/fourslash/tests/smartSelection_templateStrings2_test.go similarity index 75% rename from tsc/internal/fourslash/tests/smartSelection_templateStrings2_test.go rename to tsc/pkg/fourslash/tests/smartSelection_templateStrings2_test.go index 267db3df730db..2080b999b1c91 100644 --- a/tsc/internal/fourslash/tests/smartSelection_templateStrings2_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_templateStrings2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_templateStrings2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/smartSelection_templateStrings_test.go b/tsc/pkg/fourslash/tests/smartSelection_templateStrings_test.go similarity index 76% rename from tsc/internal/fourslash/tests/smartSelection_templateStrings_test.go rename to tsc/pkg/fourslash/tests/smartSelection_templateStrings_test.go index d537b61158eb8..0faf114428174 100644 --- a/tsc/internal/fourslash/tests/smartSelection_templateStrings_test.go +++ b/tsc/pkg/fourslash/tests/smartSelection_templateStrings_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSmartSelection_templateStrings(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/sourceFixAllImports_test.go b/tsc/pkg/fourslash/tests/sourceFixAllImports_test.go similarity index 91% rename from tsc/internal/fourslash/tests/sourceFixAllImports_test.go rename to tsc/pkg/fourslash/tests/sourceFixAllImports_test.go index 91b8962b2ed37..e0557f972877f 100644 --- a/tsc/internal/fourslash/tests/sourceFixAllImports_test.go +++ b/tsc/pkg/fourslash/tests/sourceFixAllImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSourceFixAllImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/spaceAfterConstructor_test.go b/tsc/pkg/fourslash/tests/spaceAfterConstructor_test.go similarity index 82% rename from tsc/internal/fourslash/tests/spaceAfterConstructor_test.go rename to tsc/pkg/fourslash/tests/spaceAfterConstructor_test.go index 7f4af8010dbfb..3dabc3239056a 100644 --- a/tsc/internal/fourslash/tests/spaceAfterConstructor_test.go +++ b/tsc/pkg/fourslash/tests/spaceAfterConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSpaceAfterConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/spaceAfterReturn_test.go b/tsc/pkg/fourslash/tests/spaceAfterReturn_test.go similarity index 83% rename from tsc/internal/fourslash/tests/spaceAfterReturn_test.go rename to tsc/pkg/fourslash/tests/spaceAfterReturn_test.go index 0c64a373e8bb5..ab83021f02359 100644 --- a/tsc/internal/fourslash/tests/spaceAfterReturn_test.go +++ b/tsc/pkg/fourslash/tests/spaceAfterReturn_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSpaceAfterReturn(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/spaceAfterStatementConditions_test.go b/tsc/pkg/fourslash/tests/spaceAfterStatementConditions_test.go similarity index 89% rename from tsc/internal/fourslash/tests/spaceAfterStatementConditions_test.go rename to tsc/pkg/fourslash/tests/spaceAfterStatementConditions_test.go index 9288ae9f3ace7..287038e656d88 100644 --- a/tsc/internal/fourslash/tests/spaceAfterStatementConditions_test.go +++ b/tsc/pkg/fourslash/tests/spaceAfterStatementConditions_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSpaceAfterStatementConditions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go b/tsc/pkg/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go similarity index 89% rename from tsc/internal/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go rename to tsc/pkg/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go index b566ed2ec0318..238d7d97de9a4 100644 --- a/tsc/internal/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go +++ b/tsc/pkg/fourslash/tests/spaceBeforeAndAfterBinaryOperators_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSpaceBeforeAndAfterBinaryOperators(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/specialIntersectionsOrderIndependent_test.go b/tsc/pkg/fourslash/tests/specialIntersectionsOrderIndependent_test.go similarity index 80% rename from tsc/internal/fourslash/tests/specialIntersectionsOrderIndependent_test.go rename to tsc/pkg/fourslash/tests/specialIntersectionsOrderIndependent_test.go index 510b764b1c51c..2f24f15b68b8f 100644 --- a/tsc/internal/fourslash/tests/specialIntersectionsOrderIndependent_test.go +++ b/tsc/pkg/fourslash/tests/specialIntersectionsOrderIndependent_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSpecialIntersectionsOrderIndependent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/squiggleIllegalClassExtension_test.go b/tsc/pkg/fourslash/tests/squiggleIllegalClassExtension_test.go similarity index 78% rename from tsc/internal/fourslash/tests/squiggleIllegalClassExtension_test.go rename to tsc/pkg/fourslash/tests/squiggleIllegalClassExtension_test.go index 058b7a8d9c45c..69326efed1dcb 100644 --- a/tsc/internal/fourslash/tests/squiggleIllegalClassExtension_test.go +++ b/tsc/pkg/fourslash/tests/squiggleIllegalClassExtension_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSquiggleIllegalClassExtension(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/squiggleIllegalSubclassOverride_test.go b/tsc/pkg/fourslash/tests/squiggleIllegalSubclassOverride_test.go similarity index 81% rename from tsc/internal/fourslash/tests/squiggleIllegalSubclassOverride_test.go rename to tsc/pkg/fourslash/tests/squiggleIllegalSubclassOverride_test.go index 13176d7c5b71e..768e80abc11bb 100644 --- a/tsc/internal/fourslash/tests/squiggleIllegalSubclassOverride_test.go +++ b/tsc/pkg/fourslash/tests/squiggleIllegalSubclassOverride_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSquiggleIllegalSubclassOverride(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/statecallhierarchy_test.go b/tsc/pkg/fourslash/tests/statecallhierarchy_test.go similarity index 95% rename from tsc/internal/fourslash/tests/statecallhierarchy_test.go rename to tsc/pkg/fourslash/tests/statecallhierarchy_test.go index 485c7f5b852e9..74c0db4266bb9 100644 --- a/tsc/internal/fourslash/tests/statecallhierarchy_test.go +++ b/tsc/pkg/fourslash/tests/statecallhierarchy_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCallHierarchyAcrossProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/statecodelens_test.go b/tsc/pkg/fourslash/tests/statecodelens_test.go similarity index 94% rename from tsc/internal/fourslash/tests/statecodelens_test.go rename to tsc/pkg/fourslash/tests/statecodelens_test.go index e1ebf917e0e16..9ea400f61d0f0 100644 --- a/tsc/internal/fourslash/tests/statecodelens_test.go +++ b/tsc/pkg/fourslash/tests/statecodelens_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestCodeLensAcrossProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/statedeclarationmaps_test.go b/tsc/pkg/fourslash/tests/statedeclarationmaps_test.go similarity index 98% rename from tsc/internal/fourslash/tests/statedeclarationmaps_test.go rename to tsc/pkg/fourslash/tests/statedeclarationmaps_test.go index 92535fea0894c..c058d0c9e5e4a 100644 --- a/tsc/internal/fourslash/tests/statedeclarationmaps_test.go +++ b/tsc/pkg/fourslash/tests/statedeclarationmaps_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestDeclarationMapsOpeningOriginalLocationProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/statefindallrefs_test.go b/tsc/pkg/fourslash/tests/statefindallrefs_test.go similarity index 99% rename from tsc/internal/fourslash/tests/statefindallrefs_test.go rename to tsc/pkg/fourslash/tests/statefindallrefs_test.go index 490ec690689aa..87e92d96cc487 100644 --- a/tsc/internal/fourslash/tests/statefindallrefs_test.go +++ b/tsc/pkg/fourslash/tests/statefindallrefs_test.go @@ -5,10 +5,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/stringtestutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/stringtestutil" ) func TestFindAllRefsSolutionReferencingDefaultProjectDirectly(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stateimplementations_test.go b/tsc/pkg/fourslash/tests/stateimplementations_test.go similarity index 95% rename from tsc/internal/fourslash/tests/stateimplementations_test.go rename to tsc/pkg/fourslash/tests/stateimplementations_test.go index 7b6c3b3ba8b0e..e835a2ca47555 100644 --- a/tsc/internal/fourslash/tests/stateimplementations_test.go +++ b/tsc/pkg/fourslash/tests/stateimplementations_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestImplementationsAcrossProjects(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/staterename_test.go b/tsc/pkg/fourslash/tests/staterename_test.go similarity index 96% rename from tsc/internal/fourslash/tests/staterename_test.go rename to tsc/pkg/fourslash/tests/staterename_test.go index d4688a22354d6..fb63634082bc3 100644 --- a/tsc/internal/fourslash/tests/staterename_test.go +++ b/tsc/pkg/fourslash/tests/staterename_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestRenameAncestorProjectRefMangement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/staticGenericOverloads1_test.go b/tsc/pkg/fourslash/tests/staticGenericOverloads1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/staticGenericOverloads1_test.go rename to tsc/pkg/fourslash/tests/staticGenericOverloads1_test.go index e9ae7ca6f2d08..6b2aeaa2628ef 100644 --- a/tsc/internal/fourslash/tests/staticGenericOverloads1_test.go +++ b/tsc/pkg/fourslash/tests/staticGenericOverloads1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStaticGenericOverloads1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringCompletionDetails_test.go b/tsc/pkg/fourslash/tests/stringCompletionDetails_test.go similarity index 80% rename from tsc/internal/fourslash/tests/stringCompletionDetails_test.go rename to tsc/pkg/fourslash/tests/stringCompletionDetails_test.go index fe31ad59d23d9..fa008d5b87192 100644 --- a/tsc/internal/fourslash/tests/stringCompletionDetails_test.go +++ b/tsc/pkg/fourslash/tests/stringCompletionDetails_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringCompletionDetails(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go b/tsc/pkg/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go similarity index 91% rename from tsc/internal/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go rename to tsc/pkg/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go index 1bb05e98b384b..653360b7839c8 100644 --- a/tsc/internal/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go +++ b/tsc/pkg/fourslash/tests/stringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringCompletionsFromGenericConditionalTypesUsingTemplateLiteralTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go b/tsc/pkg/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go similarity index 97% rename from tsc/internal/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go rename to tsc/pkg/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go index 35ff0c310a0c6..d7eccbea0f76c 100644 --- a/tsc/internal/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go +++ b/tsc/pkg/fourslash/tests/stringCompletionsImportOrExportSpecifier_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringCompletionsImportOrExportSpecifier(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringCompletionsVsEscaping_test.go b/tsc/pkg/fourslash/tests/stringCompletionsVsEscaping_test.go similarity index 95% rename from tsc/internal/fourslash/tests/stringCompletionsVsEscaping_test.go rename to tsc/pkg/fourslash/tests/stringCompletionsVsEscaping_test.go index e6e4066320682..658a52e6115c1 100644 --- a/tsc/internal/fourslash/tests/stringCompletionsVsEscaping_test.go +++ b/tsc/pkg/fourslash/tests/stringCompletionsVsEscaping_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringCompletionsVsEscaping(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go similarity index 86% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go index 2ea649026802c..fb2b9b17f8d64 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsForGenericConditionalTypesUsingTemplateLiteralTypes(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go similarity index 82% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go index af76dfb2796af..67e5ef6aefbbf 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForOpenEndedTemplateLiteralType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsForOpenEndedTemplateLiteralType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go similarity index 78% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go index e9822217241f4..3d1a7003eb334 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForStringEnumContextualType_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsForStringEnumContextualType(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go similarity index 86% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go index d5b7f52df76aa..cd3048bfac595 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsForTypeIndexedAccess_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsForTypeIndexedAccess(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go similarity index 87% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go index e6a69e151f64d..9e34729739d90 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsInArgUsingInferenceResultFromPreviousArg(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go similarity index 90% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go index 3255d475ba49d..c30d072e32986 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInJsxAttributeInitializer_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsInJsxAttributeInitializer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go similarity index 89% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go index 76322fd2f0008..d321b8b1f8aca 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsInPositionTypedUsingRest_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsInPositionTypedUsingRest(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go b/tsc/pkg/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go similarity index 84% rename from tsc/internal/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go rename to tsc/pkg/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go index a77574cb86d43..71aa30ff47e11 100644 --- a/tsc/internal/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralCompletionsWithinInferredObjectWhenItsKeysAreUsedOutsideOfIt(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go b/tsc/pkg/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go rename to tsc/pkg/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go index f9be45f8d1cc9..f37c24c2bac83 100644 --- a/tsc/internal/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go +++ b/tsc/pkg/fourslash/tests/stringLiteralTypeCompletionsInTypeArgForNonGeneric1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringLiteralTypeCompletionsInTypeArgForNonGeneric1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringPropertyNames1_test.go b/tsc/pkg/fourslash/tests/stringPropertyNames1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/stringPropertyNames1_test.go rename to tsc/pkg/fourslash/tests/stringPropertyNames1_test.go index f9f1ab9738692..48fac7a0dcf00 100644 --- a/tsc/internal/fourslash/tests/stringPropertyNames1_test.go +++ b/tsc/pkg/fourslash/tests/stringPropertyNames1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringPropertyNames1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/stringPropertyNames2_test.go b/tsc/pkg/fourslash/tests/stringPropertyNames2_test.go similarity index 78% rename from tsc/internal/fourslash/tests/stringPropertyNames2_test.go rename to tsc/pkg/fourslash/tests/stringPropertyNames2_test.go index b9ed9680024d8..f6addf8bc30ac 100644 --- a/tsc/internal/fourslash/tests/stringPropertyNames2_test.go +++ b/tsc/pkg/fourslash/tests/stringPropertyNames2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestStringPropertyNames2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/suggestionNoDuplicates_test.go b/tsc/pkg/fourslash/tests/suggestionNoDuplicates_test.go similarity index 81% rename from tsc/internal/fourslash/tests/suggestionNoDuplicates_test.go rename to tsc/pkg/fourslash/tests/suggestionNoDuplicates_test.go index e953a0be8639b..88b427471def8 100644 --- a/tsc/internal/fourslash/tests/suggestionNoDuplicates_test.go +++ b/tsc/pkg/fourslash/tests/suggestionNoDuplicates_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSuggestionNoDuplicates(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go b/tsc/pkg/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go similarity index 90% rename from tsc/internal/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go rename to tsc/pkg/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go index 9d004e2de0c90..e84188825c02e 100644 --- a/tsc/internal/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go +++ b/tsc/pkg/fourslash/tests/suggestionOfUnusedVariableWithExternalModule_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSuggestionOfUnusedVariableWithExternalModule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/superCallError0_test.go b/tsc/pkg/fourslash/tests/superCallError0_test.go similarity index 79% rename from tsc/internal/fourslash/tests/superCallError0_test.go rename to tsc/pkg/fourslash/tests/superCallError0_test.go index 880eaba3e380f..88cfa2b19c2e2 100644 --- a/tsc/internal/fourslash/tests/superCallError0_test.go +++ b/tsc/pkg/fourslash/tests/superCallError0_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSuperCallError0(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go b/tsc/pkg/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go similarity index 84% rename from tsc/internal/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go rename to tsc/pkg/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go index 10d9303f218cc..8f67ba2fb2855 100644 --- a/tsc/internal/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go +++ b/tsc/pkg/fourslash/tests/superInDerivedTypeOfGenericWithStatics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSuperInDerivedTypeOfGenericWithStatics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/superInsideInnerClass_test.go b/tsc/pkg/fourslash/tests/superInsideInnerClass_test.go similarity index 79% rename from tsc/internal/fourslash/tests/superInsideInnerClass_test.go rename to tsc/pkg/fourslash/tests/superInsideInnerClass_test.go index 2917db452147b..948285133ada5 100644 --- a/tsc/internal/fourslash/tests/superInsideInnerClass_test.go +++ b/tsc/pkg/fourslash/tests/superInsideInnerClass_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSuperInsideInnerClass(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/switchCompletions_test.go b/tsc/pkg/fourslash/tests/switchCompletions_test.go similarity index 92% rename from tsc/internal/fourslash/tests/switchCompletions_test.go rename to tsc/pkg/fourslash/tests/switchCompletions_test.go index 1a8d05d9ddff6..684bd3f06415f 100644 --- a/tsc/internal/fourslash/tests/switchCompletions_test.go +++ b/tsc/pkg/fourslash/tests/switchCompletions_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSwitchCompletions(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/symbolCompletionLowerPriority_test.go b/tsc/pkg/fourslash/tests/symbolCompletionLowerPriority_test.go similarity index 79% rename from tsc/internal/fourslash/tests/symbolCompletionLowerPriority_test.go rename to tsc/pkg/fourslash/tests/symbolCompletionLowerPriority_test.go index cc8f0597d400a..4d3e9eca4553b 100644 --- a/tsc/internal/fourslash/tests/symbolCompletionLowerPriority_test.go +++ b/tsc/pkg/fourslash/tests/symbolCompletionLowerPriority_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSymbolCompletionLowerPriority(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go b/tsc/pkg/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go similarity index 81% rename from tsc/internal/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go rename to tsc/pkg/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go index b55cdc129278c..b45d18f187a38 100644 --- a/tsc/internal/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go +++ b/tsc/pkg/fourslash/tests/symbolNameAtUnparseableFunctionOverload_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSymbolNameAtUnparseableFunctionOverload(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go similarity index 82% rename from tsc/internal/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go index f1d261d2a929d..3d5ca94c96d3f 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationForJSDocTemplateTag_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationForJSDocTemplateTag(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationWithErrors_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationWithErrors_test.go similarity index 79% rename from tsc/internal/fourslash/tests/syntacticClassificationWithErrors_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationWithErrors_test.go index de5884e8e03eb..3c351c6babfbb 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationWithErrors_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationWithErrors_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationWithErrors(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassifications1_test.go b/tsc/pkg/fourslash/tests/syntacticClassifications1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/syntacticClassifications1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassifications1_test.go index 2d858892f1e8a..9934476952159 100644 --- a/tsc/internal/fourslash/tests/syntacticClassifications1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassifications1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassifications1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go index 5e13f97c62cab..336918b28f908 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsConflictDiff3Markers1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go similarity index 81% rename from tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go index f03536958c8da..934fb41a698b1 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictDiff3Markers2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsConflictDiff3Markers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go index 7d43d7b2717e4..caca1d952908c 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsConflictMarkers1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go index 2eca725f4da3d..7d2bc9c43d8ef 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsConflictMarkers2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsConflictMarkers2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/syntacticClassificationsDocComment1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsDocComment1_test.go index cf91dd736d136..23d834c3acc2f 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsDocComment1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/syntacticClassificationsDocComment2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsDocComment2_test.go index b0d9f9d668d91..687842f50f07a 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsDocComment2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment3_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/syntacticClassificationsDocComment3_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsDocComment3_test.go index 24dabf4d83cf0..14c1d97317f4d 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment3_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsDocComment3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment4_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment4_test.go similarity index 80% rename from tsc/internal/fourslash/tests/syntacticClassificationsDocComment4_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsDocComment4_test.go index b7df2686d9868..19cb6007c232f 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsDocComment4_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsDocComment4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsDocComment4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go similarity index 79% rename from tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go index e4b3ab529367f..bb8bd0504a477 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsForOfKeyword2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go index b0e5c5d76e370..71190319faf45 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsForOfKeyword3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword_test.go similarity index 79% rename from tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword_test.go index 0521f8c7fa909..e0ee653c93bb7 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsForOfKeyword_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsForOfKeyword_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsForOfKeyword(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go similarity index 87% rename from tsc/internal/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go index 268b46042e62a..d2a6a3d2c6fee 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsFunctionWithComments_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsFunctionWithComments(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsJsx1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsJsx1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/syntacticClassificationsJsx1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsJsx1_test.go index 877666333fcf9..63476bde6ba2e 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsJsx1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsJsx1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsJsx1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsJsx2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsJsx2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/syntacticClassificationsJsx2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsJsx2_test.go index 1c05164088beb..ff7ff9ad4959f 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsJsx2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsJsx2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsJsx2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go similarity index 77% rename from tsc/internal/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go index 4ac1e4afb53d1..7a6f32161ccda 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsMergeConflictMarker1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsMergeConflictMarker1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsObjectLiteral_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsObjectLiteral_test.go similarity index 89% rename from tsc/internal/fourslash/tests/syntacticClassificationsObjectLiteral_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsObjectLiteral_test.go index 9530d8444b677..9ea8d27c6b5e3 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsObjectLiteral_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsObjectLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsObjectLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsTemplates1_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsTemplates1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/syntacticClassificationsTemplates1_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsTemplates1_test.go index bd941fa7d961b..a0be877145b8d 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsTemplates1_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsTemplates1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsTemplates1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntacticClassificationsTemplates2_test.go b/tsc/pkg/fourslash/tests/syntacticClassificationsTemplates2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/syntacticClassificationsTemplates2_test.go rename to tsc/pkg/fourslash/tests/syntacticClassificationsTemplates2_test.go index 99554e67736e3..e2d415d30f507 100644 --- a/tsc/internal/fourslash/tests/syntacticClassificationsTemplates2_test.go +++ b/tsc/pkg/fourslash/tests/syntacticClassificationsTemplates2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntacticClassificationsTemplates2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntaxErrorAfterImport1_test.go b/tsc/pkg/fourslash/tests/syntaxErrorAfterImport1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/syntaxErrorAfterImport1_test.go rename to tsc/pkg/fourslash/tests/syntaxErrorAfterImport1_test.go index 52c7a344c44ab..3409302d2d267 100644 --- a/tsc/internal/fourslash/tests/syntaxErrorAfterImport1_test.go +++ b/tsc/pkg/fourslash/tests/syntaxErrorAfterImport1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntaxErrorAfterImport1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go b/tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go similarity index 85% rename from tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go rename to tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go index d10387697edc1..ce7d160154338 100644 --- a/tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go +++ b/tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntheticImportFromBabelGeneratedFile1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go b/tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go rename to tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go index 1b12271cee08f..720c3cf7918f8 100644 --- a/tsc/internal/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go +++ b/tsc/pkg/fourslash/tests/syntheticImportFromBabelGeneratedFile2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestSyntheticImportFromBabelGeneratedFile2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go b/tsc/pkg/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go similarity index 78% rename from tsc/internal/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go rename to tsc/pkg/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go index 556bfc167a0d0..e1e9bfbf985b5 100644 --- a/tsc/internal/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go +++ b/tsc/pkg/fourslash/tests/tabbingAfterNewlineInsertedBeforeWhile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTabbingAfterNewlineInsertedBeforeWhile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/testmain_test.go b/tsc/pkg/fourslash/tests/testmain_test.go similarity index 54% rename from tsc/internal/fourslash/tests/testmain_test.go rename to tsc/pkg/fourslash/tests/testmain_test.go index ea7756638095b..bd4a616b0102e 100644 --- a/tsc/internal/fourslash/tests/testmain_test.go +++ b/tsc/pkg/fourslash/tests/testmain_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/fourslash/tests/thisBindingInLambda_test.go b/tsc/pkg/fourslash/tests/thisBindingInLambda_test.go similarity index 78% rename from tsc/internal/fourslash/tests/thisBindingInLambda_test.go rename to tsc/pkg/fourslash/tests/thisBindingInLambda_test.go index b3568c6891a10..cd3e7d0b72481 100644 --- a/tsc/internal/fourslash/tests/thisBindingInLambda_test.go +++ b/tsc/pkg/fourslash/tests/thisBindingInLambda_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisBindingInLambda(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/thisPredicateFunctionCompletions02_test.go b/tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions02_test.go similarity index 91% rename from tsc/internal/fourslash/tests/thisPredicateFunctionCompletions02_test.go rename to tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions02_test.go index ce264f1d1dcbc..9244bd2a4c027 100644 --- a/tsc/internal/fourslash/tests/thisPredicateFunctionCompletions02_test.go +++ b/tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions02_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisPredicateFunctionCompletions02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/thisPredicateFunctionCompletions03_test.go b/tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions03_test.go similarity index 91% rename from tsc/internal/fourslash/tests/thisPredicateFunctionCompletions03_test.go rename to tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions03_test.go index d83cc8d149a40..4589c8d497e7d 100644 --- a/tsc/internal/fourslash/tests/thisPredicateFunctionCompletions03_test.go +++ b/tsc/pkg/fourslash/tests/thisPredicateFunctionCompletions03_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisPredicateFunctionCompletions03(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go similarity index 94% rename from tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go rename to tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go index 15156192fee4c..511d294f09210 100644 --- a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go +++ b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisPredicateFunctionQuickInfo01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go similarity index 94% rename from tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go rename to tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go index ef405becb9aad..be9c714080f93 100644 --- a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go +++ b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisPredicateFunctionQuickInfo02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo_test.go b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo_test.go similarity index 94% rename from tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo_test.go rename to tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo_test.go index 62500ffc7d3f8..24ef9b4685055 100644 --- a/tsc/internal/fourslash/tests/thisPredicateFunctionQuickInfo_test.go +++ b/tsc/pkg/fourslash/tests/thisPredicateFunctionQuickInfo_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestThisPredicateFunctionQuickInfo(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go b/tsc/pkg/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go similarity index 77% rename from tsc/internal/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go rename to tsc/pkg/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go index 2acaeabe9a148..5f111485cff6b 100644 --- a/tsc/internal/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go +++ b/tsc/pkg/fourslash/tests/toggleDuplicateFunctionDeclaration_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestToggleDuplicateFunctionDeclaration(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/trailingCommaSignatureHelpVS_test.go b/tsc/pkg/fourslash/tests/trailingCommaSignatureHelpVS_test.go similarity index 78% rename from tsc/internal/fourslash/tests/trailingCommaSignatureHelpVS_test.go rename to tsc/pkg/fourslash/tests/trailingCommaSignatureHelpVS_test.go index 9d789a6811c80..38722eb453557 100644 --- a/tsc/internal/fourslash/tests/trailingCommaSignatureHelpVS_test.go +++ b/tsc/pkg/fourslash/tests/trailingCommaSignatureHelpVS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTrailingCommaSignatureHelpVS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/trailingCommaSignatureHelp_test.go b/tsc/pkg/fourslash/tests/trailingCommaSignatureHelp_test.go similarity index 83% rename from tsc/internal/fourslash/tests/trailingCommaSignatureHelp_test.go rename to tsc/pkg/fourslash/tests/trailingCommaSignatureHelp_test.go index 544e528c3854b..a187e3ab48d88 100644 --- a/tsc/internal/fourslash/tests/trailingCommaSignatureHelp_test.go +++ b/tsc/pkg/fourslash/tests/trailingCommaSignatureHelp_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTrailingCommaSignatureHelp(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/transitiveExportImports2_test.go b/tsc/pkg/fourslash/tests/transitiveExportImports2_test.go similarity index 89% rename from tsc/internal/fourslash/tests/transitiveExportImports2_test.go rename to tsc/pkg/fourslash/tests/transitiveExportImports2_test.go index 5a2beb27cf0d3..0b1a42bc76673 100644 --- a/tsc/internal/fourslash/tests/transitiveExportImports2_test.go +++ b/tsc/pkg/fourslash/tests/transitiveExportImports2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTransitiveExportImports2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/transitiveExportImports3_test.go b/tsc/pkg/fourslash/tests/transitiveExportImports3_test.go similarity index 90% rename from tsc/internal/fourslash/tests/transitiveExportImports3_test.go rename to tsc/pkg/fourslash/tests/transitiveExportImports3_test.go index 6ed4249817838..97627e30680fb 100644 --- a/tsc/internal/fourslash/tests/transitiveExportImports3_test.go +++ b/tsc/pkg/fourslash/tests/transitiveExportImports3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTransitiveExportImports3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/transitiveExportImports_test.go b/tsc/pkg/fourslash/tests/transitiveExportImports_test.go similarity index 90% rename from tsc/internal/fourslash/tests/transitiveExportImports_test.go rename to tsc/pkg/fourslash/tests/transitiveExportImports_test.go index 6e9c87f2a2b51..487c2feb82777 100644 --- a/tsc/internal/fourslash/tests/transitiveExportImports_test.go +++ b/tsc/pkg/fourslash/tests/transitiveExportImports_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTransitiveExportImports(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go similarity index 90% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go index ccf798359eb41..1f890a8bc4878 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionAbsolutePaths_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionAbsolutePaths(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionContext_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionContext_test.go similarity index 82% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionContext_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionContext_test.go index b82d5ba1b770b..84ab7cc4e0c4f 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionContext_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionContext_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionContext(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go similarity index 83% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go index e5734a6f977c2..05d89c727204d 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSFalse_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionExtensionsAllowJSFalse(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go similarity index 84% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go index 9fd280a2eb2b4..0cf7f78277fc9 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionExtensionsAllowJSTrue_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionExtensionsAllowJSTrue(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go index ff8d8151c6f31..304fe38237592 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionHiddenFile_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionHiddenFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go rename to tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go index b4d0dd5409129..3c6747f3717c9 100644 --- a/tsc/internal/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashRefPathCompletionRootdirs_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashRefPathCompletionRootdirs(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tripleSlashReferenceResolutionMode_test.go b/tsc/pkg/fourslash/tests/tripleSlashReferenceResolutionMode_test.go similarity index 92% rename from tsc/internal/fourslash/tests/tripleSlashReferenceResolutionMode_test.go rename to tsc/pkg/fourslash/tests/tripleSlashReferenceResolutionMode_test.go index c0371c49624e8..b60867e86ed29 100644 --- a/tsc/internal/fourslash/tests/tripleSlashReferenceResolutionMode_test.go +++ b/tsc/pkg/fourslash/tests/tripleSlashReferenceResolutionMode_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTripleSlashReferenceResolutionMode(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsconfigComputedPropertyError_test.go b/tsc/pkg/fourslash/tests/tsconfigComputedPropertyError_test.go similarity index 80% rename from tsc/internal/fourslash/tests/tsconfigComputedPropertyError_test.go rename to tsc/pkg/fourslash/tests/tsconfigComputedPropertyError_test.go index 4e7db4770bba5..db7663b21c2bc 100644 --- a/tsc/internal/fourslash/tests/tsconfigComputedPropertyError_test.go +++ b/tsc/pkg/fourslash/tests/tsconfigComputedPropertyError_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsconfigComputedPropertyError(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go b/tsc/pkg/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go rename to tsc/pkg/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go index 1a44d6443d597..e7495e5c80c23 100644 --- a/tsc/internal/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go +++ b/tsc/pkg/fourslash/tests/tslibFindAllReferencesOnRuntimeImportWithPaths1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTslibFindAllReferencesOnRuntimeImportWithPaths1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion10_test.go b/tsc/pkg/fourslash/tests/tsxCompletion10_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion10_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion10_test.go index 998ed23e43e22..a847fb36e252e 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion10_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion10_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion11_test.go b/tsc/pkg/fourslash/tests/tsxCompletion11_test.go similarity index 80% rename from tsc/internal/fourslash/tests/tsxCompletion11_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion11_test.go index ac47297aaca0d..8754f31974fd7 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion11_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion11_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion12_test.go b/tsc/pkg/fourslash/tests/tsxCompletion12_test.go similarity index 91% rename from tsc/internal/fourslash/tests/tsxCompletion12_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion12_test.go index 4ef38747ddc80..972b398bf247c 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion12_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion12_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion12(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion13_test.go b/tsc/pkg/fourslash/tests/tsxCompletion13_test.go similarity index 92% rename from tsc/internal/fourslash/tests/tsxCompletion13_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion13_test.go index 5807096c49fd3..044dd261f08fb 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion13_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion13_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion13(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion14_test.go b/tsc/pkg/fourslash/tests/tsxCompletion14_test.go similarity index 89% rename from tsc/internal/fourslash/tests/tsxCompletion14_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion14_test.go index d8987306200f1..701f4c83c085e 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion14_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion14_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion14(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion15_test.go b/tsc/pkg/fourslash/tests/tsxCompletion15_test.go similarity index 96% rename from tsc/internal/fourslash/tests/tsxCompletion15_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion15_test.go index fe12cad1ff29a..d709b5a5af657 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion15_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion15_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion15(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion1_test.go b/tsc/pkg/fourslash/tests/tsxCompletion1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion1_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion1_test.go index 802ef1cd9e290..86dc4c770dfca 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion1_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion2_test.go b/tsc/pkg/fourslash/tests/tsxCompletion2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/tsxCompletion2_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion2_test.go index e22ab6a90562b..5a764969948d7 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion2_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion3_test.go b/tsc/pkg/fourslash/tests/tsxCompletion3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/tsxCompletion3_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion3_test.go index 277dd4c86435d..06f5de6392ab7 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion3_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion3_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion4_test.go b/tsc/pkg/fourslash/tests/tsxCompletion4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion4_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion4_test.go index 1596f889387bd..4a89b758551bb 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion4_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion4_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion5_test.go b/tsc/pkg/fourslash/tests/tsxCompletion5_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion5_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion5_test.go index 34a107c192df8..351b627623929 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion5_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion5_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion6_test.go b/tsc/pkg/fourslash/tests/tsxCompletion6_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion6_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion6_test.go index 058270a16e176..172a46c3dadf1 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion6_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion6_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion7_test.go b/tsc/pkg/fourslash/tests/tsxCompletion7_test.go similarity index 79% rename from tsc/internal/fourslash/tests/tsxCompletion7_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion7_test.go index 381e90000126c..11358cb0998c2 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion7_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion7_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletion8_test.go b/tsc/pkg/fourslash/tests/tsxCompletion8_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletion8_test.go rename to tsc/pkg/fourslash/tests/tsxCompletion8_test.go index eac69f163da6c..343c73ecff84f 100644 --- a/tsc/internal/fourslash/tests/tsxCompletion8_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletion8_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletion8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go b/tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go index 9af3ee51f0020..081727ad34339 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionInFunctionExpressionOfChildrenCallback1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go b/tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go index ad25fd9137f29..795c05e4be859 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionInFunctionExpressionOfChildrenCallback_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionInFunctionExpressionOfChildrenCallback(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionNonTagLessThan_test.go b/tsc/pkg/fourslash/tests/tsxCompletionNonTagLessThan_test.go similarity index 82% rename from tsc/internal/fourslash/tests/tsxCompletionNonTagLessThan_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionNonTagLessThan_test.go index b6bdac75461b7..d53668c75289c 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionNonTagLessThan_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionNonTagLessThan_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionNonTagLessThan(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTag1_test.go b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxCompletionOnClosingTag1_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag1_test.go index 5bcd4b4b9b973..21b66e06058ff 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTag1_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionOnClosingTag1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTag2_test.go b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/tsxCompletionOnClosingTag2_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag2_test.go index 12ce586786aa4..dc86defecfa90 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTag2_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTag2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionOnClosingTag2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go similarity index 78% rename from tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go index ea85015a9c1bd..f4f00ce013ed6 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX1_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionOnClosingTagWithoutJSX1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go index 2686e47533133..a19d9890b0926 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionOnClosingTagWithoutJSX2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionOnClosingTagWithoutJSX2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxCompletionsGenericComponent_test.go b/tsc/pkg/fourslash/tests/tsxCompletionsGenericComponent_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxCompletionsGenericComponent_test.go rename to tsc/pkg/fourslash/tests/tsxCompletionsGenericComponent_test.go index 5dfcbbc8129ee..e1738acbef7f4 100644 --- a/tsc/internal/fourslash/tests/tsxCompletionsGenericComponent_test.go +++ b/tsc/pkg/fourslash/tests/tsxCompletionsGenericComponent_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxCompletionsGenericComponent(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences10_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences10_test.go similarity index 91% rename from tsc/internal/fourslash/tests/tsxFindAllReferences10_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences10_test.go index ade3a786cdfef..5196b2e03aad2 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences10_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences10_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences10(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences11_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences11_test.go similarity index 89% rename from tsc/internal/fourslash/tests/tsxFindAllReferences11_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences11_test.go index ebb624de4d7e2..f9a96fb453c11 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences11_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences11_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences11(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences1VS_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences1VS_test.go similarity index 78% rename from tsc/internal/fourslash/tests/tsxFindAllReferences1VS_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences1VS_test.go index d0a015c714073..0e5bcb6f68b52 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences1VS_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences1VS_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences1VS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences1_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/tsxFindAllReferences1_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences1_test.go index a515cf74e37bc..aacd5bc22c7d1 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences1_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences2_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences2_test.go similarity index 83% rename from tsc/internal/fourslash/tests/tsxFindAllReferences2_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences2_test.go index 2dd5de57581a0..b597a979a473c 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences2_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences3_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences3_test.go similarity index 83% rename from tsc/internal/fourslash/tests/tsxFindAllReferences3_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences3_test.go index ae7afc4095672..18d2b77a19598 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences3_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences4_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/tsxFindAllReferences4_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences4_test.go index 73e868ecaae01..97e60531c3404 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences4_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences5_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences5_test.go similarity index 89% rename from tsc/internal/fourslash/tests/tsxFindAllReferences5_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences5_test.go index 36ddae6c7f153..fb3b1037f9c99 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences5_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences6_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences6_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxFindAllReferences6_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences6_test.go index dc15a41536578..22029e2f798f3 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences6_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences7_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences7_test.go similarity index 87% rename from tsc/internal/fourslash/tests/tsxFindAllReferences7_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences7_test.go index 5d1b21ca1a791..f677e43a7abd3 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences7_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences8_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences8_test.go similarity index 92% rename from tsc/internal/fourslash/tests/tsxFindAllReferences8_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences8_test.go index e6935020c17bb..20973576a12d4 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences8_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferences9_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferences9_test.go similarity index 91% rename from tsc/internal/fourslash/tests/tsxFindAllReferences9_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferences9_test.go index 784b257efb8c2..0762489960f43 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferences9_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferences9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferences9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go index f465db311e16a..ddc53a9372d51 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferencesUnionElementType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go b/tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go rename to tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go index 5dea2b9104a90..4c7adbca4fe6b 100644 --- a/tsc/internal/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go +++ b/tsc/pkg/fourslash/tests/tsxFindAllReferencesUnionElementType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxFindAllReferencesUnionElementType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go index 07416877ca16b..76d97777dd7b8 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionClassInDifferentFile_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionClassInDifferentFile(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionClasses_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionClasses_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionClasses_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionClasses_test.go index 6d58a29e4fc21..4d6d83cd68937 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionClasses_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionClasses_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionClasses(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go index 926e739af454a..34c69c8496864 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionIntrinsics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionIntrinsics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go similarity index 89% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go index 0abcc38109ba1..630facff3ceaf 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionStatelessFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go index bc682ab8668c7..26df2d979a8b5 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionStatelessFunction2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionStatelessFunction2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go similarity index 86% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go index 9d644123fcfcc..cb999beb7058b 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionUnionElementType1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go b/tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go similarity index 84% rename from tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go rename to tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go index 284f01b5f16a4..1ea6855547305 100644 --- a/tsc/internal/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go +++ b/tsc/pkg/fourslash/tests/tsxGoToDefinitionUnionElementType2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxGoToDefinitionUnionElementType2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxIncrementalServer_test.go b/tsc/pkg/fourslash/tests/tsxIncrementalServer_test.go similarity index 81% rename from tsc/internal/fourslash/tests/tsxIncrementalServer_test.go rename to tsc/pkg/fourslash/tests/tsxIncrementalServer_test.go index 4b014d16c5009..78c393aa3fabe 100644 --- a/tsc/internal/fourslash/tests/tsxIncrementalServer_test.go +++ b/tsc/pkg/fourslash/tests/tsxIncrementalServer_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxIncrementalServer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxIncremental_test.go b/tsc/pkg/fourslash/tests/tsxIncremental_test.go similarity index 79% rename from tsc/internal/fourslash/tests/tsxIncremental_test.go rename to tsc/pkg/fourslash/tests/tsxIncremental_test.go index 2c1722d93eb26..ed79803c12153 100644 --- a/tsc/internal/fourslash/tests/tsxIncremental_test.go +++ b/tsc/pkg/fourslash/tests/tsxIncremental_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxIncremental(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxParsing_test.go b/tsc/pkg/fourslash/tests/tsxParsing_test.go similarity index 76% rename from tsc/internal/fourslash/tests/tsxParsing_test.go rename to tsc/pkg/fourslash/tests/tsxParsing_test.go index bf2bd6c1d4038..530756cf5b3f6 100644 --- a/tsc/internal/fourslash/tests/tsxParsing_test.go +++ b/tsc/pkg/fourslash/tests/tsxParsing_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxParsing(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo1_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo1_test.go similarity index 83% rename from tsc/internal/fourslash/tests/tsxQuickInfo1_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo1_test.go index 01e42ca121667..d3fd45c666d3f 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo1_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo2_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo2_test.go similarity index 86% rename from tsc/internal/fourslash/tests/tsxQuickInfo2_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo2_test.go index c4db163a2dc41..2b19ab7b5b52e 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo2_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo3_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo3_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tsxQuickInfo3_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo3_test.go index dd190cada4a2a..d5f18dd1dafeb 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo3_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo4_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo4_test.go similarity index 94% rename from tsc/internal/fourslash/tests/tsxQuickInfo4_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo4_test.go index df70b13deb866..b739a716c1bae 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo4_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo5_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo5_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tsxQuickInfo5_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo5_test.go index 7ce0385559676..9c13c89df5702 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo5_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo6_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo6_test.go similarity index 89% rename from tsc/internal/fourslash/tests/tsxQuickInfo6_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo6_test.go index 92749a975b67f..43d7991517d18 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo6_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxQuickInfo7_test.go b/tsc/pkg/fourslash/tests/tsxQuickInfo7_test.go similarity index 94% rename from tsc/internal/fourslash/tests/tsxQuickInfo7_test.go rename to tsc/pkg/fourslash/tests/tsxQuickInfo7_test.go index cc638907ebe17..992a1dbf4449b 100644 --- a/tsc/internal/fourslash/tests/tsxQuickInfo7_test.go +++ b/tsc/pkg/fourslash/tests/tsxQuickInfo7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxQuickInfo7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename1_test.go b/tsc/pkg/fourslash/tests/tsxRename1_test.go similarity index 84% rename from tsc/internal/fourslash/tests/tsxRename1_test.go rename to tsc/pkg/fourslash/tests/tsxRename1_test.go index d74deef6b40a0..6f0e56d221c0c 100644 --- a/tsc/internal/fourslash/tests/tsxRename1_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename2_test.go b/tsc/pkg/fourslash/tests/tsxRename2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxRename2_test.go rename to tsc/pkg/fourslash/tests/tsxRename2_test.go index f1e5d70b03542..86a07484e139a 100644 --- a/tsc/internal/fourslash/tests/tsxRename2_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename3_test.go b/tsc/pkg/fourslash/tests/tsxRename3_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxRename3_test.go rename to tsc/pkg/fourslash/tests/tsxRename3_test.go index 265d5ff5af97a..4dba1ba585e35 100644 --- a/tsc/internal/fourslash/tests/tsxRename3_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename4_test.go b/tsc/pkg/fourslash/tests/tsxRename4_test.go similarity index 87% rename from tsc/internal/fourslash/tests/tsxRename4_test.go rename to tsc/pkg/fourslash/tests/tsxRename4_test.go index 09d555bb0f4c4..e9eb4c603338d 100644 --- a/tsc/internal/fourslash/tests/tsxRename4_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename5_test.go b/tsc/pkg/fourslash/tests/tsxRename5_test.go similarity index 85% rename from tsc/internal/fourslash/tests/tsxRename5_test.go rename to tsc/pkg/fourslash/tests/tsxRename5_test.go index b1e0f90c47ff8..10a1915aca12e 100644 --- a/tsc/internal/fourslash/tests/tsxRename5_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename6_test.go b/tsc/pkg/fourslash/tests/tsxRename6_test.go similarity index 90% rename from tsc/internal/fourslash/tests/tsxRename6_test.go rename to tsc/pkg/fourslash/tests/tsxRename6_test.go index 6dda565c32959..1f74827bf801c 100644 --- a/tsc/internal/fourslash/tests/tsxRename6_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename6_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename6(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename7_test.go b/tsc/pkg/fourslash/tests/tsxRename7_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tsxRename7_test.go rename to tsc/pkg/fourslash/tests/tsxRename7_test.go index 562bd9a78fbe2..39f27e56b7ee4 100644 --- a/tsc/internal/fourslash/tests/tsxRename7_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename7_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename7(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename8_test.go b/tsc/pkg/fourslash/tests/tsxRename8_test.go similarity index 88% rename from tsc/internal/fourslash/tests/tsxRename8_test.go rename to tsc/pkg/fourslash/tests/tsxRename8_test.go index d9486fbd0071d..cc3701b131176 100644 --- a/tsc/internal/fourslash/tests/tsxRename8_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename8_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename8(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxRename9_test.go b/tsc/pkg/fourslash/tests/tsxRename9_test.go similarity index 94% rename from tsc/internal/fourslash/tests/tsxRename9_test.go rename to tsc/pkg/fourslash/tests/tsxRename9_test.go index f0c39c89048d9..31e8970312eec 100644 --- a/tsc/internal/fourslash/tests/tsxRename9_test.go +++ b/tsc/pkg/fourslash/tests/tsxRename9_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxRename9(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxSignatureHelp1_test.go b/tsc/pkg/fourslash/tests/tsxSignatureHelp1_test.go similarity index 91% rename from tsc/internal/fourslash/tests/tsxSignatureHelp1_test.go rename to tsc/pkg/fourslash/tests/tsxSignatureHelp1_test.go index eecd027c5465d..c5687976c6a91 100644 --- a/tsc/internal/fourslash/tests/tsxSignatureHelp1_test.go +++ b/tsc/pkg/fourslash/tests/tsxSignatureHelp1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxSignatureHelp1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/tsxSignatureHelp2_test.go b/tsc/pkg/fourslash/tests/tsxSignatureHelp2_test.go similarity index 92% rename from tsc/internal/fourslash/tests/tsxSignatureHelp2_test.go rename to tsc/pkg/fourslash/tests/tsxSignatureHelp2_test.go index e63c7ea1c9aca..747b49a89abab 100644 --- a/tsc/internal/fourslash/tests/tsxSignatureHelp2_test.go +++ b/tsc/pkg/fourslash/tests/tsxSignatureHelp2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTsxSignatureHelp2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go b/tsc/pkg/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go similarity index 74% rename from tsc/internal/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go rename to tsc/pkg/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go index a911f11a208c3..a755d3df2c42f 100644 --- a/tsc/internal/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go +++ b/tsc/pkg/fourslash/tests/typeAboveNumberLiteralExpressionStatement_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeAboveNumberLiteralExpressionStatement(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeArgCompletion_test.go b/tsc/pkg/fourslash/tests/typeArgCompletion_test.go similarity index 79% rename from tsc/internal/fourslash/tests/typeArgCompletion_test.go rename to tsc/pkg/fourslash/tests/typeArgCompletion_test.go index 02fb9c948cdd6..3ea2161b9dfee 100644 --- a/tsc/internal/fourslash/tests/typeArgCompletion_test.go +++ b/tsc/pkg/fourslash/tests/typeArgCompletion_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeArgCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeAssertionsFormatting_test.go b/tsc/pkg/fourslash/tests/typeAssertionsFormatting_test.go similarity index 81% rename from tsc/internal/fourslash/tests/typeAssertionsFormatting_test.go rename to tsc/pkg/fourslash/tests/typeAssertionsFormatting_test.go index 0c593eff23b82..79006d8db3306 100644 --- a/tsc/internal/fourslash/tests/typeAssertionsFormatting_test.go +++ b/tsc/pkg/fourslash/tests/typeAssertionsFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeAssertionsFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go b/tsc/pkg/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go similarity index 84% rename from tsc/internal/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go rename to tsc/pkg/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go index dab2dd859b3ba..6d5c97b178dd9 100644 --- a/tsc/internal/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go +++ b/tsc/pkg/fourslash/tests/typeCheckAfterAddingGenericParameter_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeCheckAfterAddingGenericParameter(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeCheckAfterResolve_test.go b/tsc/pkg/fourslash/tests/typeCheckAfterResolve_test.go similarity index 83% rename from tsc/internal/fourslash/tests/typeCheckAfterResolve_test.go rename to tsc/pkg/fourslash/tests/typeCheckAfterResolve_test.go index f7d5b6929d32f..34a76ae0a49fe 100644 --- a/tsc/internal/fourslash/tests/typeCheckAfterResolve_test.go +++ b/tsc/pkg/fourslash/tests/typeCheckAfterResolve_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeCheckAfterResolve(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeCheckObjectInArrayLiteral_test.go b/tsc/pkg/fourslash/tests/typeCheckObjectInArrayLiteral_test.go similarity index 76% rename from tsc/internal/fourslash/tests/typeCheckObjectInArrayLiteral_test.go rename to tsc/pkg/fourslash/tests/typeCheckObjectInArrayLiteral_test.go index 78b94f11d40a6..9e756732cd4b0 100644 --- a/tsc/internal/fourslash/tests/typeCheckObjectInArrayLiteral_test.go +++ b/tsc/pkg/fourslash/tests/typeCheckObjectInArrayLiteral_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeCheckObjectInArrayLiteral(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go b/tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go similarity index 90% rename from tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go rename to tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go index cded2705320dc..14408a9dc8e5b 100644 --- a/tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go +++ b/tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall2_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeErrorAfterStringCompletionsInNestedCall2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go b/tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go similarity index 88% rename from tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go rename to tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go index 5a9b800181f52..8053af38ab996 100644 --- a/tsc/internal/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go +++ b/tsc/pkg/fourslash/tests/typeErrorAfterStringCompletionsInNestedCall_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeErrorAfterStringCompletionsInNestedCall(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeKeywordInFunction_test.go b/tsc/pkg/fourslash/tests/typeKeywordInFunction_test.go similarity index 71% rename from tsc/internal/fourslash/tests/typeKeywordInFunction_test.go rename to tsc/pkg/fourslash/tests/typeKeywordInFunction_test.go index 5d01e7f484a7f..e30f913c97ade 100644 --- a/tsc/internal/fourslash/tests/typeKeywordInFunction_test.go +++ b/tsc/pkg/fourslash/tests/typeKeywordInFunction_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeKeywordInFunction(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeOfAFundule_test.go b/tsc/pkg/fourslash/tests/typeOfAFundule_test.go similarity index 79% rename from tsc/internal/fourslash/tests/typeOfAFundule_test.go rename to tsc/pkg/fourslash/tests/typeOfAFundule_test.go index f8d6fde7064e8..10ee11c79a780 100644 --- a/tsc/internal/fourslash/tests/typeOfAFundule_test.go +++ b/tsc/pkg/fourslash/tests/typeOfAFundule_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeOfAFundule(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeOfKeywordCompletion_test.go b/tsc/pkg/fourslash/tests/typeOfKeywordCompletion_test.go similarity index 71% rename from tsc/internal/fourslash/tests/typeOfKeywordCompletion_test.go rename to tsc/pkg/fourslash/tests/typeOfKeywordCompletion_test.go index 13cba75f5334d..82158a3249804 100644 --- a/tsc/internal/fourslash/tests/typeOfKeywordCompletion_test.go +++ b/tsc/pkg/fourslash/tests/typeOfKeywordCompletion_test.go @@ -3,11 +3,11 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeOfKeywordCompletion(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeOperatorNodeBuilding_test.go b/tsc/pkg/fourslash/tests/typeOperatorNodeBuilding_test.go similarity index 88% rename from tsc/internal/fourslash/tests/typeOperatorNodeBuilding_test.go rename to tsc/pkg/fourslash/tests/typeOperatorNodeBuilding_test.go index b920aceeb0727..ac4ae4c817b1a 100644 --- a/tsc/internal/fourslash/tests/typeOperatorNodeBuilding_test.go +++ b/tsc/pkg/fourslash/tests/typeOperatorNodeBuilding_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeOperatorNodeBuilding(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeReferenceAndImportDeprecated_test.go b/tsc/pkg/fourslash/tests/typeReferenceAndImportDeprecated_test.go similarity index 90% rename from tsc/internal/fourslash/tests/typeReferenceAndImportDeprecated_test.go rename to tsc/pkg/fourslash/tests/typeReferenceAndImportDeprecated_test.go index 008e142cc204d..deeaee2d50683 100644 --- a/tsc/internal/fourslash/tests/typeReferenceAndImportDeprecated_test.go +++ b/tsc/pkg/fourslash/tests/typeReferenceAndImportDeprecated_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeReferenceAndImportDeprecated(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typeReferenceOnServer_test.go b/tsc/pkg/fourslash/tests/typeReferenceOnServer_test.go similarity index 79% rename from tsc/internal/fourslash/tests/typeReferenceOnServer_test.go rename to tsc/pkg/fourslash/tests/typeReferenceOnServer_test.go index f7405c59d5d69..d1636f899294e 100644 --- a/tsc/internal/fourslash/tests/typeReferenceOnServer_test.go +++ b/tsc/pkg/fourslash/tests/typeReferenceOnServer_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypeReferenceOnServer(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/typedefinition01_test.go b/tsc/pkg/fourslash/tests/typedefinition01_test.go similarity index 80% rename from tsc/internal/fourslash/tests/typedefinition01_test.go rename to tsc/pkg/fourslash/tests/typedefinition01_test.go index 1d48d07fc0a47..7fa3c899f0a49 100644 --- a/tsc/internal/fourslash/tests/typedefinition01_test.go +++ b/tsc/pkg/fourslash/tests/typedefinition01_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTypedefinition01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unclosedCommentsInConstructor_test.go b/tsc/pkg/fourslash/tests/unclosedCommentsInConstructor_test.go similarity index 75% rename from tsc/internal/fourslash/tests/unclosedCommentsInConstructor_test.go rename to tsc/pkg/fourslash/tests/unclosedCommentsInConstructor_test.go index b9323b22d6a3e..5183fdb9565c8 100644 --- a/tsc/internal/fourslash/tests/unclosedCommentsInConstructor_test.go +++ b/tsc/pkg/fourslash/tests/unclosedCommentsInConstructor_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnclosedCommentsInConstructor(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unclosedStringLiteralAutoformating_test.go b/tsc/pkg/fourslash/tests/unclosedStringLiteralAutoformating_test.go similarity index 77% rename from tsc/internal/fourslash/tests/unclosedStringLiteralAutoformating_test.go rename to tsc/pkg/fourslash/tests/unclosedStringLiteralAutoformating_test.go index a7add38e16ba7..d6bcfbf6547eb 100644 --- a/tsc/internal/fourslash/tests/unclosedStringLiteralAutoformating_test.go +++ b/tsc/pkg/fourslash/tests/unclosedStringLiteralAutoformating_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnclosedStringLiteralAutoformating(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go b/tsc/pkg/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go similarity index 79% rename from tsc/internal/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go rename to tsc/pkg/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go index e932301628f46..1ff8ef4ccbfa3 100644 --- a/tsc/internal/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go +++ b/tsc/pkg/fourslash/tests/unclosedStringLiteralErrorRecovery_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnclosedStringLiteralErrorRecovery(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/underscoreTypings01_test.go b/tsc/pkg/fourslash/tests/underscoreTypings01_test.go similarity index 91% rename from tsc/internal/fourslash/tests/underscoreTypings01_test.go rename to tsc/pkg/fourslash/tests/underscoreTypings01_test.go index 9cb49d9e23505..9d51f6dd8e2ae 100644 --- a/tsc/internal/fourslash/tests/underscoreTypings01_test.go +++ b/tsc/pkg/fourslash/tests/underscoreTypings01_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - . "github.com/microsoft/TypeScript/tsc/internal/fourslash/tests/util" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + . "github.com/frida/TypeScript/tsc/pkg/fourslash/tests/util" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnderscoreTypings01(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/underscoreTypings02_test.go b/tsc/pkg/fourslash/tests/underscoreTypings02_test.go similarity index 88% rename from tsc/internal/fourslash/tests/underscoreTypings02_test.go rename to tsc/pkg/fourslash/tests/underscoreTypings02_test.go index 4b71c19ee2844..83e74719ce07d 100644 --- a/tsc/internal/fourslash/tests/underscoreTypings02_test.go +++ b/tsc/pkg/fourslash/tests/underscoreTypings02_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnderscoreTypings02(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unreachableCodeAfterEdit_test.go b/tsc/pkg/fourslash/tests/unreachableCodeAfterEdit_test.go similarity index 92% rename from tsc/internal/fourslash/tests/unreachableCodeAfterEdit_test.go rename to tsc/pkg/fourslash/tests/unreachableCodeAfterEdit_test.go index e10f52c829add..ae15c7ddc6024 100644 --- a/tsc/internal/fourslash/tests/unreachableCodeAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/unreachableCodeAfterEdit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnreachableCodeAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unreachableCodeDiagnostics_test.go b/tsc/pkg/fourslash/tests/unreachableCodeDiagnostics_test.go similarity index 77% rename from tsc/internal/fourslash/tests/unreachableCodeDiagnostics_test.go rename to tsc/pkg/fourslash/tests/unreachableCodeDiagnostics_test.go index 1a48a438d0c87..c1eb09f61d127 100644 --- a/tsc/internal/fourslash/tests/unreachableCodeDiagnostics_test.go +++ b/tsc/pkg/fourslash/tests/unreachableCodeDiagnostics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnreachableCodeDiagnostics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unreachableStatementNodeReuse_test.go b/tsc/pkg/fourslash/tests/unreachableStatementNodeReuse_test.go similarity index 79% rename from tsc/internal/fourslash/tests/unreachableStatementNodeReuse_test.go rename to tsc/pkg/fourslash/tests/unreachableStatementNodeReuse_test.go index 9fcc6d3eb1def..63d17764e625b 100644 --- a/tsc/internal/fourslash/tests/unreachableStatementNodeReuse_test.go +++ b/tsc/pkg/fourslash/tests/unreachableStatementNodeReuse_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnreachableStatementNodeReuse(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedClassInNamespace1_test.go b/tsc/pkg/fourslash/tests/unusedClassInNamespace1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/unusedClassInNamespace1_test.go rename to tsc/pkg/fourslash/tests/unusedClassInNamespace1_test.go index d6922e913cb3d..356a82f6c803e 100644 --- a/tsc/internal/fourslash/tests/unusedClassInNamespace1_test.go +++ b/tsc/pkg/fourslash/tests/unusedClassInNamespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedClassInNamespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedClassInNamespace3_test.go b/tsc/pkg/fourslash/tests/unusedClassInNamespace3_test.go similarity index 84% rename from tsc/internal/fourslash/tests/unusedClassInNamespace3_test.go rename to tsc/pkg/fourslash/tests/unusedClassInNamespace3_test.go index 997bf735b6da3..e1f3d7721635c 100644 --- a/tsc/internal/fourslash/tests/unusedClassInNamespace3_test.go +++ b/tsc/pkg/fourslash/tests/unusedClassInNamespace3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedClassInNamespace3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedClassInNamespace4_test.go b/tsc/pkg/fourslash/tests/unusedClassInNamespace4_test.go similarity index 84% rename from tsc/internal/fourslash/tests/unusedClassInNamespace4_test.go rename to tsc/pkg/fourslash/tests/unusedClassInNamespace4_test.go index 83436799596c5..16d0d484a7db0 100644 --- a/tsc/internal/fourslash/tests/unusedClassInNamespace4_test.go +++ b/tsc/pkg/fourslash/tests/unusedClassInNamespace4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedClassInNamespace4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go b/tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go rename to tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go index f16a9d5ecc221..5d2d0767394cd 100644 --- a/tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go +++ b/tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedClassInNamespaceWithTrivia1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go b/tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go rename to tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go index 07ccb5e38d531..12023362d3a33 100644 --- a/tsc/internal/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go +++ b/tsc/pkg/fourslash/tests/unusedClassInNamespaceWithTrivia2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedClassInNamespaceWithTrivia2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedConstantInFunction1_test.go b/tsc/pkg/fourslash/tests/unusedConstantInFunction1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/unusedConstantInFunction1_test.go rename to tsc/pkg/fourslash/tests/unusedConstantInFunction1_test.go index 6d55131fd7cd0..19fd0ff52a9b2 100644 --- a/tsc/internal/fourslash/tests/unusedConstantInFunction1_test.go +++ b/tsc/pkg/fourslash/tests/unusedConstantInFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedConstantInFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedEnumInFunction1_test.go b/tsc/pkg/fourslash/tests/unusedEnumInFunction1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/unusedEnumInFunction1_test.go rename to tsc/pkg/fourslash/tests/unusedEnumInFunction1_test.go index 1db655b2efae8..ec246fb3eb3d1 100644 --- a/tsc/internal/fourslash/tests/unusedEnumInFunction1_test.go +++ b/tsc/pkg/fourslash/tests/unusedEnumInFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedEnumInFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedEnumInNamespace1_test.go b/tsc/pkg/fourslash/tests/unusedEnumInNamespace1_test.go similarity index 80% rename from tsc/internal/fourslash/tests/unusedEnumInNamespace1_test.go rename to tsc/pkg/fourslash/tests/unusedEnumInNamespace1_test.go index d5b2ce441b9c1..70658f8dacd7c 100644 --- a/tsc/internal/fourslash/tests/unusedEnumInNamespace1_test.go +++ b/tsc/pkg/fourslash/tests/unusedEnumInNamespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedEnumInNamespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespace1_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespace1_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespace1_test.go index 14302d24eeda6..a5de0e0acd71a 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespace1_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespace1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespace2_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace2_test.go similarity index 82% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespace2_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespace2_test.go index 4cd2c4cd29299..739d070eddf76 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespace2_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespace2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespace3_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace3_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespace3_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespace3_test.go index c071b967f59e2..2a909c585311e 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespace3_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespace3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespace4_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace4_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespace4_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespace4_test.go index 9cd804a409548..8083ab0abd9c0 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespace4_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespace4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespace5_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace5_test.go similarity index 86% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespace5_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespace5_test.go index 3fff469d623b7..56ba6c757bfdc 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespace5_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespace5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespace5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go b/tsc/pkg/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go similarity index 82% rename from tsc/internal/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go rename to tsc/pkg/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go index 04a1998819aae..c5703bfdf6663 100644 --- a/tsc/internal/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go +++ b/tsc/pkg/fourslash/tests/unusedFunctionInNamespaceWithTrivia_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedFunctionInNamespaceWithTrivia(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports10FS_test.go b/tsc/pkg/fourslash/tests/unusedImports10FS_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedImports10FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports10FS_test.go index 161e96bdf9c91..9ee60c043e5ea 100644 --- a/tsc/internal/fourslash/tests/unusedImports10FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports10FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports10FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports11FS_test.go b/tsc/pkg/fourslash/tests/unusedImports11FS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/unusedImports11FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports11FS_test.go index 42e5cacb6a377..862bc3ae09fff 100644 --- a/tsc/internal/fourslash/tests/unusedImports11FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports11FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports11FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports12FS_test.go b/tsc/pkg/fourslash/tests/unusedImports12FS_test.go similarity index 83% rename from tsc/internal/fourslash/tests/unusedImports12FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports12FS_test.go index cc6afd1f18d82..faf95c166ef29 100644 --- a/tsc/internal/fourslash/tests/unusedImports12FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports12FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports12FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports13FS_test.go b/tsc/pkg/fourslash/tests/unusedImports13FS_test.go similarity index 82% rename from tsc/internal/fourslash/tests/unusedImports13FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports13FS_test.go index a95613fc40643..425edcaf570e9 100644 --- a/tsc/internal/fourslash/tests/unusedImports13FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports13FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports13FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports14FS_test.go b/tsc/pkg/fourslash/tests/unusedImports14FS_test.go similarity index 84% rename from tsc/internal/fourslash/tests/unusedImports14FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports14FS_test.go index 363f6477c4a17..9cce68309c656 100644 --- a/tsc/internal/fourslash/tests/unusedImports14FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports14FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports14FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports1FS_test.go b/tsc/pkg/fourslash/tests/unusedImports1FS_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedImports1FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports1FS_test.go index 9eea12749f44f..3a3a3b7bd627b 100644 --- a/tsc/internal/fourslash/tests/unusedImports1FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports1FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports1FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports3FS_test.go b/tsc/pkg/fourslash/tests/unusedImports3FS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedImports3FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports3FS_test.go index 057c0fa475ec2..04c9905529941 100644 --- a/tsc/internal/fourslash/tests/unusedImports3FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports3FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports3FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports4FS_test.go b/tsc/pkg/fourslash/tests/unusedImports4FS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedImports4FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports4FS_test.go index 0158b2f306403..2f78556f4b0cf 100644 --- a/tsc/internal/fourslash/tests/unusedImports4FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports4FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports4FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports5FS_test.go b/tsc/pkg/fourslash/tests/unusedImports5FS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedImports5FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports5FS_test.go index 03346925566a3..640c96f58b342 100644 --- a/tsc/internal/fourslash/tests/unusedImports5FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports5FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports5FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports6FS_test.go b/tsc/pkg/fourslash/tests/unusedImports6FS_test.go similarity index 83% rename from tsc/internal/fourslash/tests/unusedImports6FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports6FS_test.go index aa00ae1e80140..cdc280fada833 100644 --- a/tsc/internal/fourslash/tests/unusedImports6FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports6FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports6FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports7FS_test.go b/tsc/pkg/fourslash/tests/unusedImports7FS_test.go similarity index 83% rename from tsc/internal/fourslash/tests/unusedImports7FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports7FS_test.go index 8c379489a8e34..3946f5a5c0233 100644 --- a/tsc/internal/fourslash/tests/unusedImports7FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports7FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports7FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports8FS_test.go b/tsc/pkg/fourslash/tests/unusedImports8FS_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedImports8FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports8FS_test.go index 2110c170f02b0..a31047facc6be 100644 --- a/tsc/internal/fourslash/tests/unusedImports8FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports8FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports8FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedImports9FS_test.go b/tsc/pkg/fourslash/tests/unusedImports9FS_test.go similarity index 83% rename from tsc/internal/fourslash/tests/unusedImports9FS_test.go rename to tsc/pkg/fourslash/tests/unusedImports9FS_test.go index 1d58971800755..61a64ab5c56ee 100644 --- a/tsc/internal/fourslash/tests/unusedImports9FS_test.go +++ b/tsc/pkg/fourslash/tests/unusedImports9FS_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedImports9FS(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedLabelAfterEdit_test.go b/tsc/pkg/fourslash/tests/unusedLabelAfterEdit_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedLabelAfterEdit_test.go rename to tsc/pkg/fourslash/tests/unusedLabelAfterEdit_test.go index 61d25b88f069d..92b4f8825c32e 100644 --- a/tsc/internal/fourslash/tests/unusedLabelAfterEdit_test.go +++ b/tsc/pkg/fourslash/tests/unusedLabelAfterEdit_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedLabelAfterEdit(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedLocalsInFunction1_test.go b/tsc/pkg/fourslash/tests/unusedLocalsInFunction1_test.go similarity index 79% rename from tsc/internal/fourslash/tests/unusedLocalsInFunction1_test.go rename to tsc/pkg/fourslash/tests/unusedLocalsInFunction1_test.go index 24e7cce0f8d68..a3b249a315203 100644 --- a/tsc/internal/fourslash/tests/unusedLocalsInFunction1_test.go +++ b/tsc/pkg/fourslash/tests/unusedLocalsInFunction1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedLocalsInFunction1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedLocalsInFunction3_test.go b/tsc/pkg/fourslash/tests/unusedLocalsInFunction3_test.go similarity index 80% rename from tsc/internal/fourslash/tests/unusedLocalsInFunction3_test.go rename to tsc/pkg/fourslash/tests/unusedLocalsInFunction3_test.go index 1c94fd1b10313..655ca468c2fd6 100644 --- a/tsc/internal/fourslash/tests/unusedLocalsInFunction3_test.go +++ b/tsc/pkg/fourslash/tests/unusedLocalsInFunction3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedLocalsInFunction3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedLocalsinConstructorFS1_test.go b/tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS1_test.go similarity index 81% rename from tsc/internal/fourslash/tests/unusedLocalsinConstructorFS1_test.go rename to tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS1_test.go index 46c9917966e48..836ffaac8ca19 100644 --- a/tsc/internal/fourslash/tests/unusedLocalsinConstructorFS1_test.go +++ b/tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedLocalsinConstructorFS1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedLocalsinConstructorFS2_test.go b/tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS2_test.go similarity index 85% rename from tsc/internal/fourslash/tests/unusedLocalsinConstructorFS2_test.go rename to tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS2_test.go index b4806ae7ea809..c1f0467e43b6b 100644 --- a/tsc/internal/fourslash/tests/unusedLocalsinConstructorFS2_test.go +++ b/tsc/pkg/fourslash/tests/unusedLocalsinConstructorFS2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedLocalsinConstructorFS2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/unusedVariableInClass5_test.go b/tsc/pkg/fourslash/tests/unusedVariableInClass5_test.go similarity index 77% rename from tsc/internal/fourslash/tests/unusedVariableInClass5_test.go rename to tsc/pkg/fourslash/tests/unusedVariableInClass5_test.go index f959454f5151d..e26ab8805b309 100644 --- a/tsc/internal/fourslash/tests/unusedVariableInClass5_test.go +++ b/tsc/pkg/fourslash/tests/unusedVariableInClass5_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUnusedVariableInClass5(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/updateSourceFile_jsdocSignature_test.go b/tsc/pkg/fourslash/tests/updateSourceFile_jsdocSignature_test.go similarity index 76% rename from tsc/internal/fourslash/tests/updateSourceFile_jsdocSignature_test.go rename to tsc/pkg/fourslash/tests/updateSourceFile_jsdocSignature_test.go index 5e5b7d325d9e2..a8887adaa3a51 100644 --- a/tsc/internal/fourslash/tests/updateSourceFile_jsdocSignature_test.go +++ b/tsc/pkg/fourslash/tests/updateSourceFile_jsdocSignature_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUpdateSourceFile_jsdocSignature(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/updateToClassStatics_test.go b/tsc/pkg/fourslash/tests/updateToClassStatics_test.go similarity index 88% rename from tsc/internal/fourslash/tests/updateToClassStatics_test.go rename to tsc/pkg/fourslash/tests/updateToClassStatics_test.go index 624cc3bbf6c8f..2487cc052c93b 100644 --- a/tsc/internal/fourslash/tests/updateToClassStatics_test.go +++ b/tsc/pkg/fourslash/tests/updateToClassStatics_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestUpdateToClassStatics(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/util/util.go b/tsc/pkg/fourslash/tests/util/util.go similarity index 99% rename from tsc/internal/fourslash/tests/util/util.go rename to tsc/pkg/fourslash/tests/util/util.go index 6c2285301d78c..b617f98e92889 100644 --- a/tsc/internal/fourslash/tests/util/util.go +++ b/tsc/pkg/fourslash/tests/util/util.go @@ -4,11 +4,11 @@ import ( "fmt" "slices" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) var Ignored = struct{}{} diff --git a/tsc/internal/fourslash/tests/verifySingleFileEmitOutput1_test.go b/tsc/pkg/fourslash/tests/verifySingleFileEmitOutput1_test.go similarity index 82% rename from tsc/internal/fourslash/tests/verifySingleFileEmitOutput1_test.go rename to tsc/pkg/fourslash/tests/verifySingleFileEmitOutput1_test.go index fffc1d0d25501..e9417f40c53e0 100644 --- a/tsc/internal/fourslash/tests/verifySingleFileEmitOutput1_test.go +++ b/tsc/pkg/fourslash/tests/verifySingleFileEmitOutput1_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestVerifySingleFileEmitOutput1(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go b/tsc/pkg/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go similarity index 78% rename from tsc/internal/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go rename to tsc/pkg/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go index c3d9ef683e97f..131319e236c72 100644 --- a/tsc/internal/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go +++ b/tsc/pkg/fourslash/tests/whiteSpaceBeforeReturnTypeFormatting_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWhiteSpaceBeforeReturnTypeFormatting(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/whiteSpaceTrimming2_test.go b/tsc/pkg/fourslash/tests/whiteSpaceTrimming2_test.go similarity index 88% rename from tsc/internal/fourslash/tests/whiteSpaceTrimming2_test.go rename to tsc/pkg/fourslash/tests/whiteSpaceTrimming2_test.go index dcb98b0ccd49c..798a526025faf 100644 --- a/tsc/internal/fourslash/tests/whiteSpaceTrimming2_test.go +++ b/tsc/pkg/fourslash/tests/whiteSpaceTrimming2_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWhiteSpaceTrimming2(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/whiteSpaceTrimming3_test.go b/tsc/pkg/fourslash/tests/whiteSpaceTrimming3_test.go similarity index 78% rename from tsc/internal/fourslash/tests/whiteSpaceTrimming3_test.go rename to tsc/pkg/fourslash/tests/whiteSpaceTrimming3_test.go index 040d7fcc683e4..4030d61d1a8b9 100644 --- a/tsc/internal/fourslash/tests/whiteSpaceTrimming3_test.go +++ b/tsc/pkg/fourslash/tests/whiteSpaceTrimming3_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWhiteSpaceTrimming3(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/whiteSpaceTrimming4_test.go b/tsc/pkg/fourslash/tests/whiteSpaceTrimming4_test.go similarity index 77% rename from tsc/internal/fourslash/tests/whiteSpaceTrimming4_test.go rename to tsc/pkg/fourslash/tests/whiteSpaceTrimming4_test.go index 257fd364b14d3..dc0368b4985a0 100644 --- a/tsc/internal/fourslash/tests/whiteSpaceTrimming4_test.go +++ b/tsc/pkg/fourslash/tests/whiteSpaceTrimming4_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWhiteSpaceTrimming4(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/whiteSpaceTrimming_test.go b/tsc/pkg/fourslash/tests/whiteSpaceTrimming_test.go similarity index 78% rename from tsc/internal/fourslash/tests/whiteSpaceTrimming_test.go rename to tsc/pkg/fourslash/tests/whiteSpaceTrimming_test.go index f45d618792d96..3d1fa0abb21e8 100644 --- a/tsc/internal/fourslash/tests/whiteSpaceTrimming_test.go +++ b/tsc/pkg/fourslash/tests/whiteSpaceTrimming_test.go @@ -3,8 +3,8 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWhiteSpaceTrimming(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/workspaceSymbolCurrentProject_test.go b/tsc/pkg/fourslash/tests/workspaceSymbolCurrentProject_test.go similarity index 86% rename from tsc/internal/fourslash/tests/workspaceSymbolCurrentProject_test.go rename to tsc/pkg/fourslash/tests/workspaceSymbolCurrentProject_test.go index 2ae8634a134dd..2976c382d3764 100644 --- a/tsc/internal/fourslash/tests/workspaceSymbolCurrentProject_test.go +++ b/tsc/pkg/fourslash/tests/workspaceSymbolCurrentProject_test.go @@ -3,10 +3,10 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestWorkspaceSymbolCurrentProject(t *testing.T) { diff --git a/tsc/internal/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go b/tsc/pkg/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go similarity index 89% rename from tsc/internal/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go rename to tsc/pkg/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go index f959364976575..75abf6af24001 100644 --- a/tsc/internal/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go +++ b/tsc/pkg/fourslash/tests/workspaceSymbolMultiProjectNonExistentRef_test.go @@ -3,9 +3,9 @@ package fourslash_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/fourslash" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/fourslash" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) // TestWorkspaceSymbolMultiProjectNonExistentRef verifies that workspace symbol diff --git a/tsc/internal/fswatch/CHANGES.md b/tsc/pkg/fswatch/CHANGES.md similarity index 100% rename from tsc/internal/fswatch/CHANGES.md rename to tsc/pkg/fswatch/CHANGES.md diff --git a/tsc/internal/fswatch/LICENSE b/tsc/pkg/fswatch/LICENSE similarity index 100% rename from tsc/internal/fswatch/LICENSE rename to tsc/pkg/fswatch/LICENSE diff --git a/tsc/internal/fswatch/README.md b/tsc/pkg/fswatch/README.md similarity index 97% rename from tsc/internal/fswatch/README.md rename to tsc/pkg/fswatch/README.md index 82f2759224a4d..b173db3ca2909 100644 --- a/tsc/internal/fswatch/README.md +++ b/tsc/pkg/fswatch/README.md @@ -25,7 +25,7 @@ import ( "os" "os/signal" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" + "github.com/frida/TypeScript/tsc/pkg/fswatch" ) func main() { diff --git a/tsc/internal/fswatch/canonicalize_darwin.go b/tsc/pkg/fswatch/canonicalize_darwin.go similarity index 100% rename from tsc/internal/fswatch/canonicalize_darwin.go rename to tsc/pkg/fswatch/canonicalize_darwin.go diff --git a/tsc/internal/fswatch/canonicalize_other.go b/tsc/pkg/fswatch/canonicalize_other.go similarity index 100% rename from tsc/internal/fswatch/canonicalize_other.go rename to tsc/pkg/fswatch/canonicalize_other.go diff --git a/tsc/internal/fswatch/cgmanifest.json b/tsc/pkg/fswatch/cgmanifest.json similarity index 100% rename from tsc/internal/fswatch/cgmanifest.json rename to tsc/pkg/fswatch/cgmanifest.json diff --git a/tsc/internal/fswatch/debounce.go b/tsc/pkg/fswatch/debounce.go similarity index 100% rename from tsc/internal/fswatch/debounce.go rename to tsc/pkg/fswatch/debounce.go diff --git a/tsc/internal/fswatch/event.go b/tsc/pkg/fswatch/event.go similarity index 100% rename from tsc/internal/fswatch/event.go rename to tsc/pkg/fswatch/event.go diff --git a/tsc/internal/fswatch/eventlist_test.go b/tsc/pkg/fswatch/eventlist_test.go similarity index 100% rename from tsc/internal/fswatch/eventlist_test.go rename to tsc/pkg/fswatch/eventlist_test.go diff --git a/tsc/internal/fswatch/fallback_test.go b/tsc/pkg/fswatch/fallback_test.go similarity index 100% rename from tsc/internal/fswatch/fallback_test.go rename to tsc/pkg/fswatch/fallback_test.go diff --git a/tsc/internal/fswatch/fanotify_linux.go b/tsc/pkg/fswatch/fanotify_linux.go similarity index 100% rename from tsc/internal/fswatch/fanotify_linux.go rename to tsc/pkg/fswatch/fanotify_linux.go diff --git a/tsc/internal/fswatch/fanotify_linux_test.go b/tsc/pkg/fswatch/fanotify_linux_test.go similarity index 100% rename from tsc/internal/fswatch/fanotify_linux_test.go rename to tsc/pkg/fswatch/fanotify_linux_test.go diff --git a/tsc/internal/fswatch/fsevents_darwin.go b/tsc/pkg/fswatch/fsevents_darwin.go similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin.go rename to tsc/pkg/fswatch/fsevents_darwin.go diff --git a/tsc/internal/fswatch/fsevents_darwin_ffi.go b/tsc/pkg/fswatch/fsevents_darwin_ffi.go similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_ffi.go rename to tsc/pkg/fswatch/fsevents_darwin_ffi.go diff --git a/tsc/internal/fswatch/fsevents_darwin_ffi.s b/tsc/pkg/fswatch/fsevents_darwin_ffi.s similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_ffi.s rename to tsc/pkg/fswatch/fsevents_darwin_ffi.s diff --git a/tsc/internal/fswatch/fsevents_darwin_ffi_amd64.s b/tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_ffi_amd64.s rename to tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s diff --git a/tsc/internal/fswatch/fsevents_darwin_ffi_arm64.s b/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_ffi_arm64.s rename to tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s diff --git a/tsc/internal/fswatch/fsevents_darwin_ffi_arm64_test.go b/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64_test.go similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_ffi_arm64_test.go rename to tsc/pkg/fswatch/fsevents_darwin_ffi_arm64_test.go diff --git a/tsc/internal/fswatch/fsevents_darwin_nfd_test.go b/tsc/pkg/fswatch/fsevents_darwin_nfd_test.go similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_nfd_test.go rename to tsc/pkg/fswatch/fsevents_darwin_nfd_test.go diff --git a/tsc/internal/fswatch/fsevents_darwin_shared_test.go b/tsc/pkg/fswatch/fsevents_darwin_shared_test.go similarity index 100% rename from tsc/internal/fswatch/fsevents_darwin_shared_test.go rename to tsc/pkg/fswatch/fsevents_darwin_shared_test.go diff --git a/tsc/internal/fswatch/inotify_linux.go b/tsc/pkg/fswatch/inotify_linux.go similarity index 100% rename from tsc/internal/fswatch/inotify_linux.go rename to tsc/pkg/fswatch/inotify_linux.go diff --git a/tsc/internal/fswatch/kqueue.go b/tsc/pkg/fswatch/kqueue.go similarity index 100% rename from tsc/internal/fswatch/kqueue.go rename to tsc/pkg/fswatch/kqueue.go diff --git a/tsc/internal/fswatch/testutil_test.go b/tsc/pkg/fswatch/testutil_test.go similarity index 100% rename from tsc/internal/fswatch/testutil_test.go rename to tsc/pkg/fswatch/testutil_test.go diff --git a/tsc/internal/fswatch/walkdir.go b/tsc/pkg/fswatch/walkdir.go similarity index 100% rename from tsc/internal/fswatch/walkdir.go rename to tsc/pkg/fswatch/walkdir.go diff --git a/tsc/internal/fswatch/walkdir_dirent_darwin.go b/tsc/pkg/fswatch/walkdir_dirent_darwin.go similarity index 100% rename from tsc/internal/fswatch/walkdir_dirent_darwin.go rename to tsc/pkg/fswatch/walkdir_dirent_darwin.go diff --git a/tsc/internal/fswatch/walkdir_dirent_fileno.go b/tsc/pkg/fswatch/walkdir_dirent_fileno.go similarity index 100% rename from tsc/internal/fswatch/walkdir_dirent_fileno.go rename to tsc/pkg/fswatch/walkdir_dirent_fileno.go diff --git a/tsc/internal/fswatch/walkdir_dirent_linux.go b/tsc/pkg/fswatch/walkdir_dirent_linux.go similarity index 100% rename from tsc/internal/fswatch/walkdir_dirent_linux.go rename to tsc/pkg/fswatch/walkdir_dirent_linux.go diff --git a/tsc/internal/fswatch/walkdir_dirent_noreclen.go b/tsc/pkg/fswatch/walkdir_dirent_noreclen.go similarity index 100% rename from tsc/internal/fswatch/walkdir_dirent_noreclen.go rename to tsc/pkg/fswatch/walkdir_dirent_noreclen.go diff --git a/tsc/internal/fswatch/walkdir_other.go b/tsc/pkg/fswatch/walkdir_other.go similarity index 100% rename from tsc/internal/fswatch/walkdir_other.go rename to tsc/pkg/fswatch/walkdir_other.go diff --git a/tsc/internal/fswatch/walkdir_test.go b/tsc/pkg/fswatch/walkdir_test.go similarity index 100% rename from tsc/internal/fswatch/walkdir_test.go rename to tsc/pkg/fswatch/walkdir_test.go diff --git a/tsc/internal/fswatch/walkdir_unix.go b/tsc/pkg/fswatch/walkdir_unix.go similarity index 100% rename from tsc/internal/fswatch/walkdir_unix.go rename to tsc/pkg/fswatch/walkdir_unix.go diff --git a/tsc/internal/fswatch/walkdir_windows.go b/tsc/pkg/fswatch/walkdir_windows.go similarity index 100% rename from tsc/internal/fswatch/walkdir_windows.go rename to tsc/pkg/fswatch/walkdir_windows.go diff --git a/tsc/internal/fswatch/watcher.go b/tsc/pkg/fswatch/watcher.go similarity index 99% rename from tsc/internal/fswatch/watcher.go rename to tsc/pkg/fswatch/watcher.go index fa8a7489841d7..5599981f7a645 100644 --- a/tsc/internal/fswatch/watcher.go +++ b/tsc/pkg/fswatch/watcher.go @@ -11,7 +11,7 @@ import ( "sync" "syscall" - "github.com/microsoft/TypeScript/tsc/internal/nativepath" + "github.com/frida/TypeScript/tsc/pkg/nativepath" ) var errNilCallback = errors.New("fswatch: callback must not be nil") diff --git a/tsc/internal/fswatch/watcher_test.go b/tsc/pkg/fswatch/watcher_test.go similarity index 100% rename from tsc/internal/fswatch/watcher_test.go rename to tsc/pkg/fswatch/watcher_test.go diff --git a/tsc/internal/fswatch/windows.go b/tsc/pkg/fswatch/windows.go similarity index 100% rename from tsc/internal/fswatch/windows.go rename to tsc/pkg/fswatch/windows.go diff --git a/tsc/internal/glob/glob.go b/tsc/pkg/glob/glob.go similarity index 100% rename from tsc/internal/glob/glob.go rename to tsc/pkg/glob/glob.go diff --git a/tsc/internal/ipc/conn.go b/tsc/pkg/ipc/conn.go similarity index 96% rename from tsc/internal/ipc/conn.go rename to tsc/pkg/ipc/conn.go index 743172678bada..a7c2ab215125e 100644 --- a/tsc/internal/ipc/conn.go +++ b/tsc/pkg/ipc/conn.go @@ -4,7 +4,7 @@ import ( "context" "errors" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) var ( diff --git a/tsc/internal/ipc/conn_async.go b/tsc/pkg/ipc/conn_async.go similarity index 98% rename from tsc/internal/ipc/conn_async.go rename to tsc/pkg/ipc/conn_async.go index 013ea57f1e2c4..3d22f954c0a99 100644 --- a/tsc/internal/ipc/conn_async.go +++ b/tsc/pkg/ipc/conn_async.go @@ -10,8 +10,8 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // AsyncConn manages bidirectional JSON-RPC communication with async request handling. diff --git a/tsc/internal/ipc/conn_async_test.go b/tsc/pkg/ipc/conn_async_test.go similarity index 98% rename from tsc/internal/ipc/conn_async_test.go rename to tsc/pkg/ipc/conn_async_test.go index 062a7d59f97c4..bec00d7d436e4 100644 --- a/tsc/internal/ipc/conn_async_test.go +++ b/tsc/pkg/ipc/conn_async_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ipc/conn_sync.go b/tsc/pkg/ipc/conn_sync.go similarity index 98% rename from tsc/internal/ipc/conn_sync.go rename to tsc/pkg/ipc/conn_sync.go index cc3e001e7ef51..b8757544294b4 100644 --- a/tsc/internal/ipc/conn_sync.go +++ b/tsc/pkg/ipc/conn_sync.go @@ -9,8 +9,8 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // SyncConn manages bidirectional communication with synchronous request handling. diff --git a/tsc/internal/ipc/conn_sync_test.go b/tsc/pkg/ipc/conn_sync_test.go similarity index 92% rename from tsc/internal/ipc/conn_sync_test.go rename to tsc/pkg/ipc/conn_sync_test.go index cc10ce1523861..b1604ee309cf8 100644 --- a/tsc/internal/ipc/conn_sync_test.go +++ b/tsc/pkg/ipc/conn_sync_test.go @@ -6,9 +6,9 @@ import ( "io" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ipc/protocol.go b/tsc/pkg/ipc/protocol.go similarity index 92% rename from tsc/internal/ipc/protocol.go rename to tsc/pkg/ipc/protocol.go index 56fcd1abc32a9..423d46cd85135 100644 --- a/tsc/internal/ipc/protocol.go +++ b/tsc/pkg/ipc/protocol.go @@ -1,7 +1,7 @@ package ipc import ( - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // Message is an alias for jsonrpc.Message for convenience. diff --git a/tsc/internal/ipc/protocol_jsonrpc.go b/tsc/pkg/ipc/protocol_jsonrpc.go similarity index 94% rename from tsc/internal/ipc/protocol_jsonrpc.go rename to tsc/pkg/ipc/protocol_jsonrpc.go index 9367fa2543d3f..4552c1a981d1a 100644 --- a/tsc/internal/ipc/protocol_jsonrpc.go +++ b/tsc/pkg/ipc/protocol_jsonrpc.go @@ -3,8 +3,8 @@ package ipc import ( "io" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // JSONRPCProtocol implements the Protocol interface using JSON-RPC 2.0 diff --git a/tsc/internal/ipc/timing.go b/tsc/pkg/ipc/timing.go similarity index 100% rename from tsc/internal/ipc/timing.go rename to tsc/pkg/ipc/timing.go diff --git a/tsc/internal/ipc/timing_test.go b/tsc/pkg/ipc/timing_test.go similarity index 100% rename from tsc/internal/ipc/timing_test.go rename to tsc/pkg/ipc/timing_test.go diff --git a/tsc/internal/ipc/transport.go b/tsc/pkg/ipc/transport.go similarity index 100% rename from tsc/internal/ipc/transport.go rename to tsc/pkg/ipc/transport.go diff --git a/tsc/internal/ipc/transport_unix.go b/tsc/pkg/ipc/transport_unix.go similarity index 100% rename from tsc/internal/ipc/transport_unix.go rename to tsc/pkg/ipc/transport_unix.go diff --git a/tsc/internal/ipc/transport_windows.go b/tsc/pkg/ipc/transport_windows.go similarity index 100% rename from tsc/internal/ipc/transport_windows.go rename to tsc/pkg/ipc/transport_windows.go diff --git a/tsc/internal/jsnum/jsnum.go b/tsc/pkg/jsnum/jsnum.go similarity index 100% rename from tsc/internal/jsnum/jsnum.go rename to tsc/pkg/jsnum/jsnum.go diff --git a/tsc/internal/jsnum/jsnum_test.go b/tsc/pkg/jsnum/jsnum_test.go similarity index 99% rename from tsc/internal/jsnum/jsnum_test.go rename to tsc/pkg/jsnum/jsnum_test.go index 0c837a8a5abf6..afcf1f885d191 100644 --- a/tsc/internal/jsnum/jsnum_test.go +++ b/tsc/pkg/jsnum/jsnum_test.go @@ -7,8 +7,8 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/testutil/jstest" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/testutil/jstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/jsnum/pseudobigint.go b/tsc/pkg/jsnum/pseudobigint.go similarity index 100% rename from tsc/internal/jsnum/pseudobigint.go rename to tsc/pkg/jsnum/pseudobigint.go diff --git a/tsc/internal/jsnum/pseudobigint_test.go b/tsc/pkg/jsnum/pseudobigint_test.go similarity index 100% rename from tsc/internal/jsnum/pseudobigint_test.go rename to tsc/pkg/jsnum/pseudobigint_test.go diff --git a/tsc/internal/jsnum/ryu_test.go b/tsc/pkg/jsnum/ryu_test.go similarity index 100% rename from tsc/internal/jsnum/ryu_test.go rename to tsc/pkg/jsnum/ryu_test.go diff --git a/tsc/internal/jsnum/string.go b/tsc/pkg/jsnum/string.go similarity index 98% rename from tsc/internal/jsnum/string.go rename to tsc/pkg/jsnum/string.go index 639dd7f59380a..c687a803e14c9 100644 --- a/tsc/internal/jsnum/string.go +++ b/tsc/pkg/jsnum/string.go @@ -9,8 +9,8 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) // https://tc39.es/ecma262/2024/multipage/ecmascript-data-types-and-values.html#sec-numeric-types-number-tostring diff --git a/tsc/internal/jsnum/string_test.go b/tsc/pkg/jsnum/string_test.go similarity index 98% rename from tsc/internal/jsnum/string_test.go rename to tsc/pkg/jsnum/string_test.go index 8b29a92783608..2c17ebba61f47 100644 --- a/tsc/internal/jsnum/string_test.go +++ b/tsc/pkg/jsnum/string_test.go @@ -9,8 +9,8 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/testutil/jstest" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/testutil/jstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/json/json.go b/tsc/pkg/json/json.go similarity index 100% rename from tsc/internal/json/json.go rename to tsc/pkg/json/json.go diff --git a/tsc/internal/jsonrpc/baseproto.go b/tsc/pkg/jsonrpc/baseproto.go similarity index 100% rename from tsc/internal/jsonrpc/baseproto.go rename to tsc/pkg/jsonrpc/baseproto.go diff --git a/tsc/internal/jsonrpc/jsonrpc.go b/tsc/pkg/jsonrpc/jsonrpc.go similarity index 98% rename from tsc/internal/jsonrpc/jsonrpc.go rename to tsc/pkg/jsonrpc/jsonrpc.go index 24438ccac5cc9..1489604c824b5 100644 --- a/tsc/internal/jsonrpc/jsonrpc.go +++ b/tsc/pkg/jsonrpc/jsonrpc.go @@ -7,7 +7,7 @@ import ( "fmt" "strconv" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) // JSONRPCVersion represents the JSON-RPC version field, always "2.0". diff --git a/tsc/internal/locale/lcl/chs/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/chs/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/chs/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/chs/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/cht/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/cht/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/cht/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/cht/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/csy/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/csy/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/csy/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/csy/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/deu/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/deu/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/deu/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/deu/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/esn/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/esn/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/esn/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/esn/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/fra/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/fra/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/fra/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/fra/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/ita/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/ita/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/ita/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/ita/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/jpn/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/jpn/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/jpn/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/jpn/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/kor/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/kor/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/kor/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/kor/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/plk/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/plk/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/plk/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/plk/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/ptb/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/ptb/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/ptb/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/ptb/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/rus/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/rus/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/rus/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/rus/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/lcl/trk/diagnosticMessages/diagnosticMessages.generated.json.lcl b/tsc/pkg/locale/lcl/trk/diagnosticMessages/diagnosticMessages.generated.json.lcl similarity index 100% rename from tsc/internal/locale/lcl/trk/diagnosticMessages/diagnosticMessages.generated.json.lcl rename to tsc/pkg/locale/lcl/trk/diagnosticMessages/diagnosticMessages.generated.json.lcl diff --git a/tsc/internal/locale/locale.go b/tsc/pkg/locale/locale.go similarity index 100% rename from tsc/internal/locale/locale.go rename to tsc/pkg/locale/locale.go diff --git a/tsc/internal/ls/api.go b/tsc/pkg/ls/api.go similarity index 88% rename from tsc/internal/ls/api.go rename to tsc/pkg/ls/api.go index f0a0ce7c156c0..8901946f21330 100644 --- a/tsc/internal/ls/api.go +++ b/tsc/pkg/ls/api.go @@ -5,9 +5,9 @@ import ( "errors" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" ) var ( diff --git a/tsc/internal/ls/autoimport/aliasresolver.go b/tsc/pkg/ls/autoimport/aliasresolver.go similarity index 93% rename from tsc/internal/ls/autoimport/aliasresolver.go rename to tsc/pkg/ls/autoimport/aliasresolver.go index 52955e92c3d09..7d59df4efe22e 100644 --- a/tsc/internal/ls/autoimport/aliasresolver.go +++ b/tsc/pkg/ls/autoimport/aliasresolver.go @@ -1,16 +1,16 @@ package autoimport import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type pathAndFileName struct { diff --git a/tsc/internal/ls/autoimport/aliasresolver_crash_test.go b/tsc/pkg/ls/autoimport/aliasresolver_crash_test.go similarity index 76% rename from tsc/internal/ls/autoimport/aliasresolver_crash_test.go rename to tsc/pkg/ls/autoimport/aliasresolver_crash_test.go index 72206dc357336..6f9aa37c35669 100644 --- a/tsc/internal/ls/autoimport/aliasresolver_crash_test.go +++ b/tsc/pkg/ls/autoimport/aliasresolver_crash_test.go @@ -4,17 +4,17 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) type fakeCloneHost struct { diff --git a/tsc/internal/ls/autoimport/export.go b/tsc/pkg/ls/autoimport/export.go similarity index 93% rename from tsc/internal/ls/autoimport/export.go rename to tsc/pkg/ls/autoimport/export.go index 468f5ae35776d..e6c48c276b91a 100644 --- a/tsc/internal/ls/autoimport/export.go +++ b/tsc/pkg/ls/autoimport/export.go @@ -1,11 +1,11 @@ package autoimport import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) //go:generate go tool golang.org/x/tools/cmd/stringer -type=ExportSyntax -output=export_stringer_generated.go diff --git a/tsc/internal/ls/autoimport/export_stringer_generated.go b/tsc/pkg/ls/autoimport/export_stringer_generated.go similarity index 100% rename from tsc/internal/ls/autoimport/export_stringer_generated.go rename to tsc/pkg/ls/autoimport/export_stringer_generated.go diff --git a/tsc/internal/ls/autoimport/extract.go b/tsc/pkg/ls/autoimport/extract.go similarity index 97% rename from tsc/internal/ls/autoimport/extract.go rename to tsc/pkg/ls/autoimport/extract.go index 31ba6a2c7be07..3d88ff2ae1707 100644 --- a/tsc/internal/ls/autoimport/extract.go +++ b/tsc/pkg/ls/autoimport/extract.go @@ -4,13 +4,13 @@ import ( "slices" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type symbolExtractor struct { diff --git a/tsc/internal/ls/autoimport/fix.go b/tsc/pkg/ls/autoimport/fix.go similarity index 98% rename from tsc/internal/ls/autoimport/fix.go rename to tsc/pkg/ls/autoimport/fix.go index f33565d891e1d..19064bc793dcb 100644 --- a/tsc/internal/ls/autoimport/fix.go +++ b/tsc/pkg/ls/autoimport/fix.go @@ -8,23 +8,23 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type newImportBinding struct { diff --git a/tsc/internal/ls/autoimport/import_adder.go b/tsc/pkg/ls/autoimport/import_adder.go similarity index 96% rename from tsc/internal/ls/autoimport/import_adder.go rename to tsc/pkg/ls/autoimport/import_adder.go index 2c0d88b72f815..96665976d7651 100644 --- a/tsc/internal/ls/autoimport/import_adder.go +++ b/tsc/pkg/ls/autoimport/import_adder.go @@ -6,19 +6,19 @@ import ( "maps" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/locale" - - // "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/locale" + + // "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" ) type ImportAdder interface { diff --git a/tsc/internal/ls/autoimport/index.go b/tsc/pkg/ls/autoimport/index.go similarity index 98% rename from tsc/internal/ls/autoimport/index.go rename to tsc/pkg/ls/autoimport/index.go index 5afb37d927fb0..6e23af00ad7a7 100644 --- a/tsc/internal/ls/autoimport/index.go +++ b/tsc/pkg/ls/autoimport/index.go @@ -5,7 +5,7 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) // Named is a constraint for types that can provide their name. diff --git a/tsc/internal/ls/autoimport/index_test.go b/tsc/pkg/ls/autoimport/index_test.go similarity index 100% rename from tsc/internal/ls/autoimport/index_test.go rename to tsc/pkg/ls/autoimport/index_test.go diff --git a/tsc/internal/ls/autoimport/registry.go b/tsc/pkg/ls/autoimport/registry.go similarity index 98% rename from tsc/internal/ls/autoimport/registry.go rename to tsc/pkg/ls/autoimport/registry.go index 2106e1b44310a..ea5a615a4971f 100644 --- a/tsc/internal/ls/autoimport/registry.go +++ b/tsc/pkg/ls/autoimport/registry.go @@ -9,23 +9,23 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) var knownRecursiveSearchPackages = collections.NewSetFromItems( diff --git a/tsc/internal/ls/autoimport/registry_test.go b/tsc/pkg/ls/autoimport/registry_test.go similarity index 98% rename from tsc/internal/ls/autoimport/registry_test.go rename to tsc/pkg/ls/autoimport/registry_test.go index a9b5b1349fd48..4ce26c75b2b0e 100644 --- a/tsc/internal/ls/autoimport/registry_test.go +++ b/tsc/pkg/ls/autoimport/registry_test.go @@ -5,20 +5,20 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/autoimporttestutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/autoimporttestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) @@ -1016,7 +1016,7 @@ func TestHiddenDirectoriesInNodeModules(t *testing.T) { // a name/version, so PackageId is empty // 6. collectPackageNames falls through to GetPackageNameFromDirectory, which // extracts ".yarn-store" from the realpath after /node_modules/ - // See https://github.com/microsoft/TypeScript/tsc/issues/2780 + // See https://github.com/frida/TypeScript/tsc/issues/2780 t.Parallel() projectRoot := "/home/src/fuse-project" storeDir := projectRoot + "/node_modules/.yarn-store" diff --git a/tsc/internal/ls/autoimport/specifiers.go b/tsc/pkg/ls/autoimport/specifiers.go similarity index 97% rename from tsc/internal/ls/autoimport/specifiers.go rename to tsc/pkg/ls/autoimport/specifiers.go index 401aa1ba2a1cb..a12ae76ba76b2 100644 --- a/tsc/internal/ls/autoimport/specifiers.go +++ b/tsc/pkg/ls/autoimport/specifiers.go @@ -3,7 +3,7 @@ package autoimport import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" ) func (v *View) GetModuleSpecifier( diff --git a/tsc/internal/ls/autoimport/testmain_test.go b/tsc/pkg/ls/autoimport/testmain_test.go similarity index 54% rename from tsc/internal/ls/autoimport/testmain_test.go rename to tsc/pkg/ls/autoimport/testmain_test.go index bfe43011e3a42..a660572ba9064 100644 --- a/tsc/internal/ls/autoimport/testmain_test.go +++ b/tsc/pkg/ls/autoimport/testmain_test.go @@ -3,8 +3,8 @@ package autoimport_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/ls/autoimport/util.go b/tsc/pkg/ls/autoimport/util.go similarity index 94% rename from tsc/internal/ls/autoimport/util.go rename to tsc/pkg/ls/autoimport/util.go index d1768a9c343c4..6151d6a1fcd3f 100644 --- a/tsc/internal/ls/autoimport/util.go +++ b/tsc/pkg/ls/autoimport/util.go @@ -8,17 +8,17 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/wrapvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/wrapvfs" ) func tryGetModuleIDAndFileNameOfModuleSymbol(symbol *ast.Symbol) (ModuleID, string, bool) { diff --git a/tsc/internal/ls/autoimport/util_test.go b/tsc/pkg/ls/autoimport/util_test.go similarity index 99% rename from tsc/internal/ls/autoimport/util_test.go rename to tsc/pkg/ls/autoimport/util_test.go index 5b9ed7bc5cf9d..fb9af79b491f7 100644 --- a/tsc/internal/ls/autoimport/util_test.go +++ b/tsc/pkg/ls/autoimport/util_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/autoimport/view.go b/tsc/pkg/ls/autoimport/view.go similarity index 93% rename from tsc/internal/ls/autoimport/view.go rename to tsc/pkg/ls/autoimport/view.go index 0e8704dd0b9e5..8084de2030e9c 100644 --- a/tsc/internal/ls/autoimport/view.go +++ b/tsc/pkg/ls/autoimport/view.go @@ -6,16 +6,16 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type View struct { diff --git a/tsc/internal/ls/autoinsert.go b/tsc/pkg/ls/autoinsert.go similarity index 90% rename from tsc/internal/ls/autoinsert.go rename to tsc/pkg/ls/autoinsert.go index 862202d154391..bb9d9d7617bf8 100644 --- a/tsc/internal/ls/autoinsert.go +++ b/tsc/pkg/ls/autoinsert.go @@ -3,12 +3,12 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func (l *LanguageService) ProvideOnAutoInsert(ctx context.Context, params *lsproto.VSOnAutoInsertParams) (lsproto.VSOnAutoInsertResponse, error) { diff --git a/tsc/internal/ls/callhierarchy.go b/tsc/pkg/ls/callhierarchy.go similarity index 98% rename from tsc/internal/ls/callhierarchy.go rename to tsc/pkg/ls/callhierarchy.go index cea1d95ee8301..3e0e316e47656 100644 --- a/tsc/internal/ls/callhierarchy.go +++ b/tsc/pkg/ls/callhierarchy.go @@ -6,18 +6,18 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type CallHierarchyDeclaration = *ast.Node diff --git a/tsc/internal/ls/change/delete.go b/tsc/pkg/ls/change/delete.go similarity index 96% rename from tsc/internal/ls/change/delete.go rename to tsc/pkg/ls/change/delete.go index 8156e36e4d0be..b81abed693c52 100644 --- a/tsc/internal/ls/change/delete.go +++ b/tsc/pkg/ls/change/delete.go @@ -3,13 +3,13 @@ package change import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) // deleteDeclaration deletes a node with smart handling for different node types. diff --git a/tsc/internal/ls/change/tracker.go b/tsc/pkg/ls/change/tracker.go similarity index 97% rename from tsc/internal/ls/change/tracker.go rename to tsc/pkg/ls/change/tracker.go index df7be993cfa55..fe620f60ad818 100644 --- a/tsc/internal/ls/change/tracker.go +++ b/tsc/pkg/ls/change/tracker.go @@ -4,18 +4,18 @@ import ( "context" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type NodeOptions struct { diff --git a/tsc/internal/ls/change/trackerimpl.go b/tsc/pkg/ls/change/trackerimpl.go similarity index 97% rename from tsc/internal/ls/change/trackerimpl.go rename to tsc/pkg/ls/change/trackerimpl.go index 56ba9a369d6e8..e47169896ecde 100644 --- a/tsc/internal/ls/change/trackerimpl.go +++ b/tsc/pkg/ls/change/trackerimpl.go @@ -6,16 +6,16 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func (t *Tracker) getTextChangesFromChanges() map[string][]*lsproto.TextEdit { diff --git a/tsc/internal/ls/change/trackerimpl_test.go b/tsc/pkg/ls/change/trackerimpl_test.go similarity index 91% rename from tsc/internal/ls/change/trackerimpl_test.go rename to tsc/pkg/ls/change/trackerimpl_test.go index 21303eaf46150..07b2113c87b66 100644 --- a/tsc/internal/ls/change/trackerimpl_test.go +++ b/tsc/pkg/ls/change/trackerimpl_test.go @@ -3,7 +3,7 @@ package change import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) func TestTextEditsConflictAtSameInsertionPointAcrossProjections(t *testing.T) { diff --git a/tsc/internal/ls/codeactions.go b/tsc/pkg/ls/codeactions.go similarity index 95% rename from tsc/internal/ls/codeactions.go rename to tsc/pkg/ls/codeactions.go index 6874d861e9a83..c17a049ad7b08 100644 --- a/tsc/internal/ls/codeactions.go +++ b/tsc/pkg/ls/codeactions.go @@ -6,15 +6,15 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // CodeFixProvider represents a provider for a specific type of code fix diff --git a/tsc/internal/ls/codeactions_fixclassincorrectlyimplementsinterface.go b/tsc/pkg/ls/codeactions_fixclassincorrectlyimplementsinterface.go similarity index 93% rename from tsc/internal/ls/codeactions_fixclassincorrectlyimplementsinterface.go rename to tsc/pkg/ls/codeactions_fixclassincorrectlyimplementsinterface.go index 12b1a031dcf32..367be2615ce5d 100644 --- a/tsc/internal/ls/codeactions_fixclassincorrectlyimplementsinterface.go +++ b/tsc/pkg/ls/codeactions_fixclassincorrectlyimplementsinterface.go @@ -3,17 +3,17 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) const fixClassIncorrectlyImplementsInterfaceFixID = "fixClassIncorrectlyImplementsInterface" diff --git a/tsc/internal/ls/codeactions_fixmissingtypeannotation.go b/tsc/pkg/ls/codeactions_fixmissingtypeannotation.go similarity index 98% rename from tsc/internal/ls/codeactions_fixmissingtypeannotation.go rename to tsc/pkg/ls/codeactions_fixmissingtypeannotation.go index 50bea6bd45d9a..54b23b0471dfa 100644 --- a/tsc/internal/ls/codeactions_fixmissingtypeannotation.go +++ b/tsc/pkg/ls/codeactions_fixmissingtypeannotation.go @@ -4,18 +4,18 @@ import ( "context" "strconv" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) var isolatedDeclarationsFixErrorCodes = []int32{ diff --git a/tsc/internal/ls/codeactions_importfixes.go b/tsc/pkg/ls/codeactions_importfixes.go similarity index 96% rename from tsc/internal/ls/codeactions_importfixes.go rename to tsc/pkg/ls/codeactions_importfixes.go index fd6a2881cd580..30d39ef79454a 100644 --- a/tsc/internal/ls/codeactions_importfixes.go +++ b/tsc/pkg/ls/codeactions_importfixes.go @@ -5,17 +5,17 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var importFixErrorCodes = []int32{ diff --git a/tsc/internal/ls/codeactions_missingmemberfixer.go b/tsc/pkg/ls/codeactions_missingmemberfixer.go similarity index 97% rename from tsc/internal/ls/codeactions_missingmemberfixer.go rename to tsc/pkg/ls/codeactions_missingmemberfixer.go index 8368acd005bed..9eef9d2d76cd2 100644 --- a/tsc/internal/ls/codeactions_missingmemberfixer.go +++ b/tsc/pkg/ls/codeactions_missingmemberfixer.go @@ -3,16 +3,16 @@ package ls import ( "strconv" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" ) type preserveOptionalFlags int diff --git a/tsc/internal/ls/codelens.go b/tsc/pkg/ls/codelens.go similarity index 93% rename from tsc/internal/ls/codelens.go rename to tsc/pkg/ls/codelens.go index 8142f1cad24b9..8a8618038d94b 100644 --- a/tsc/internal/ls/codelens.go +++ b/tsc/pkg/ls/codelens.go @@ -4,15 +4,15 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func (l *LanguageService) ProvideCodeLenses(ctx context.Context, documentURI lsproto.DocumentUri) (lsproto.CodeLensResponse, error) { diff --git a/tsc/internal/ls/completions.go b/tsc/pkg/ls/completions.go similarity index 99% rename from tsc/internal/ls/completions.go rename to tsc/pkg/ls/completions.go index 1606b5e13f05a..24907210cff4f 100644 --- a/tsc/internal/ls/completions.go +++ b/tsc/pkg/ls/completions.go @@ -10,27 +10,27 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var ErrNeedsAutoImports = errors.New("completion list needs auto imports") diff --git a/tsc/internal/ls/constants.go b/tsc/pkg/ls/constants.go similarity index 100% rename from tsc/internal/ls/constants.go rename to tsc/pkg/ls/constants.go diff --git a/tsc/internal/ls/crossproject.go b/tsc/pkg/ls/crossproject.go similarity index 97% rename from tsc/internal/ls/crossproject.go rename to tsc/pkg/ls/crossproject.go index 6dc9b8882640a..570885f07ac3e 100644 --- a/tsc/internal/ls/crossproject.go +++ b/tsc/pkg/ls/crossproject.go @@ -7,11 +7,11 @@ import ( "runtime/debug" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type Project interface { diff --git a/tsc/internal/ls/definition.go b/tsc/pkg/ls/definition.go similarity index 97% rename from tsc/internal/ls/definition.go rename to tsc/pkg/ls/definition.go index bb86c998257af..d6363f501d5a5 100644 --- a/tsc/internal/ls/definition.go +++ b/tsc/pkg/ls/definition.go @@ -4,16 +4,16 @@ import ( "context" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func (l *LanguageService) ProvideDefinition( diff --git a/tsc/internal/ls/diagnostics.go b/tsc/pkg/ls/diagnostics.go similarity index 91% rename from tsc/internal/ls/diagnostics.go rename to tsc/pkg/ls/diagnostics.go index 3638efdac813a..fae8dc990a30b 100644 --- a/tsc/internal/ls/diagnostics.go +++ b/tsc/pkg/ls/diagnostics.go @@ -3,14 +3,14 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // getAllDiagnostics collects all diagnostics for a file: syntactic, semantic, diff --git a/tsc/internal/ls/displaypartswriter.go b/tsc/pkg/ls/displaypartswriter.go similarity index 95% rename from tsc/internal/ls/displaypartswriter.go rename to tsc/pkg/ls/displaypartswriter.go index 170e9d5c22e0c..b531d6a97a284 100644 --- a/tsc/internal/ls/displaypartswriter.go +++ b/tsc/pkg/ls/displaypartswriter.go @@ -4,11 +4,11 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) var _ printer.EmitTextWriter = &displayPartsWriter{} diff --git a/tsc/internal/ls/documenthighlights.go b/tsc/pkg/ls/documenthighlights.go similarity index 97% rename from tsc/internal/ls/documenthighlights.go rename to tsc/pkg/ls/documenthighlights.go index e3e8be49d1402..146e069f1f677 100644 --- a/tsc/internal/ls/documenthighlights.go +++ b/tsc/pkg/ls/documenthighlights.go @@ -3,17 +3,17 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) func (l *LanguageService) ProvideDocumentHighlights(ctx context.Context, documentUri lsproto.DocumentUri, documentPosition lsproto.Position) (lsproto.DocumentHighlightResponse, error) { diff --git a/tsc/internal/ls/file_rename.go b/tsc/pkg/ls/file_rename.go similarity index 95% rename from tsc/internal/ls/file_rename.go rename to tsc/pkg/ls/file_rename.go index 1c43709171099..53a897e8893b4 100644 --- a/tsc/internal/ls/file_rename.go +++ b/tsc/pkg/ls/file_rename.go @@ -5,18 +5,18 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type pathUpdater func(path string) (string, bool) diff --git a/tsc/internal/ls/file_rename_test.go b/tsc/pkg/ls/file_rename_test.go similarity index 90% rename from tsc/internal/ls/file_rename_test.go rename to tsc/pkg/ls/file_rename_test.go index 4ff1a7bb633dd..c153e39d223a6 100644 --- a/tsc/internal/ls/file_rename_test.go +++ b/tsc/pkg/ls/file_rename_test.go @@ -3,10 +3,10 @@ package ls import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/findallreferences.go b/tsc/pkg/ls/findallreferences.go similarity index 99% rename from tsc/internal/ls/findallreferences.go rename to tsc/pkg/ls/findallreferences.go index e03959c4c80bc..b9f8f0bc42768 100644 --- a/tsc/internal/ls/findallreferences.go +++ b/tsc/pkg/ls/findallreferences.go @@ -8,21 +8,21 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // === types for settings === diff --git a/tsc/internal/ls/findallreferences_test.go b/tsc/pkg/ls/findallreferences_test.go similarity index 91% rename from tsc/internal/ls/findallreferences_test.go rename to tsc/pkg/ls/findallreferences_test.go index e507851be518b..9f06a5b0225b2 100644 --- a/tsc/internal/ls/findallreferences_test.go +++ b/tsc/pkg/ls/findallreferences_test.go @@ -6,13 +6,13 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/folding.go b/tsc/pkg/ls/folding.go similarity index 97% rename from tsc/internal/ls/folding.go rename to tsc/pkg/ls/folding.go index 4c97a768797f1..f8925a833d4c9 100644 --- a/tsc/internal/ls/folding.go +++ b/tsc/pkg/ls/folding.go @@ -7,16 +7,16 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func (l *LanguageService) ProvideFoldingRange(ctx context.Context, documentURI lsproto.DocumentUri) (lsproto.FoldingRangeResponse, error) { diff --git a/tsc/internal/ls/format.go b/tsc/pkg/ls/format.go similarity index 95% rename from tsc/internal/ls/format.go rename to tsc/pkg/ls/format.go index b9e6caf63e34b..2987bd294cda8 100644 --- a/tsc/internal/ls/format.go +++ b/tsc/pkg/ls/format.go @@ -6,15 +6,15 @@ import ( "iter" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) func (l *LanguageService) toLSProtoTextEdits(file *ast.SourceFile, changes []core.TextChange) []*lsproto.TextEdit { diff --git a/tsc/internal/ls/format_test.go b/tsc/pkg/ls/format_test.go similarity index 95% rename from tsc/internal/ls/format_test.go rename to tsc/pkg/ls/format_test.go index f0eec1e2a2cae..9d84948149696 100644 --- a/tsc/internal/ls/format_test.go +++ b/tsc/pkg/ls/format_test.go @@ -5,10 +5,10 @@ import ( "testing" "github.com/google/go-cmp/cmp/cmpopts" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/parser" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/host.go b/tsc/pkg/ls/host.go similarity index 74% rename from tsc/internal/ls/host.go rename to tsc/pkg/ls/host.go index 172b139cf304e..16f510bcb082c 100644 --- a/tsc/internal/ls/host.go +++ b/tsc/pkg/ls/host.go @@ -1,10 +1,10 @@ package ls import ( - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" ) type Host interface { diff --git a/tsc/internal/ls/hover.go b/tsc/pkg/ls/hover.go similarity index 98% rename from tsc/internal/ls/hover.go rename to tsc/pkg/ls/hover.go index 7a97db6a9fb92..accd545495fad 100644 --- a/tsc/internal/ls/hover.go +++ b/tsc/pkg/ls/hover.go @@ -6,18 +6,18 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) const ( diff --git a/tsc/internal/ls/hovericon.go b/tsc/pkg/ls/hovericon.go similarity index 98% rename from tsc/internal/ls/hovericon.go rename to tsc/pkg/ls/hovericon.go index 72dca33d3786e..5ca8fb02e25b6 100644 --- a/tsc/internal/ls/hovericon.go +++ b/tsc/pkg/ls/hovericon.go @@ -1,8 +1,8 @@ package ls import ( - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) // vsImageCatalogGuid is the GUID of the shared VS image catalog (see diff --git a/tsc/internal/ls/importTracker.go b/tsc/pkg/ls/importTracker.go similarity index 98% rename from tsc/internal/ls/importTracker.go rename to tsc/pkg/ls/importTracker.go index 6e1f79686c422..fd8709d95a76e 100644 --- a/tsc/internal/ls/importTracker.go +++ b/tsc/pkg/ls/importTracker.go @@ -4,12 +4,12 @@ import ( "context" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" ) type ImpExpKind int32 diff --git a/tsc/internal/ls/inlay_hints.go b/tsc/pkg/ls/inlay_hints.go similarity index 97% rename from tsc/internal/ls/inlay_hints.go rename to tsc/pkg/ls/inlay_hints.go index d99ff361a39c3..d5b2a93f12d68 100644 --- a/tsc/internal/ls/inlay_hints.go +++ b/tsc/pkg/ls/inlay_hints.go @@ -6,20 +6,20 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/evaluator" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func (l *LanguageService) ProvideInlayHint( diff --git a/tsc/internal/ls/jsdoc.go b/tsc/pkg/ls/jsdoc.go similarity index 96% rename from tsc/internal/ls/jsdoc.go rename to tsc/pkg/ls/jsdoc.go index 3e7aadf363999..0de4dabcbc5ec 100644 --- a/tsc/internal/ls/jsdoc.go +++ b/tsc/pkg/ls/jsdoc.go @@ -4,13 +4,13 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // JSDocTagInfo mirrors Strada's `JSDocTagInfo`, but renders the tag's text as a diff --git a/tsc/internal/ls/jsdoc_snippet.go b/tsc/pkg/ls/jsdoc_snippet.go similarity index 97% rename from tsc/internal/ls/jsdoc_snippet.go rename to tsc/pkg/ls/jsdoc_snippet.go index ec042fc59c804..741e81079b509 100644 --- a/tsc/internal/ls/jsdoc_snippet.go +++ b/tsc/pkg/ls/jsdoc_snippet.go @@ -5,15 +5,15 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/format" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/format" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type docCommentTemplate struct { diff --git a/tsc/internal/ls/languageservice.go b/tsc/pkg/ls/languageservice.go similarity index 88% rename from tsc/internal/ls/languageservice.go rename to tsc/pkg/ls/languageservice.go index d7126292b6be2..9cc53b10dbbc7 100644 --- a/tsc/internal/ls/languageservice.go +++ b/tsc/pkg/ls/languageservice.go @@ -1,15 +1,15 @@ package ls import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) type LanguageService struct { diff --git a/tsc/internal/ls/linkedediting.go b/tsc/pkg/ls/linkedediting.go similarity index 91% rename from tsc/internal/ls/linkedediting.go rename to tsc/pkg/ls/linkedediting.go index 8652e10c336e2..3cc53fa026ee1 100644 --- a/tsc/internal/ls/linkedediting.go +++ b/tsc/pkg/ls/linkedediting.go @@ -3,14 +3,14 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // allow the client to match more than valid tag names. This allows linked editing when typing is in progress or tag name is incomplete diff --git a/tsc/internal/ls/lsconv/converters.go b/tsc/pkg/ls/lsconv/converters.go similarity index 97% rename from tsc/internal/ls/lsconv/converters.go rename to tsc/pkg/ls/lsconv/converters.go index 23eb9036206ee..e3579cff416e4 100644 --- a/tsc/internal/ls/lsconv/converters.go +++ b/tsc/pkg/ls/lsconv/converters.go @@ -9,17 +9,17 @@ import ( "unicode/utf16" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type Converters struct { diff --git a/tsc/internal/ls/lsconv/converters_test.go b/tsc/pkg/ls/lsconv/converters_test.go similarity index 97% rename from tsc/internal/ls/lsconv/converters_test.go rename to tsc/pkg/ls/lsconv/converters_test.go index cccdd24b597ae..b943961a132e9 100644 --- a/tsc/internal/ls/lsconv/converters_test.go +++ b/tsc/pkg/ls/lsconv/converters_test.go @@ -7,13 +7,13 @@ import ( "os/exec" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/spanmap" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/lsconv/linemap.go b/tsc/pkg/ls/lsconv/linemap.go similarity index 97% rename from tsc/internal/ls/lsconv/linemap.go rename to tsc/pkg/ls/lsconv/linemap.go index 941f9674d0118..889faef11a2c6 100644 --- a/tsc/internal/ls/lsconv/linemap.go +++ b/tsc/pkg/ls/lsconv/linemap.go @@ -6,7 +6,7 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) type LSPLineStarts []core.TextPos diff --git a/tsc/internal/ls/lsutil/asi.go b/tsc/pkg/ls/lsutil/asi.go similarity index 95% rename from tsc/internal/ls/lsutil/asi.go rename to tsc/pkg/ls/lsutil/asi.go index e59901f9139c4..40b981990c823 100644 --- a/tsc/internal/ls/lsutil/asi.go +++ b/tsc/pkg/ls/lsutil/asi.go @@ -1,9 +1,9 @@ package lsutil import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func PositionIsASICandidate(pos int, context *ast.Node, file *ast.SourceFile) bool { diff --git a/tsc/internal/ls/lsutil/children.go b/tsc/pkg/ls/lsutil/children.go similarity index 94% rename from tsc/internal/ls/lsutil/children.go rename to tsc/pkg/ls/lsutil/children.go index 0a5ecf2a991e0..9b3b43adafb4a 100644 --- a/tsc/internal/ls/lsutil/children.go +++ b/tsc/pkg/ls/lsutil/children.go @@ -1,10 +1,10 @@ package lsutil import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) // Replaces last(node.getChildren(sourceFile)) diff --git a/tsc/internal/ls/lsutil/completednode.go b/tsc/pkg/ls/lsutil/completednode.go similarity index 96% rename from tsc/internal/ls/lsutil/completednode.go rename to tsc/pkg/ls/lsutil/completednode.go index e54bad67f449c..98b8a60dedbb4 100644 --- a/tsc/internal/ls/lsutil/completednode.go +++ b/tsc/pkg/ls/lsutil/completednode.go @@ -1,10 +1,10 @@ package lsutil import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) // PositionBelongsToNode returns true if the position belongs to the node. diff --git a/tsc/internal/ls/lsutil/formatcodeoptions.go b/tsc/pkg/ls/lsutil/formatcodeoptions.go similarity index 97% rename from tsc/internal/ls/lsutil/formatcodeoptions.go rename to tsc/pkg/ls/lsutil/formatcodeoptions.go index d63d3b489af41..1be85283d7693 100644 --- a/tsc/internal/ls/lsutil/formatcodeoptions.go +++ b/tsc/pkg/ls/lsutil/formatcodeoptions.go @@ -3,9 +3,9 @@ package lsutil import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" ) type IndentStyle int diff --git a/tsc/internal/ls/lsutil/organizeimports.go b/tsc/pkg/ls/lsutil/organizeimports.go similarity index 99% rename from tsc/internal/ls/lsutil/organizeimports.go rename to tsc/pkg/ls/lsutil/organizeimports.go index 655cd800c8f53..9607ed8d104db 100644 --- a/tsc/internal/ls/lsutil/organizeimports.go +++ b/tsc/pkg/ls/lsutil/organizeimports.go @@ -7,10 +7,10 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "golang.org/x/text/unicode/norm" ) diff --git a/tsc/internal/ls/lsutil/symbol_display.go b/tsc/pkg/ls/lsutil/symbol_display.go similarity index 98% rename from tsc/internal/ls/lsutil/symbol_display.go rename to tsc/pkg/ls/lsutil/symbol_display.go index 0f1fee4527494..955dd3607623f 100644 --- a/tsc/internal/ls/lsutil/symbol_display.go +++ b/tsc/pkg/ls/lsutil/symbol_display.go @@ -1,10 +1,10 @@ package lsutil import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" ) type ScriptElementKind int diff --git a/tsc/internal/ls/lsutil/userpreferences.go b/tsc/pkg/ls/lsutil/userpreferences.go similarity index 99% rename from tsc/internal/ls/lsutil/userpreferences.go rename to tsc/pkg/ls/lsutil/userpreferences.go index bf9273b7ad760..85a2b6bc5b7d8 100644 --- a/tsc/internal/ls/lsutil/userpreferences.go +++ b/tsc/pkg/ls/lsutil/userpreferences.go @@ -7,10 +7,10 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) func NewDefaultUserPreferences() UserPreferences { diff --git a/tsc/internal/ls/lsutil/userpreferences_test.go b/tsc/pkg/ls/lsutil/userpreferences_test.go similarity index 99% rename from tsc/internal/ls/lsutil/userpreferences_test.go rename to tsc/pkg/ls/lsutil/userpreferences_test.go index 26653cfbc9b97..017939acb69c2 100644 --- a/tsc/internal/ls/lsutil/userpreferences_test.go +++ b/tsc/pkg/ls/lsutil/userpreferences_test.go @@ -4,9 +4,9 @@ import ( "reflect" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/ls/lsutil/utilities.go b/tsc/pkg/ls/lsutil/utilities.go similarity index 93% rename from tsc/internal/ls/lsutil/utilities.go rename to tsc/pkg/ls/lsutil/utilities.go index 69c50f1cc9dd5..b8400478051b4 100644 --- a/tsc/internal/ls/lsutil/utilities.go +++ b/tsc/pkg/ls/lsutil/utilities.go @@ -4,12 +4,12 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func ProbablyUsesSemicolons(file *ast.SourceFile) bool { diff --git a/tsc/internal/ls/lsutil/utilities_test.go b/tsc/pkg/ls/lsutil/utilities_test.go similarity index 96% rename from tsc/internal/ls/lsutil/utilities_test.go rename to tsc/pkg/ls/lsutil/utilities_test.go index 93911eaf0a86d..2e41125a56b75 100644 --- a/tsc/internal/ls/lsutil/utilities_test.go +++ b/tsc/pkg/ls/lsutil/utilities_test.go @@ -3,9 +3,9 @@ package lsutil import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" ) func parseTS(t *testing.T, text string) *ast.SourceFile { diff --git a/tsc/internal/ls/organizeimports.go b/tsc/pkg/ls/organizeimports.go similarity index 98% rename from tsc/internal/ls/organizeimports.go rename to tsc/pkg/ls/organizeimports.go index cea586875facd..4b46485443c0d 100644 --- a/tsc/internal/ls/organizeimports.go +++ b/tsc/pkg/ls/organizeimports.go @@ -5,16 +5,16 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/change" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/change" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) // OrganizeImports organizes imports by: diff --git a/tsc/internal/ls/rename.go b/tsc/pkg/ls/rename.go similarity index 95% rename from tsc/internal/ls/rename.go rename to tsc/pkg/ls/rename.go index 2ddefa4810348..4cecd2dfa9b78 100644 --- a/tsc/internal/ls/rename.go +++ b/tsc/pkg/ls/rename.go @@ -5,19 +5,19 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // RenameInfo represents the result of a rename validation check. diff --git a/tsc/internal/ls/selectionranges.go b/tsc/pkg/ls/selectionranges.go similarity index 96% rename from tsc/internal/ls/selectionranges.go rename to tsc/pkg/ls/selectionranges.go index cc96a867ce5bd..c932beb3061d0 100644 --- a/tsc/internal/ls/selectionranges.go +++ b/tsc/pkg/ls/selectionranges.go @@ -3,13 +3,13 @@ package ls import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) const maxSelectionRangeDepth = 1000 diff --git a/tsc/internal/ls/selectionranges_test.go b/tsc/pkg/ls/selectionranges_test.go similarity index 82% rename from tsc/internal/ls/selectionranges_test.go rename to tsc/pkg/ls/selectionranges_test.go index e2508bb8f0c01..80a76093bcb68 100644 --- a/tsc/internal/ls/selectionranges_test.go +++ b/tsc/pkg/ls/selectionranges_test.go @@ -4,13 +4,13 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" ) func TestSelectionRangeDepthIsLimited(t *testing.T) { diff --git a/tsc/internal/ls/semantictokens.go b/tsc/pkg/ls/semantictokens.go similarity index 97% rename from tsc/internal/ls/semantictokens.go rename to tsc/pkg/ls/semantictokens.go index 6bdde51032475..0b9392bff48cd 100644 --- a/tsc/internal/ls/semantictokens.go +++ b/tsc/pkg/ls/semantictokens.go @@ -6,15 +6,15 @@ import ( "fmt" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // tokenTypes defines the order of token types for encoding diff --git a/tsc/internal/ls/signaturehelp.go b/tsc/pkg/ls/signaturehelp.go similarity index 98% rename from tsc/internal/ls/signaturehelp.go rename to tsc/pkg/ls/signaturehelp.go index 25495583a9612..a94a3f29ab36a 100644 --- a/tsc/internal/ls/signaturehelp.go +++ b/tsc/pkg/ls/signaturehelp.go @@ -5,18 +5,18 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) // SignatureHelpTriggerCharacters and SignatureHelpRetriggerCharacters are the characters that trigger and diff --git a/tsc/internal/ls/source_map.go b/tsc/pkg/ls/source_map.go similarity index 92% rename from tsc/internal/ls/source_map.go rename to tsc/pkg/ls/source_map.go index 21905f43d39e6..1f76c83c26464 100644 --- a/tsc/internal/ls/source_map.go +++ b/tsc/pkg/ls/source_map.go @@ -1,14 +1,14 @@ package ls import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // sourceFileRangeToLSPLocation maps a range from an arbitrary program SourceFile to an LSP location, diff --git a/tsc/internal/ls/sourcedefinition.go b/tsc/pkg/ls/sourcedefinition.go similarity index 96% rename from tsc/internal/ls/sourcedefinition.go rename to tsc/pkg/ls/sourcedefinition.go index ceb4e5d9fad64..80cd9808cfe73 100644 --- a/tsc/internal/ls/sourcedefinition.go +++ b/tsc/pkg/ls/sourcedefinition.go @@ -6,21 +6,21 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) func (l *LanguageService) ProvideSourceDefinition( diff --git a/tsc/internal/ls/string_completions.go b/tsc/pkg/ls/string_completions.go similarity index 98% rename from tsc/internal/ls/string_completions.go rename to tsc/pkg/ls/string_completions.go index 9f8dd24cdc16d..ee709613bc3a9 100644 --- a/tsc/internal/ls/string_completions.go +++ b/tsc/pkg/ls/string_completions.go @@ -9,22 +9,22 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type completionsFromTypes struct { diff --git a/tsc/internal/ls/string_completions_test.go b/tsc/pkg/ls/string_completions_test.go similarity index 100% rename from tsc/internal/ls/string_completions_test.go rename to tsc/pkg/ls/string_completions_test.go diff --git a/tsc/internal/ls/symbols.go b/tsc/pkg/ls/symbols.go similarity index 97% rename from tsc/internal/ls/symbols.go rename to tsc/pkg/ls/symbols.go index c9a6d4e27fa42..6dfd2df5b1fa0 100644 --- a/tsc/internal/ls/symbols.go +++ b/tsc/pkg/ls/symbols.go @@ -7,19 +7,19 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func (l *LanguageService) ProvideDocumentSymbols(ctx context.Context, documentURI lsproto.DocumentUri) (lsproto.DocumentSymbolResponse, error) { diff --git a/tsc/internal/ls/utilities.go b/tsc/pkg/ls/utilities.go similarity index 98% rename from tsc/internal/ls/utilities.go rename to tsc/pkg/ls/utilities.go index 96f56076cb42c..990e6e4e58fe6 100644 --- a/tsc/internal/ls/utilities.go +++ b/tsc/pkg/ls/utilities.go @@ -6,21 +6,21 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/astnav" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/astnav" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var quoteReplacer = strings.NewReplacer("'", `\'`, `\"`, `"`) diff --git a/tsc/internal/lsp/dynamic_queue.go b/tsc/pkg/lsp/dynamic_queue.go similarity index 100% rename from tsc/internal/lsp/dynamic_queue.go rename to tsc/pkg/lsp/dynamic_queue.go diff --git a/tsc/internal/lsp/dynamic_queue_test.go b/tsc/pkg/lsp/dynamic_queue_test.go similarity index 100% rename from tsc/internal/lsp/dynamic_queue_test.go rename to tsc/pkg/lsp/dynamic_queue_test.go diff --git a/tsc/internal/lsp/logger.go b/tsc/pkg/lsp/logger.go similarity index 96% rename from tsc/internal/lsp/logger.go rename to tsc/pkg/lsp/logger.go index 6176038688424..a435722d8498e 100644 --- a/tsc/internal/lsp/logger.go +++ b/tsc/pkg/lsp/logger.go @@ -4,8 +4,8 @@ import ( "fmt" "sync" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" ) var _ logging.Logger = (*logger)(nil) diff --git a/tsc/internal/lsp/lsproto/_generate/.gitignore b/tsc/pkg/lsp/lsproto/_generate/.gitignore similarity index 100% rename from tsc/internal/lsp/lsproto/_generate/.gitignore rename to tsc/pkg/lsp/lsproto/_generate/.gitignore diff --git a/tsc/internal/lsp/lsproto/_generate/fetchModel.mts b/tsc/pkg/lsp/lsproto/_generate/fetchModel.mts similarity index 100% rename from tsc/internal/lsp/lsproto/_generate/fetchModel.mts rename to tsc/pkg/lsp/lsproto/_generate/fetchModel.mts diff --git a/tsc/internal/lsp/lsproto/_generate/generate.mts b/tsc/pkg/lsp/lsproto/_generate/generate.mts similarity index 97% rename from tsc/internal/lsp/lsproto/_generate/generate.mts rename to tsc/pkg/lsp/lsproto/_generate/generate.mts index 6f65a9af99c1e..ae98f71df084a 100755 --- a/tsc/internal/lsp/lsproto/_generate/generate.mts +++ b/tsc/pkg/lsp/lsproto/_generate/generate.mts @@ -2450,7 +2450,7 @@ function generateCode() { writeLine(`\t"fmt"`); writeLine(`\t"strings"`); writeLine(""); - writeLine(`\t"github.com/microsoft/TypeScript/tsc/internal/json"`); + writeLine(`\t"github.com/frida/TypeScript/tsc/pkg/json"`); writeLine(`)`); writeLine(""); writeLine("// Meta model version " + model.metaData.version); diff --git a/tsc/internal/lsp/lsproto/_generate/metaModelSchema.mts b/tsc/pkg/lsp/lsproto/_generate/metaModelSchema.mts similarity index 100% rename from tsc/internal/lsp/lsproto/_generate/metaModelSchema.mts rename to tsc/pkg/lsp/lsproto/_generate/metaModelSchema.mts diff --git a/tsc/internal/lsp/lsproto/_generate/tsconfig.json b/tsc/pkg/lsp/lsproto/_generate/tsconfig.json similarity index 100% rename from tsc/internal/lsp/lsproto/_generate/tsconfig.json rename to tsc/pkg/lsp/lsproto/_generate/tsconfig.json diff --git a/tsc/internal/lsp/lsproto/baseproto.go b/tsc/pkg/lsp/lsproto/baseproto.go similarity index 92% rename from tsc/internal/lsp/lsproto/baseproto.go rename to tsc/pkg/lsp/lsproto/baseproto.go index cd6409929bf81..8088a3f3996f0 100644 --- a/tsc/internal/lsp/lsproto/baseproto.go +++ b/tsc/pkg/lsp/lsproto/baseproto.go @@ -3,7 +3,7 @@ package lsproto import ( "io" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // https://microsoft.github.io/language-server-protocol/specifications/base/0.9/specification/ diff --git a/tsc/internal/lsp/lsproto/baseproto_test.go b/tsc/pkg/lsp/lsproto/baseproto_test.go similarity index 98% rename from tsc/internal/lsp/lsproto/baseproto_test.go rename to tsc/pkg/lsp/lsproto/baseproto_test.go index d5ab68ee85594..b6f9dfdfde8c5 100644 --- a/tsc/internal/lsp/lsproto/baseproto_test.go +++ b/tsc/pkg/lsp/lsproto/baseproto_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/lsproto/jsonrpc.go b/tsc/pkg/lsp/lsproto/jsonrpc.go similarity index 96% rename from tsc/internal/lsp/lsproto/jsonrpc.go rename to tsc/pkg/lsp/lsproto/jsonrpc.go index 06778da049539..c0ae268051dea 100644 --- a/tsc/internal/lsp/lsproto/jsonrpc.go +++ b/tsc/pkg/lsp/lsproto/jsonrpc.go @@ -3,8 +3,8 @@ package lsproto import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" ) // NewID creates an ID from an IntegerOrString value. diff --git a/tsc/internal/lsp/lsproto/lsp.go b/tsc/pkg/lsp/lsproto/lsp.go similarity index 97% rename from tsc/internal/lsp/lsproto/lsp.go rename to tsc/pkg/lsp/lsproto/lsp.go index 4941077b9ca0c..0641f0fe5e71e 100644 --- a/tsc/internal/lsp/lsproto/lsp.go +++ b/tsc/pkg/lsp/lsproto/lsp.go @@ -7,11 +7,11 @@ import ( "net/url" "strings" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type DocumentUri string // !!! diff --git a/tsc/internal/lsp/lsproto/lsp_generated.go b/tsc/pkg/lsp/lsproto/lsp_generated.go similarity index 99% rename from tsc/internal/lsp/lsproto/lsp_generated.go rename to tsc/pkg/lsp/lsproto/lsp_generated.go index d7fd435e7c038..b8921cbcbc5db 100644 --- a/tsc/internal/lsp/lsproto/lsp_generated.go +++ b/tsc/pkg/lsp/lsproto/lsp_generated.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) // Meta model version 3.18.0 diff --git a/tsc/internal/lsp/lsproto/lsp_json_test.go b/tsc/pkg/lsp/lsproto/lsp_json_test.go similarity index 99% rename from tsc/internal/lsp/lsproto/lsp_json_test.go rename to tsc/pkg/lsp/lsproto/lsp_json_test.go index 3f88840c0b43e..9397fed6a4bd6 100644 --- a/tsc/internal/lsp/lsproto/lsp_json_test.go +++ b/tsc/pkg/lsp/lsproto/lsp_json_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/lsproto/lsp_test.go b/tsc/pkg/lsp/lsproto/lsp_test.go similarity index 96% rename from tsc/internal/lsp/lsproto/lsp_test.go rename to tsc/pkg/lsp/lsproto/lsp_test.go index 903c5d3f4ba35..510e5de1c6856 100644 --- a/tsc/internal/lsp/lsproto/lsp_test.go +++ b/tsc/pkg/lsp/lsproto/lsp_test.go @@ -3,7 +3,7 @@ package lsproto import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/lsproto/structcodec.go b/tsc/pkg/lsp/lsproto/structcodec.go similarity index 98% rename from tsc/internal/lsp/lsproto/structcodec.go rename to tsc/pkg/lsp/lsproto/structcodec.go index 269364a0f5a86..886c255e49937 100644 --- a/tsc/internal/lsp/lsproto/structcodec.go +++ b/tsc/pkg/lsp/lsproto/structcodec.go @@ -5,7 +5,7 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) // This file provides a single reflection-driven object decoder that replaces diff --git a/tsc/internal/lsp/lsproto/util.go b/tsc/pkg/lsp/lsproto/util.go similarity index 100% rename from tsc/internal/lsp/lsproto/util.go rename to tsc/pkg/lsp/lsproto/util.go diff --git a/tsc/internal/lsp/lspwatcher/lspwatcher.go b/tsc/pkg/lsp/lspwatcher/lspwatcher.go similarity index 98% rename from tsc/internal/lsp/lspwatcher/lspwatcher.go rename to tsc/pkg/lsp/lspwatcher/lspwatcher.go index c2886b8480296..3fe1a42bdce94 100644 --- a/tsc/internal/lsp/lspwatcher/lspwatcher.go +++ b/tsc/pkg/lsp/lspwatcher/lspwatcher.go @@ -11,12 +11,12 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // throttleWindow mirrors VS Code's parcel watcher integration: give the diff --git a/tsc/internal/lsp/lspwatcher/lspwatcher_test.go b/tsc/pkg/lsp/lspwatcher/lspwatcher_test.go similarity index 98% rename from tsc/internal/lsp/lspwatcher/lspwatcher_test.go rename to tsc/pkg/lsp/lspwatcher/lspwatcher_test.go index 5bd0d30477a75..c2d254a7d1180 100644 --- a/tsc/internal/lsp/lspwatcher/lspwatcher_test.go +++ b/tsc/pkg/lsp/lspwatcher/lspwatcher_test.go @@ -10,12 +10,12 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) func waitFor(t *testing.T, cond func() bool, msg string) { diff --git a/tsc/internal/lsp/progress.go b/tsc/pkg/lsp/progress.go similarity index 96% rename from tsc/internal/lsp/progress.go rename to tsc/pkg/lsp/progress.go index d9ca6a2dd25cf..20c7de2a626dd 100644 --- a/tsc/internal/lsp/progress.go +++ b/tsc/pkg/lsp/progress.go @@ -4,10 +4,10 @@ import ( "fmt" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) type progressEvent struct { diff --git a/tsc/internal/lsp/progress_test.go b/tsc/pkg/lsp/progress_test.go similarity index 98% rename from tsc/internal/lsp/progress_test.go rename to tsc/pkg/lsp/progress_test.go index f442087af4997..4ac542858c1b1 100644 --- a/tsc/internal/lsp/progress_test.go +++ b/tsc/pkg/lsp/progress_test.go @@ -7,9 +7,9 @@ import ( "testing/synctest" "time" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) type progressCall struct { diff --git a/tsc/internal/lsp/replay_test.go b/tsc/pkg/lsp/replay_test.go similarity index 92% rename from tsc/internal/lsp/replay_test.go rename to tsc/pkg/lsp/replay_test.go index 763803a797005..10861a7edcbde 100644 --- a/tsc/internal/lsp/replay_test.go +++ b/tsc/pkg/lsp/replay_test.go @@ -8,15 +8,15 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) var ( diff --git a/tsc/internal/lsp/server.go b/tsc/pkg/lsp/server.go similarity index 98% rename from tsc/internal/lsp/server.go rename to tsc/pkg/lsp/server.go index f23a7fcadcd3c..0a1e68c153f87 100644 --- a/tsc/internal/lsp/server.go +++ b/tsc/pkg/lsp/server.go @@ -14,28 +14,28 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/api" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/fswatch" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lspwatcher" - "github.com/microsoft/TypeScript/tsc/internal/pprof" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/api" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/fswatch" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/lsp/lspwatcher" + "github.com/frida/TypeScript/tsc/pkg/pprof" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/project/ata" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" "golang.org/x/sync/errgroup" ) diff --git a/tsc/internal/lsp/server_completion_test.go b/tsc/pkg/lsp/server_completion_test.go similarity index 95% rename from tsc/internal/lsp/server_completion_test.go rename to tsc/pkg/lsp/server_completion_test.go index 00d77e2834aae..57a301a95f659 100644 --- a/tsc/internal/lsp/server_completion_test.go +++ b/tsc/pkg/lsp/server_completion_test.go @@ -5,14 +5,14 @@ import ( "io" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_contentmapper_internal_test.go b/tsc/pkg/lsp/server_contentmapper_internal_test.go similarity index 98% rename from tsc/internal/lsp/server_contentmapper_internal_test.go rename to tsc/pkg/lsp/server_contentmapper_internal_test.go index f07309f55f499..4a9a2b60dca3e 100644 --- a/tsc/internal/lsp/server_contentmapper_internal_test.go +++ b/tsc/pkg/lsp/server_contentmapper_internal_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_contentmapper_test.go b/tsc/pkg/lsp/server_contentmapper_test.go similarity index 96% rename from tsc/internal/lsp/server_contentmapper_test.go rename to tsc/pkg/lsp/server_contentmapper_test.go index 50ac7174518a5..65ac8dadd06bf 100644 --- a/tsc/internal/lsp/server_contentmapper_test.go +++ b/tsc/pkg/lsp/server_contentmapper_test.go @@ -7,12 +7,12 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_progress_test.go b/tsc/pkg/lsp/server_progress_test.go similarity index 93% rename from tsc/internal/lsp/server_progress_test.go rename to tsc/pkg/lsp/server_progress_test.go index 87a2ee0372fdd..b724b928ae9ba 100644 --- a/tsc/internal/lsp/server_progress_test.go +++ b/tsc/pkg/lsp/server_progress_test.go @@ -6,11 +6,11 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_projectinfo_test.go b/tsc/pkg/lsp/server_projectinfo_test.go similarity index 93% rename from tsc/internal/lsp/server_projectinfo_test.go rename to tsc/pkg/lsp/server_projectinfo_test.go index 8ad733490099d..6ff4b0e656511 100644 --- a/tsc/internal/lsp/server_projectinfo_test.go +++ b/tsc/pkg/lsp/server_projectinfo_test.go @@ -5,11 +5,11 @@ import ( "io" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_projectreference_updates_test.go b/tsc/pkg/lsp/server_projectreference_updates_test.go similarity index 89% rename from tsc/internal/lsp/server_projectreference_updates_test.go rename to tsc/pkg/lsp/server_projectreference_updates_test.go index b4b81ae734690..b245b48e09b99 100644 --- a/tsc/internal/lsp/server_projectreference_updates_test.go +++ b/tsc/pkg/lsp/server_projectreference_updates_test.go @@ -5,14 +5,14 @@ import ( "io" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_semantictokens_test.go b/tsc/pkg/lsp/server_semantictokens_test.go similarity index 96% rename from tsc/internal/lsp/server_semantictokens_test.go rename to tsc/pkg/lsp/server_semantictokens_test.go index f0c78bbca49c2..d45ffe6c72f1a 100644 --- a/tsc/internal/lsp/server_semantictokens_test.go +++ b/tsc/pkg/lsp/server_semantictokens_test.go @@ -6,11 +6,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/lsptestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/lsptestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/lsp/server_test.go b/tsc/pkg/lsp/server_test.go similarity index 95% rename from tsc/internal/lsp/server_test.go rename to tsc/pkg/lsp/server_test.go index b1fa1d5e0c35d..14f59f15f8ef5 100644 --- a/tsc/internal/lsp/server_test.go +++ b/tsc/pkg/lsp/server_test.go @@ -6,11 +6,11 @@ import ( "testing" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) type shutdownTestReader struct{} diff --git a/tsc/internal/lsp/stack_sanitizer.go b/tsc/pkg/lsp/stack_sanitizer.go similarity index 97% rename from tsc/internal/lsp/stack_sanitizer.go rename to tsc/pkg/lsp/stack_sanitizer.go index 9c31abf8b8835..62c6e700d4a67 100644 --- a/tsc/internal/lsp/stack_sanitizer.go +++ b/tsc/pkg/lsp/stack_sanitizer.go @@ -4,7 +4,7 @@ import ( "regexp" "strings" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) // VS Code's telemetry pipeline redacts any string matching diff --git a/tsc/pkg/lsp/stack_sanitizer_test.go b/tsc/pkg/lsp/stack_sanitizer_test.go new file mode 100644 index 0000000000000..90c16dfcb417b --- /dev/null +++ b/tsc/pkg/lsp/stack_sanitizer_test.go @@ -0,0 +1,136 @@ +package lsp + +import ( + "regexp" + "strings" + "testing" + + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" +) + +// This test uses non-trimmed paths to emulate debug builds. +// Most users won't actually see this. +func TestSanitizedDebugStackTraceCompletionsRequest(t *testing.T) { + t.Parallel() + + input := `goroutine 1196 [running]: +runtime/debug.Stack() + /usr/local/go/src/runtime/debug/stack.go:26 +0x8e +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).recover(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc00baf16e0) + /workspaces/TypeScript/tsc/pkg/lsp/server.go:777 +0x65 +panic({0x1077b40?, 0x1abcb70?}) + /usr/local/go/src/runtime/panic.go:783 +0x136 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData.func15() + /workspaces/TypeScript/tsc/pkg/ls/completions.go:1303 +0xfa +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData.func18() + /workspaces/TypeScript/tsc/pkg/ls/completions.go:1548 +0x2df +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData(0xc004b08240, {0x14bc418, 0xc00bc60a20}, 0xc0069ef908, 0xc000272008, 0x1b, 0xc002b28e00) + /workspaces/TypeScript/tsc/pkg/ls/completions.go:1581 +0x2b92 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionsAtPosition(0xc004b08240, {0x14bc418, 0xc00bc60a20}, 0xc000272008, 0x1b, 0x0) + /workspaces/TypeScript/tsc/pkg/ls/completions.go:347 +0x690 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).ProvideCompletion(0xc004b08240, {0x14bc418, 0xc00bc60a20}, {0xc0092e02a0, 0x28}, {0x2, 0x4}, 0xc004580c30) + /workspaces/TypeScript/tsc/pkg/ls/completions.go:47 +0x207 +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).handleCompletion(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc004b08240, 0xc00baf14d0) + /workspaces/TypeScript/tsc/pkg/lsp/server.go:1102 +0xe5 +github.com/frida/TypeScript/tsc/pkg/lsp.registerLanguageServiceWithAutoImportsRequestHandler[...].func1({0x14bc418, 0xc00bc60960}, 0xc00baf16e0) + /workspaces/TypeScript/tsc/pkg/lsp/server.go:682 +0x32a +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).handleRequestOrNotification(0xc0001dae08, {0x14bc418, 0xc00bc60960}, 0xc00baf16e0) + /workspaces/TypeScript/tsc/pkg/lsp/server.go:531 +0x11e +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).dispatchLoop.func1() + /workspaces/TypeScript/tsc/pkg/lsp/server.go:414 +0x65 +created by github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).dispatchLoop in goroutine 19 + /workspaces/TypeScript/tsc/pkg/lsp/server.go:438 +0x60` + + baseline.Run(t, "completionsDebugStackTrace.md", sanitizedStackTraceBaselineContents(t, input, sanitizeStackTrace(input)), baseline.Options{ + Subfolder: "lsp/stackSanitizer/", + }) +} + +func TestSanitizedReleaseStackTraceCompletionsRequest(t *testing.T) { + t.Parallel() + + input := `runtime error: invalid memory address or nil pointer dereference +goroutine 2331 [running]: +runtime/debug.Stack() + runtime/debug/stack.go:26 +0x5e +github.com/frida/TypeScript/tsc/cmd/tsc.runMain() + github.com/frida/TypeScript/tsc/cmd/tsc/main.go:17 +0x20 +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).recover(0xc0001c6e08, {0x441ae5?, 0xc000e976c0?}, 0xc00ab6c7b0) + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:777 +0x58 +panic({0xc323a0?, 0x1780b90?}) + runtime/panic.go:783 +0x132 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData.func15() + github.com/frida/TypeScript/tsc/pkg/ls/completions.go:1303 +0xba +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData.func18(...) + github.com/frida/TypeScript/tsc/pkg/ls/completions.go:1548 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionData(0xc008329200, {0x10f6688, 0xc00c2871d0}, 0xc00190b308, 0xc0001fe008, 0x1b, 0xc0008a2f00) + github.com/frida/TypeScript/tsc/pkg/ls/completions.go:1581 +0x1ed4 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getCompletionsAtPosition(0xc008329200, {0x10f6688, 0xc00c2871d0}, 0xc0001fe008, 0x1b, 0x0) + github.com/frida/TypeScript/tsc/pkg/ls/completions.go:347 +0x35f +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).ProvideCompletion(0xc008329200, {0x10f6688, 0xc00c287110}, {0xc00b472030?, 0xc00c287110?}, {0xb472030?, 0xc0?}, 0xc00c3ea000) + github.com/frida/TypeScript/tsc/pkg/ls/completions.go:47 +0x11c +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).handleCompletion(0x418834?, {0x10f6688?, 0xc00c287110?}, 0xc00b472030?, 0x10f6688?) + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:1105 +0x39 +github.com/frida/TypeScript/tsc/pkg/lsp.init.func1.registerLanguageServiceWithAutoImportsRequestHandler[...].28({0x10f6688, 0xc00c287110}, 0xc00ab6c7b0) + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:682 +0x16c +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).handleRequestOrNotification(0xc0001c6e08, {0x10f66c0?, 0xc006589180?}, 0xc00ab6c7b0) + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:531 +0x1c6 +github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).dispatchLoop.func1() + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:414 +0x3a +created by github.com/frida/TypeScript/tsc/pkg/lsp.(*Server).dispatchLoop in goroutine 35 + github.com/frida/TypeScript/tsc/pkg/lsp/server.go:438 +0x9f1` + + baseline.Run(t, "completionsReleaseStackTrace.md", sanitizedStackTraceBaselineContents(t, input, sanitizeStackTrace(input)), baseline.Options{ + Subfolder: "lsp/stackSanitizer/", + }) +} + +func sanitizedStackTraceBaselineContents(t *testing.T, input string, output string) string { + builder := strings.Builder{} + builder.WriteString("Test name: `") + builder.WriteString(t.Name()) + builder.WriteString("`\n\n# Unsanitized input:\n\n````\n") + builder.WriteString(input) + builder.WriteString("\n````\n\n# Sanitized output:\n\n````\n") + builder.WriteString(output) + builder.WriteString("\n````\n") + return builder.String() +} + +// Mirror of the "Generic Secret" pattern from VS Code's +// removePropertiesWithPossibleUserInfo. If this matches the sanitized output, +// VS Code's telemetry pipeline will replace the entire string with +// ``, destroying the stack trace. +var vscodeGenericSecretRegex = regexp.MustCompile(`(?i)(key|token|sig|secret|signature|password|passwd|pwd|android:value)[^a-zA-Z0-9]`) + +func TestSanitizedStackTraceDefeatsVSCodeGenericSecretRegex(t *testing.T) { + t.Parallel() + + // Frame names contain identifiers that contain trigger keywords: + // `getSignatureHelp` (signature), `LookupKey` (key), `validateToken` (token), + // `signRequest` (sig), `setPwd` (pwd), and a file `signature.go`. + input := `goroutine 7 [running]: +runtime/debug.Stack() + runtime/debug/stack.go:26 +0x5e +github.com/frida/TypeScript/tsc/cmd/tsc.runMain() + github.com/frida/TypeScript/tsc/cmd/tsc/main.go:17 +0x20 +github.com/frida/TypeScript/tsc/pkg/ls.(*LanguageService).getSignatureHelp(0x1) + github.com/frida/TypeScript/tsc/pkg/ls/signature.go:42 +0x10 +github.com/frida/TypeScript/tsc/pkg/ls.LookupKey(0x2) + github.com/frida/TypeScript/tsc/pkg/ls/keys.go:7 +0x10 +github.com/frida/TypeScript/tsc/pkg/ls.validateToken(0x3) + github.com/frida/TypeScript/tsc/pkg/ls/token.go:9 +0x10 +github.com/frida/TypeScript/tsc/pkg/ls.signRequest(0x4) + github.com/frida/TypeScript/tsc/pkg/ls/sig.go:11 +0x10 +github.com/frida/TypeScript/tsc/pkg/ls.setPwd(0x5) + github.com/frida/TypeScript/tsc/pkg/ls/pwd.go:13 +0x10` + + output := sanitizeStackTrace(input) + if loc := vscodeGenericSecretRegex.FindStringIndex(output); loc != nil { + t.Fatalf("sanitized stack trace would be redacted by VS Code's Generic Secret regex at %v: %q\nfull output:\n%s", loc, output[loc[0]:loc[1]], output) + } + + baseline.Run(t, "genericSecretWorkaround.md", sanitizedStackTraceBaselineContents(t, input, output), baseline.Options{ + Subfolder: "lsp/stackSanitizer/", + }) +} diff --git a/tsc/internal/lsp/testmain_test.go b/tsc/pkg/lsp/testmain_test.go similarity index 52% rename from tsc/internal/lsp/testmain_test.go rename to tsc/pkg/lsp/testmain_test.go index 91092d2a5b5df..1dc05246dbeb7 100644 --- a/tsc/internal/lsp/testmain_test.go +++ b/tsc/pkg/lsp/testmain_test.go @@ -3,8 +3,8 @@ package lsp import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/module/cache.go b/tsc/pkg/module/cache.go similarity index 93% rename from tsc/internal/module/cache.go rename to tsc/pkg/module/cache.go index 5b125abc0ada0..6826803d4322f 100644 --- a/tsc/internal/module/cache.go +++ b/tsc/pkg/module/cache.go @@ -1,9 +1,9 @@ package module import ( - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/packagejson" ) type ModeAwareCache[T any] map[ModeAwareCacheKey]T diff --git a/tsc/internal/module/resolver.go b/tsc/pkg/module/resolver.go similarity index 99% rename from tsc/internal/module/resolver.go rename to tsc/pkg/module/resolver.go index 2363435bb2207..f7fb5c1422702 100644 --- a/tsc/internal/module/resolver.go +++ b/tsc/pkg/module/resolver.go @@ -6,14 +6,14 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) type resolved struct { @@ -1059,7 +1059,7 @@ func (r *resolutionState) loadModuleFromSpecificNodeModulesDirectory(ext extensi // inserts, an entry whose `PackageDirectory` doesn't match `candidate`, // causing `loadNodeModuleFromDirectoryWorker`'s `ComparePaths(candidate, ...)` // check to fail and skip loading the package's `main`/`types` entry. - // https://github.com/microsoft/TypeScript/tsc/issues/3526 + // https://github.com/frida/TypeScript/tsc/issues/3526 candidate := tspath.RemoveTrailingDirectorySeparator(tspath.NormalizePath(tspath.CombinePaths(nodeModulesDirectory, moduleName))) packageName, rest := ParsePackageName(moduleName) packageDirectory := tspath.CombinePaths(nodeModulesDirectory, packageName) diff --git a/tsc/internal/module/resolver_test.go b/tsc/pkg/module/resolver_test.go similarity index 95% rename from tsc/internal/module/resolver_test.go rename to tsc/pkg/module/resolver_test.go index 1d75c85c4b47a..591b981556d11 100644 --- a/tsc/internal/module/resolver_test.go +++ b/tsc/pkg/module/resolver_test.go @@ -6,10 +6,10 @@ import ( "sync/atomic" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) type resolutionHostStub struct { @@ -20,7 +20,7 @@ type resolutionHostStub struct { func (h *resolutionHostStub) FS() vfs.FS { return h.fs } func (h *resolutionHostStub) GetCurrentDirectory() string { return h.cwd } -// Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3526. +// Regression test for https://github.com/frida/TypeScript/tsc/issues/3526. // // Resolving a node_modules import with a trailing slash (e.g. `pkg/`) must // produce the same result as without one. @@ -53,7 +53,7 @@ func TestResolveModuleNameTrailingSlash(t *testing.T) { // block on `gate` until released. Each caller sends on `arrived` when it // reaches the gate. This is used to deterministically reproduce the // `package.json` info-cache insert race described in -// https://github.com/microsoft/TypeScript/tsc/issues/3526. +// https://github.com/frida/TypeScript/tsc/issues/3526. type blockingFS struct { vfs.FS targetPath string @@ -124,7 +124,7 @@ func (f *flipFileExistsFS) ReadFile(path string) (string, bool) { return f.FS.ReadFile(path) } -// Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3526. +// Regression test for https://github.com/frida/TypeScript/tsc/issues/3526. // // Two goroutines resolve the same package via specifiers that differ only by // a trailing slash (`pkg` and `pkg/`). A blocking FS holds both at the @@ -202,7 +202,7 @@ func TestResolveModuleNameTrailingSlashRace(t *testing.T) { } } -// Regression test for https://github.com/microsoft/TypeScript/tsc/issues/1290. +// Regression test for https://github.com/frida/TypeScript/tsc/issues/1290. // // Two goroutines resolve `pkg/sub` concurrently. Both miss the package.json // info-cache for the root package directory. A `flipFileExistsFS` forces the @@ -313,7 +313,7 @@ func TestParseNodeModuleFromPath(t *testing.T) { {"folder subpath scoped", "/a/node_modules/@scope/b/lib/File", true, "/a/node_modules/@scope/b"}, {"package root folder", "/a/node_modules/b", true, "/a/node_modules/b"}, {"scoped package root folder", "/a/node_modules/@scope/b", true, "/a/node_modules/@scope/b"}, - // A bare scope directory has no package name; must not panic (https://github.com/microsoft/TypeScript/tsc/issues/4373). + // A bare scope directory has no package name; must not panic (https://github.com/frida/TypeScript/tsc/issues/4373). {"scope-only folder", "/a/node_modules/@scope", true, "/a/node_modules/@scope"}, {"types scope-only folder", "/a/node_modules/@types", true, "/a/node_modules/@types"}, {"not in node_modules", "/a/src/index.ts", false, ""}, @@ -329,7 +329,7 @@ func TestParseNodeModuleFromPath(t *testing.T) { } } -// Regression test for https://github.com/microsoft/TypeScript/tsc/issues/4478. +// Regression test for https://github.com/frida/TypeScript/tsc/issues/4478. // // While resolving a package with peerDependencies, two goroutines look up the // peer package's package.json concurrently. A `flipFileExistsFS` forces the diff --git a/tsc/internal/module/types.go b/tsc/pkg/module/types.go similarity index 94% rename from tsc/internal/module/types.go rename to tsc/pkg/module/types.go index 72e2573adf3fe..da3307909b5df 100644 --- a/tsc/internal/module/types.go +++ b/tsc/pkg/module/types.go @@ -5,10 +5,10 @@ import ( "math/bits" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type ResolutionHost interface { diff --git a/tsc/internal/module/util.go b/tsc/pkg/module/util.go similarity index 95% rename from tsc/internal/module/util.go rename to tsc/pkg/module/util.go index 5e06fd6c421e3..6dcd185a0d123 100644 --- a/tsc/internal/module/util.go +++ b/tsc/pkg/module/util.go @@ -3,11 +3,11 @@ package module import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/semver" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/semver" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var typeScriptVersion = semver.MustParse(core.Version()) diff --git a/tsc/internal/modulespecifiers/compare.go b/tsc/pkg/modulespecifiers/compare.go similarity index 100% rename from tsc/internal/modulespecifiers/compare.go rename to tsc/pkg/modulespecifiers/compare.go diff --git a/tsc/internal/modulespecifiers/preferences.go b/tsc/pkg/modulespecifiers/preferences.go similarity index 97% rename from tsc/internal/modulespecifiers/preferences.go rename to tsc/pkg/modulespecifiers/preferences.go index 6d68486cad882..5aafdc8f957de 100644 --- a/tsc/internal/modulespecifiers/preferences.go +++ b/tsc/pkg/modulespecifiers/preferences.go @@ -3,10 +3,10 @@ package modulespecifiers import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Program errors validate that `noEmit` or `emitDeclarationOnly` is also set, diff --git a/tsc/internal/modulespecifiers/specifiers.go b/tsc/pkg/modulespecifiers/specifiers.go similarity index 99% rename from tsc/internal/modulespecifiers/specifiers.go rename to tsc/pkg/modulespecifiers/specifiers.go index 5418ca371aa3a..fd9c41bee4968 100644 --- a/tsc/internal/modulespecifiers/specifiers.go +++ b/tsc/pkg/modulespecifiers/specifiers.go @@ -5,15 +5,15 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func GetModuleSpecifiers( diff --git a/tsc/internal/modulespecifiers/specifiers_test.go b/tsc/pkg/modulespecifiers/specifiers_test.go similarity index 95% rename from tsc/internal/modulespecifiers/specifiers_test.go rename to tsc/pkg/modulespecifiers/specifiers_test.go index 35269a9df76c9..16d47c18aa740 100644 --- a/tsc/internal/modulespecifiers/specifiers_test.go +++ b/tsc/pkg/modulespecifiers/specifiers_test.go @@ -3,13 +3,13 @@ package modulespecifiers import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Mock host for testing diff --git a/tsc/internal/modulespecifiers/types.go b/tsc/pkg/modulespecifiers/types.go similarity index 90% rename from tsc/internal/modulespecifiers/types.go rename to tsc/pkg/modulespecifiers/types.go index b9d5a39ca6040..0eaa56b0f1bb9 100644 --- a/tsc/internal/modulespecifiers/types.go +++ b/tsc/pkg/modulespecifiers/types.go @@ -1,13 +1,13 @@ package modulespecifiers import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type SourceFileForSpecifierGeneration interface { diff --git a/tsc/internal/modulespecifiers/util.go b/tsc/pkg/modulespecifiers/util.go similarity index 97% rename from tsc/internal/modulespecifiers/util.go rename to tsc/pkg/modulespecifiers/util.go index 783c68aacf9d7..1693e8aafa21f 100644 --- a/tsc/internal/modulespecifiers/util.go +++ b/tsc/pkg/modulespecifiers/util.go @@ -7,13 +7,13 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type regexPatternCacheKey struct { diff --git a/tsc/internal/nativepath/eintr_unix.go b/tsc/pkg/nativepath/eintr_unix.go similarity index 100% rename from tsc/internal/nativepath/eintr_unix.go rename to tsc/pkg/nativepath/eintr_unix.go diff --git a/tsc/internal/nativepath/realpath_darwin_test.go b/tsc/pkg/nativepath/realpath_darwin_test.go similarity index 100% rename from tsc/internal/nativepath/realpath_darwin_test.go rename to tsc/pkg/nativepath/realpath_darwin_test.go diff --git a/tsc/internal/nativepath/realpath_linux.go b/tsc/pkg/nativepath/realpath_linux.go similarity index 100% rename from tsc/internal/nativepath/realpath_linux.go rename to tsc/pkg/nativepath/realpath_linux.go diff --git a/tsc/internal/nativepath/realpath_other.go b/tsc/pkg/nativepath/realpath_other.go similarity index 100% rename from tsc/internal/nativepath/realpath_other.go rename to tsc/pkg/nativepath/realpath_other.go diff --git a/tsc/internal/nativepath/realpath_windows.go b/tsc/pkg/nativepath/realpath_windows.go similarity index 100% rename from tsc/internal/nativepath/realpath_windows.go rename to tsc/pkg/nativepath/realpath_windows.go diff --git a/tsc/internal/nativepath/symlink_other.go b/tsc/pkg/nativepath/symlink_other.go similarity index 100% rename from tsc/internal/nativepath/symlink_other.go rename to tsc/pkg/nativepath/symlink_other.go diff --git a/tsc/internal/nativepath/symlink_windows.go b/tsc/pkg/nativepath/symlink_windows.go similarity index 100% rename from tsc/internal/nativepath/symlink_windows.go rename to tsc/pkg/nativepath/symlink_windows.go diff --git a/tsc/internal/nativepath/symlink_windows_test.go b/tsc/pkg/nativepath/symlink_windows_test.go similarity index 100% rename from tsc/internal/nativepath/symlink_windows_test.go rename to tsc/pkg/nativepath/symlink_windows_test.go diff --git a/tsc/internal/nodebuilder/types.go b/tsc/pkg/nodebuilder/types.go similarity index 98% rename from tsc/internal/nodebuilder/types.go rename to tsc/pkg/nodebuilder/types.go index 92f3d36d1144f..71f30555e5a13 100644 --- a/tsc/internal/nodebuilder/types.go +++ b/tsc/pkg/nodebuilder/types.go @@ -2,7 +2,7 @@ package nodebuilder import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" + "github.com/frida/TypeScript/tsc/pkg/ast" ) // TODO: previously all symboltracker methods were optional, but now they're required. diff --git a/tsc/internal/osutil/os_android.go b/tsc/pkg/osutil/os_android.go similarity index 100% rename from tsc/internal/osutil/os_android.go rename to tsc/pkg/osutil/os_android.go diff --git a/tsc/internal/osutil/os_other.go b/tsc/pkg/osutil/os_other.go similarity index 100% rename from tsc/internal/osutil/os_other.go rename to tsc/pkg/osutil/os_other.go diff --git a/tsc/internal/osutil/osutil.go b/tsc/pkg/osutil/osutil.go similarity index 100% rename from tsc/internal/osutil/osutil.go rename to tsc/pkg/osutil/osutil.go diff --git a/tsc/internal/outputpaths/commonsourcedirectory.go b/tsc/pkg/outputpaths/commonsourcedirectory.go similarity index 96% rename from tsc/internal/outputpaths/commonsourcedirectory.go rename to tsc/pkg/outputpaths/commonsourcedirectory.go index adea8cd5e4656..c5abbbdb14e5c 100644 --- a/tsc/internal/outputpaths/commonsourcedirectory.go +++ b/tsc/pkg/outputpaths/commonsourcedirectory.go @@ -1,8 +1,8 @@ package outputpaths import ( - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func computeCommonSourceDirectoryOfFilenames(fileNames []string, currentDirectory string, useCaseSensitiveFileNames bool) string { diff --git a/tsc/internal/outputpaths/outputpaths.go b/tsc/pkg/outputpaths/outputpaths.go similarity index 98% rename from tsc/internal/outputpaths/outputpaths.go rename to tsc/pkg/outputpaths/outputpaths.go index 83a098654063f..64f7f18c64f5e 100644 --- a/tsc/internal/outputpaths/outputpaths.go +++ b/tsc/pkg/outputpaths/outputpaths.go @@ -1,9 +1,9 @@ package outputpaths import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type OutputPathsHost interface { diff --git a/tsc/internal/outputpaths/outputpaths_test.go b/tsc/pkg/outputpaths/outputpaths_test.go similarity index 94% rename from tsc/internal/outputpaths/outputpaths_test.go rename to tsc/pkg/outputpaths/outputpaths_test.go index da1df821f5b43..a33102216ea50 100644 --- a/tsc/internal/outputpaths/outputpaths_test.go +++ b/tsc/pkg/outputpaths/outputpaths_test.go @@ -3,7 +3,7 @@ package outputpaths_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/packagejson/cache.go b/tsc/pkg/packagejson/cache.go similarity index 95% rename from tsc/internal/packagejson/cache.go rename to tsc/pkg/packagejson/cache.go index e0c1fa3688102..c2166bf0497bf 100644 --- a/tsc/internal/packagejson/cache.go +++ b/tsc/pkg/packagejson/cache.go @@ -3,11 +3,11 @@ package packagejson import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/semver" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/semver" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var typeScriptVersion = semver.MustParse(core.Version()) diff --git a/tsc/internal/packagejson/expected.go b/tsc/pkg/packagejson/expected.go similarity index 96% rename from tsc/internal/packagejson/expected.go rename to tsc/pkg/packagejson/expected.go index 251bb71ddb9e3..8a29dcc99fe16 100644 --- a/tsc/internal/packagejson/expected.go +++ b/tsc/pkg/packagejson/expected.go @@ -3,7 +3,7 @@ package packagejson import ( "reflect" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/json" ) type Expected[T any] struct { diff --git a/tsc/internal/packagejson/expected_test.go b/tsc/pkg/packagejson/expected_test.go similarity index 88% rename from tsc/internal/packagejson/expected_test.go rename to tsc/pkg/packagejson/expected_test.go index c16df66d18017..d5152b4bc4494 100644 --- a/tsc/internal/packagejson/expected_test.go +++ b/tsc/pkg/packagejson/expected_test.go @@ -3,8 +3,8 @@ package packagejson_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/packagejson/exportsorimports.go b/tsc/pkg/packagejson/exportsorimports.go similarity index 94% rename from tsc/internal/packagejson/exportsorimports.go rename to tsc/pkg/packagejson/exportsorimports.go index 38ca1c349a5cb..59788a2f957cd 100644 --- a/tsc/internal/packagejson/exportsorimports.go +++ b/tsc/pkg/packagejson/exportsorimports.go @@ -1,8 +1,8 @@ package packagejson import ( - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/json" ) type objectKind int8 diff --git a/tsc/internal/packagejson/exportsorimports_test.go b/tsc/pkg/packagejson/exportsorimports_test.go similarity index 93% rename from tsc/internal/packagejson/exportsorimports_test.go rename to tsc/pkg/packagejson/exportsorimports_test.go index cc1c6306941dc..9891333142a25 100644 --- a/tsc/internal/packagejson/exportsorimports_test.go +++ b/tsc/pkg/packagejson/exportsorimports_test.go @@ -3,8 +3,8 @@ package packagejson_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/packagejson/jsonvalue.go b/tsc/pkg/packagejson/jsonvalue.go similarity index 97% rename from tsc/internal/packagejson/jsonvalue.go rename to tsc/pkg/packagejson/jsonvalue.go index 2260b4dd30c48..e412c1e1848eb 100644 --- a/tsc/internal/packagejson/jsonvalue.go +++ b/tsc/pkg/packagejson/jsonvalue.go @@ -3,8 +3,8 @@ package packagejson import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/json" ) type JSONValueType int8 diff --git a/tsc/internal/packagejson/jsonvalue_test.go b/tsc/pkg/packagejson/jsonvalue_test.go similarity index 95% rename from tsc/internal/packagejson/jsonvalue_test.go rename to tsc/pkg/packagejson/jsonvalue_test.go index 81897f868a871..2e075329e9b7d 100644 --- a/tsc/internal/packagejson/jsonvalue_test.go +++ b/tsc/pkg/packagejson/jsonvalue_test.go @@ -3,8 +3,8 @@ package packagejson_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/packagejson/packagejson.go b/tsc/pkg/packagejson/packagejson.go similarity index 97% rename from tsc/internal/packagejson/packagejson.go rename to tsc/pkg/packagejson/packagejson.go index 05a044a38a9ce..5443711ba25a7 100644 --- a/tsc/internal/packagejson/packagejson.go +++ b/tsc/pkg/packagejson/packagejson.go @@ -1,8 +1,8 @@ package packagejson import ( - "github.com/microsoft/TypeScript/tsc/internal/collections" - json "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/collections" + json "github.com/frida/TypeScript/tsc/pkg/json" ) type HeaderFields struct { diff --git a/tsc/internal/packagejson/packagejson_test.go b/tsc/pkg/packagejson/packagejson_test.go similarity index 87% rename from tsc/internal/packagejson/packagejson_test.go rename to tsc/pkg/packagejson/packagejson_test.go index 88c48d698c8db..23c687443318c 100644 --- a/tsc/internal/packagejson/packagejson_test.go +++ b/tsc/pkg/packagejson/packagejson_test.go @@ -5,14 +5,14 @@ import ( "testing" "github.com/google/go-cmp/cmp/cmpopts" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil/filefixture" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil/filefixture" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/packagejson/validated.go b/tsc/pkg/packagejson/validated.go similarity index 100% rename from tsc/internal/packagejson/validated.go rename to tsc/pkg/packagejson/validated.go diff --git a/tsc/internal/parser/jsdoc.go b/tsc/pkg/parser/jsdoc.go similarity index 99% rename from tsc/internal/parser/jsdoc.go rename to tsc/pkg/parser/jsdoc.go index 6d239d2f228fc..a2a926ca2ec6b 100644 --- a/tsc/internal/parser/jsdoc.go +++ b/tsc/pkg/parser/jsdoc.go @@ -4,10 +4,10 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func init() { diff --git a/tsc/internal/parser/parser.go b/tsc/pkg/parser/parser.go similarity index 99% rename from tsc/internal/parser/parser.go rename to tsc/pkg/parser/parser.go index 8eef8b7a7da8d..c76dbe7b42a61 100644 --- a/tsc/internal/parser/parser.go +++ b/tsc/pkg/parser/parser.go @@ -6,14 +6,14 @@ import ( "sync" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ParsingContext int diff --git a/tsc/internal/parser/parser_test.go b/tsc/pkg/parser/parser_test.go similarity index 94% rename from tsc/internal/parser/parser_test.go rename to tsc/pkg/parser/parser_test.go index 200064160228b..92704002647b5 100644 --- a/tsc/internal/parser/parser_test.go +++ b/tsc/pkg/parser/parser_test.go @@ -8,16 +8,16 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/testrunner" - "github.com/microsoft/TypeScript/tsc/internal/testutil/fixtures" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/testrunner" + "github.com/frida/TypeScript/tsc/pkg/testutil/fixtures" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/parser/references.go b/tsc/pkg/parser/references.go similarity index 95% rename from tsc/internal/parser/references.go rename to tsc/pkg/parser/references.go index fa6bae476bf2f..0be5e90206688 100644 --- a/tsc/internal/parser/references.go +++ b/tsc/pkg/parser/references.go @@ -3,9 +3,9 @@ package parser import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func collectExternalModuleReferences(file *ast.SourceFile) { diff --git a/tsc/internal/parser/reparser.go b/tsc/pkg/parser/reparser.go similarity index 99% rename from tsc/internal/parser/reparser.go rename to tsc/pkg/parser/reparser.go index bdebd40ade98d..d86f098849894 100644 --- a/tsc/internal/parser/reparser.go +++ b/tsc/pkg/parser/reparser.go @@ -4,10 +4,10 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func (p *Parser) finishReparsedNode(node *ast.Node, locationNode *ast.Node) { diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/02b74efe61495c2a b/tsc/pkg/parser/testdata/fuzz/FuzzParser/02b74efe61495c2a similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/02b74efe61495c2a rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/02b74efe61495c2a diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/0ec0d5de7f0264d9 diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/3d59c16f3abc20e1 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/3d59c16f3abc20e1 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/3d59c16f3abc20e1 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/3d59c16f3abc20e1 diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/4c0324cd37d955ff b/tsc/pkg/parser/testdata/fuzz/FuzzParser/4c0324cd37d955ff similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/4c0324cd37d955ff rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/4c0324cd37d955ff diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/6944735deac09149 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/6944735deac09149 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/6944735deac09149 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/6944735deac09149 diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/7d4c688e1df61349 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/7d4c688e1df61349 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/7d4c688e1df61349 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/7d4c688e1df61349 diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/9ce2d994c65c7bfe b/tsc/pkg/parser/testdata/fuzz/FuzzParser/9ce2d994c65c7bfe similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/9ce2d994c65c7bfe rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/9ce2d994c65c7bfe diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/c5dc3279768e5a11 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/c5dc3279768e5a11 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/c5dc3279768e5a11 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/c5dc3279768e5a11 diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/f48591d3b8f41eca b/tsc/pkg/parser/testdata/fuzz/FuzzParser/f48591d3b8f41eca similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/f48591d3b8f41eca rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/f48591d3b8f41eca diff --git a/tsc/internal/parser/testdata/fuzz/FuzzParser/f6dbdaa8568c9488 b/tsc/pkg/parser/testdata/fuzz/FuzzParser/f6dbdaa8568c9488 similarity index 100% rename from tsc/internal/parser/testdata/fuzz/FuzzParser/f6dbdaa8568c9488 rename to tsc/pkg/parser/testdata/fuzz/FuzzParser/f6dbdaa8568c9488 diff --git a/tsc/internal/parser/types.go b/tsc/pkg/parser/types.go similarity index 100% rename from tsc/internal/parser/types.go rename to tsc/pkg/parser/types.go diff --git a/tsc/internal/parser/utilities.go b/tsc/pkg/parser/utilities.go similarity index 92% rename from tsc/internal/parser/utilities.go rename to tsc/pkg/parser/utilities.go index 48a4ecf7ed3cb..3222c69837590 100644 --- a/tsc/internal/parser/utilities.go +++ b/tsc/pkg/parser/utilities.go @@ -3,9 +3,9 @@ package parser import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func getLanguageVariant(scriptKind core.ScriptKind) core.LanguageVariant { diff --git a/tsc/internal/pprof/pprof.go b/tsc/pkg/pprof/pprof.go similarity index 100% rename from tsc/internal/pprof/pprof.go rename to tsc/pkg/pprof/pprof.go diff --git a/tsc/internal/printer/changetrackerwriter.go b/tsc/pkg/printer/changetrackerwriter.go similarity index 97% rename from tsc/internal/printer/changetrackerwriter.go rename to tsc/pkg/printer/changetrackerwriter.go index 508e71b48fd7b..623672ce5ea7e 100644 --- a/tsc/internal/printer/changetrackerwriter.go +++ b/tsc/pkg/printer/changetrackerwriter.go @@ -3,10 +3,10 @@ package printer import ( "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type ChangeTrackerWriter struct { diff --git a/tsc/internal/printer/emitcontext.go b/tsc/pkg/printer/emitcontext.go similarity index 99% rename from tsc/internal/printer/emitcontext.go rename to tsc/pkg/printer/emitcontext.go index ee483873f0d58..f049fe02bbafb 100644 --- a/tsc/internal/printer/emitcontext.go +++ b/tsc/pkg/printer/emitcontext.go @@ -6,9 +6,9 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" ) // Stores side-table information used during transformation that can be read by the printer to customize emit diff --git a/tsc/internal/printer/emitflags.go b/tsc/pkg/printer/emitflags.go similarity index 100% rename from tsc/internal/printer/emitflags.go rename to tsc/pkg/printer/emitflags.go diff --git a/tsc/internal/printer/emithost.go b/tsc/pkg/printer/emithost.go similarity index 73% rename from tsc/internal/printer/emithost.go rename to tsc/pkg/printer/emithost.go index c1b29ba4a2d52..b2b3c2c956a0a 100644 --- a/tsc/internal/printer/emithost.go +++ b/tsc/pkg/printer/emithost.go @@ -1,10 +1,10 @@ package printer import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // NOTE: EmitHost operations must be thread-safe diff --git a/tsc/internal/printer/emitresolver.go b/tsc/pkg/printer/emitresolver.go similarity index 96% rename from tsc/internal/printer/emitresolver.go rename to tsc/pkg/printer/emitresolver.go index f9b98dba994ce..ced4e567b837b 100644 --- a/tsc/internal/printer/emitresolver.go +++ b/tsc/pkg/printer/emitresolver.go @@ -1,10 +1,10 @@ package printer import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/evaluator" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/evaluator" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" ) type SymbolAccessibility int32 diff --git a/tsc/internal/printer/emittextwriter.go b/tsc/pkg/printer/emittextwriter.go similarity index 87% rename from tsc/internal/printer/emittextwriter.go rename to tsc/pkg/printer/emittextwriter.go index 7454322777305..7562411def7a2 100644 --- a/tsc/internal/printer/emittextwriter.go +++ b/tsc/pkg/printer/emittextwriter.go @@ -1,8 +1,8 @@ package printer import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" ) // Externally opaque interface for printing text diff --git a/tsc/internal/printer/factory.go b/tsc/pkg/printer/factory.go similarity index 99% rename from tsc/internal/printer/factory.go rename to tsc/pkg/printer/factory.go index 9a25da3a384f5..1c37151c3994d 100644 --- a/tsc/internal/printer/factory.go +++ b/tsc/pkg/printer/factory.go @@ -5,9 +5,9 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" ) type NodeFactory struct { diff --git a/tsc/internal/printer/generatedidentifierflags.go b/tsc/pkg/printer/generatedidentifierflags.go similarity index 100% rename from tsc/internal/printer/generatedidentifierflags.go rename to tsc/pkg/printer/generatedidentifierflags.go diff --git a/tsc/internal/printer/helpers.go b/tsc/pkg/printer/helpers.go similarity index 100% rename from tsc/internal/printer/helpers.go rename to tsc/pkg/printer/helpers.go diff --git a/tsc/internal/printer/namegenerator.go b/tsc/pkg/printer/namegenerator.go similarity index 98% rename from tsc/internal/printer/namegenerator.go rename to tsc/pkg/printer/namegenerator.go index be0e4d5741a7a..ee8131d583da0 100644 --- a/tsc/internal/printer/namegenerator.go +++ b/tsc/pkg/printer/namegenerator.go @@ -3,10 +3,10 @@ package printer import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" ) // Flags enum to track count of temp variables and a few dedicated names diff --git a/tsc/internal/printer/namegenerator_test.go b/tsc/pkg/printer/namegenerator_test.go similarity index 98% rename from tsc/internal/printer/namegenerator_test.go rename to tsc/pkg/printer/namegenerator_test.go index 51775efb802c0..48a02da1b081b 100644 --- a/tsc/internal/printer/namegenerator_test.go +++ b/tsc/pkg/printer/namegenerator_test.go @@ -3,10 +3,10 @@ package printer_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/printer/printer.go b/tsc/pkg/printer/printer.go similarity index 99% rename from tsc/internal/printer/printer.go rename to tsc/pkg/printer/printer.go index 31547cde51d64..49bc2f3566e96 100644 --- a/tsc/internal/printer/printer.go +++ b/tsc/pkg/printer/printer.go @@ -23,13 +23,13 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type PrinterOptions struct { diff --git a/tsc/internal/printer/printer_test.go b/tsc/pkg/printer/printer_test.go similarity index 99% rename from tsc/internal/printer/printer_test.go rename to tsc/pkg/printer/printer_test.go index 3b108fd1a79b1..705794ff6f697 100644 --- a/tsc/internal/printer/printer_test.go +++ b/tsc/pkg/printer/printer_test.go @@ -4,13 +4,13 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/testutil/emittestutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/transformers/tstransforms" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/testutil/emittestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/transformers/tstransforms" ) func TestEmit(t *testing.T) { diff --git a/tsc/internal/printer/semicolon_writer.go b/tsc/pkg/printer/semicolon_writer.go similarity index 97% rename from tsc/internal/printer/semicolon_writer.go rename to tsc/pkg/printer/semicolon_writer.go index fd2c3f7df5611..637e6489e544c 100644 --- a/tsc/internal/printer/semicolon_writer.go +++ b/tsc/pkg/printer/semicolon_writer.go @@ -1,8 +1,8 @@ package printer import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" ) type trailingSemicolonDeferringWriter struct { diff --git a/tsc/internal/printer/singlelinestringwriter.go b/tsc/pkg/printer/singlelinestringwriter.go similarity index 95% rename from tsc/internal/printer/singlelinestringwriter.go rename to tsc/pkg/printer/singlelinestringwriter.go index 5accd0f6d84b4..69f69d558b45b 100644 --- a/tsc/internal/printer/singlelinestringwriter.go +++ b/tsc/pkg/printer/singlelinestringwriter.go @@ -5,9 +5,9 @@ import ( "sync" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) var singleLineStringWriterPool sync.Pool = sync.Pool{ diff --git a/tsc/internal/printer/sourcefilemetadataprovider.go b/tsc/pkg/printer/sourcefilemetadataprovider.go similarity index 56% rename from tsc/internal/printer/sourcefilemetadataprovider.go rename to tsc/pkg/printer/sourcefilemetadataprovider.go index 4f4d4b309966b..226c2e1614b2c 100644 --- a/tsc/internal/printer/sourcefilemetadataprovider.go +++ b/tsc/pkg/printer/sourcefilemetadataprovider.go @@ -1,8 +1,8 @@ package printer import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type SourceFileMetaDataProvider interface { diff --git a/tsc/internal/printer/syntheticfile.go b/tsc/pkg/printer/syntheticfile.go similarity index 94% rename from tsc/internal/printer/syntheticfile.go rename to tsc/pkg/printer/syntheticfile.go index 22a2a1b372930..154e3874c7598 100644 --- a/tsc/internal/printer/syntheticfile.go +++ b/tsc/pkg/printer/syntheticfile.go @@ -3,8 +3,8 @@ package printer import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" ) // PrintAndPositionNode prints a synthesized node to text using the standard diff --git a/tsc/internal/printer/textwriter.go b/tsc/pkg/printer/textwriter.go similarity index 96% rename from tsc/internal/printer/textwriter.go rename to tsc/pkg/printer/textwriter.go index e92ad3ccf2cc7..b0d6968c4efb5 100644 --- a/tsc/internal/printer/textwriter.go +++ b/tsc/pkg/printer/textwriter.go @@ -4,9 +4,9 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) var _ EmitTextWriter = &textWriter{} diff --git a/tsc/internal/printer/utilities.go b/tsc/pkg/printer/utilities.go similarity index 98% rename from tsc/internal/printer/utilities.go rename to tsc/pkg/printer/utilities.go index 0ae6a6a833854..00278ea59c04a 100644 --- a/tsc/internal/printer/utilities.go +++ b/tsc/pkg/printer/utilities.go @@ -7,12 +7,12 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type getLiteralTextFlags int diff --git a/tsc/internal/printer/utilities_test.go b/tsc/pkg/printer/utilities_test.go similarity index 98% rename from tsc/internal/printer/utilities_test.go rename to tsc/pkg/printer/utilities_test.go index 4e9f4dccc205d..538c13b647f9a 100644 --- a/tsc/internal/printer/utilities_test.go +++ b/tsc/pkg/printer/utilities_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/api.go b/tsc/pkg/project/api.go similarity index 100% rename from tsc/internal/project/api.go rename to tsc/pkg/project/api.go diff --git a/tsc/internal/project/ata/ata.go b/tsc/pkg/project/ata/ata.go similarity index 97% rename from tsc/internal/project/ata/ata.go rename to tsc/pkg/project/ata/ata.go index 79a28f3f3ad42..fcb5cb0aa1086 100644 --- a/tsc/internal/project/ata/ata.go +++ b/tsc/pkg/project/ata/ata.go @@ -8,14 +8,14 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/semver" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/semver" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type TypingsInfo struct { diff --git a/tsc/internal/project/ata/ata_test.go b/tsc/pkg/project/ata/ata_test.go similarity index 99% rename from tsc/internal/project/ata/ata_test.go rename to tsc/pkg/project/ata/ata_test.go index abedba27dc5ed..3d4027c16819c 100644 --- a/tsc/internal/project/ata/ata_test.go +++ b/tsc/pkg/project/ata/ata_test.go @@ -5,11 +5,11 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/ata/discovertypings.go b/tsc/pkg/project/ata/discovertypings.go similarity index 96% rename from tsc/internal/project/ata/discovertypings.go rename to tsc/pkg/project/ata/discovertypings.go index ad0b9e760cfe8..463d2cdd2abc9 100644 --- a/tsc/internal/project/ata/discovertypings.go +++ b/tsc/pkg/project/ata/discovertypings.go @@ -6,15 +6,15 @@ import ( "slices" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/semver" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/semver" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) func isTypingUpToDate(cachedTyping *CachedTyping, availableTypingVersions map[string]string) bool { diff --git a/tsc/internal/project/ata/discovertypings_test.go b/tsc/pkg/project/ata/discovertypings_test.go similarity index 96% rename from tsc/internal/project/ata/discovertypings_test.go rename to tsc/pkg/project/ata/discovertypings_test.go index 5bf9b33b4e6f2..3d59a012a26d2 100644 --- a/tsc/internal/project/ata/discovertypings_test.go +++ b/tsc/pkg/project/ata/discovertypings_test.go @@ -4,13 +4,13 @@ import ( "maps" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/semver" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/semver" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/ata/installnpmpackages_test.go b/tsc/pkg/project/ata/installnpmpackages_test.go similarity index 100% rename from tsc/internal/project/ata/installnpmpackages_test.go rename to tsc/pkg/project/ata/installnpmpackages_test.go diff --git a/tsc/internal/project/ata/testmain_test.go b/tsc/pkg/project/ata/testmain_test.go similarity index 53% rename from tsc/internal/project/ata/testmain_test.go rename to tsc/pkg/project/ata/testmain_test.go index 9b703553dbb6a..931114343837c 100644 --- a/tsc/internal/project/ata/testmain_test.go +++ b/tsc/pkg/project/ata/testmain_test.go @@ -3,8 +3,8 @@ package ata_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/project/ata/typesmap.go b/tsc/pkg/project/ata/typesmap.go similarity index 100% rename from tsc/internal/project/ata/typesmap.go rename to tsc/pkg/project/ata/typesmap.go diff --git a/tsc/internal/project/ata/validatepackagename.go b/tsc/pkg/project/ata/validatepackagename.go similarity index 100% rename from tsc/internal/project/ata/validatepackagename.go rename to tsc/pkg/project/ata/validatepackagename.go diff --git a/tsc/internal/project/ata/validatepackagename_test.go b/tsc/pkg/project/ata/validatepackagename_test.go similarity index 98% rename from tsc/internal/project/ata/validatepackagename_test.go rename to tsc/pkg/project/ata/validatepackagename_test.go index 647f19d361bf9..4786f422bb043 100644 --- a/tsc/internal/project/ata/validatepackagename_test.go +++ b/tsc/pkg/project/ata/validatepackagename_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/ata" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/autoimport.go b/tsc/pkg/project/autoimport.go similarity index 92% rename from tsc/internal/project/autoimport.go rename to tsc/pkg/project/autoimport.go index 74c3cafe489c6..ff3399e8c67f0 100644 --- a/tsc/internal/project/autoimport.go +++ b/tsc/pkg/project/autoimport.go @@ -3,13 +3,13 @@ package project import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type autoImportBuilderFS struct { diff --git a/tsc/internal/project/background/queue.go b/tsc/pkg/project/background/queue.go similarity index 100% rename from tsc/internal/project/background/queue.go rename to tsc/pkg/project/background/queue.go diff --git a/tsc/internal/project/background/queue_test.go b/tsc/pkg/project/background/queue_test.go similarity index 95% rename from tsc/internal/project/background/queue_test.go rename to tsc/pkg/project/background/queue_test.go index facb1f5de97b0..21ee5c0381cd5 100644 --- a/tsc/internal/project/background/queue_test.go +++ b/tsc/pkg/project/background/queue_test.go @@ -6,7 +6,7 @@ import ( "sync/atomic" "testing" - "github.com/microsoft/TypeScript/tsc/internal/project/background" + "github.com/frida/TypeScript/tsc/pkg/project/background" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/bulkcache_test.go b/tsc/pkg/project/bulkcache_test.go similarity index 97% rename from tsc/internal/project/bulkcache_test.go rename to tsc/pkg/project/bulkcache_test.go index 65b29c0caae54..c96bb52d2e8dc 100644 --- a/tsc/internal/project/bulkcache_test.go +++ b/tsc/pkg/project/bulkcache_test.go @@ -5,11 +5,11 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) @@ -319,7 +319,7 @@ func TestBulkCacheInvalidation(t *testing.T) { // This assertion will fail until we implement logic to ignore dist folder changes }) - // Regression test for https://github.com/microsoft/TypeScript/tsc/issues/4545 + // Regression test for https://github.com/frida/TypeScript/tsc/issues/4545 // // A config file entry can be retained (here, by an open file whose default // project search fanned out to a referenced config) while its commandLine is diff --git a/tsc/internal/project/checkerpool.go b/tsc/pkg/project/checkerpool.go similarity index 98% rename from tsc/internal/project/checkerpool.go rename to tsc/pkg/project/checkerpool.go index 726199fac4fe2..d9c817d97e80f 100644 --- a/tsc/internal/project/checkerpool.go +++ b/tsc/pkg/project/checkerpool.go @@ -7,11 +7,11 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" ) // checkerHeldAnonymous is a sentinel stored in heldBy when a checker is held diff --git a/tsc/internal/project/checkerpool_test.go b/tsc/pkg/project/checkerpool_test.go similarity index 99% rename from tsc/internal/project/checkerpool_test.go rename to tsc/pkg/project/checkerpool_test.go index 76fdcf12a7e10..246bc07656c8a 100644 --- a/tsc/internal/project/checkerpool_test.go +++ b/tsc/pkg/project/checkerpool_test.go @@ -7,13 +7,13 @@ import ( "testing/synctest" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/client.go b/tsc/pkg/project/client.go similarity index 84% rename from tsc/internal/project/client.go rename to tsc/pkg/project/client.go index 1a7c9ae9c5b24..de1cfa59105a5 100644 --- a/tsc/internal/project/client.go +++ b/tsc/pkg/project/client.go @@ -3,9 +3,9 @@ package project import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) type Client interface { diff --git a/tsc/internal/project/compilerhost.go b/tsc/pkg/project/compilerhost.go similarity index 90% rename from tsc/internal/project/compilerhost.go rename to tsc/pkg/project/compilerhost.go index 2865033ddb4e3..0268905cf526a 100644 --- a/tsc/internal/project/compilerhost.go +++ b/tsc/pkg/project/compilerhost.go @@ -3,16 +3,16 @@ package project import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/project/configfilechanges_test.go b/tsc/pkg/project/configfilechanges_test.go similarity index 97% rename from tsc/internal/project/configfilechanges_test.go rename to tsc/pkg/project/configfilechanges_test.go index 01d581a9ea9ab..2247188d35ac6 100644 --- a/tsc/internal/project/configfilechanges_test.go +++ b/tsc/pkg/project/configfilechanges_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/configfileregistry.go b/tsc/pkg/project/configfileregistry.go similarity index 96% rename from tsc/internal/project/configfileregistry.go rename to tsc/pkg/project/configfileregistry.go index 7d960a0e619b2..50208bf2376a2 100644 --- a/tsc/internal/project/configfileregistry.go +++ b/tsc/pkg/project/configfileregistry.go @@ -5,11 +5,11 @@ import ( "maps" "slices" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ConfigFileRegistry struct { diff --git a/tsc/internal/project/configfileregistrybuilder.go b/tsc/pkg/project/configfileregistrybuilder.go similarity index 98% rename from tsc/internal/project/configfileregistrybuilder.go rename to tsc/pkg/project/configfileregistrybuilder.go index 1366c27abd59f..30dcdfea8cb57 100644 --- a/tsc/internal/project/configfileregistrybuilder.go +++ b/tsc/pkg/project/configfileregistrybuilder.go @@ -7,13 +7,13 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) var ( diff --git a/tsc/internal/project/contentmapper_test.go b/tsc/pkg/project/contentmapper_test.go similarity index 98% rename from tsc/internal/project/contentmapper_test.go rename to tsc/pkg/project/contentmapper_test.go index 4869337ecd801..dd7ca08aa7c1e 100644 --- a/tsc/internal/project/contentmapper_test.go +++ b/tsc/pkg/project/contentmapper_test.go @@ -10,17 +10,17 @@ import ( "sync/atomic" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/customconfigfilename_test.go b/tsc/pkg/project/customconfigfilename_test.go similarity index 96% rename from tsc/internal/project/customconfigfilename_test.go rename to tsc/pkg/project/customconfigfilename_test.go index c13900b39e980..3bd05e035a448 100644 --- a/tsc/internal/project/customconfigfilename_test.go +++ b/tsc/pkg/project/customconfigfilename_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/dirty/box.go b/tsc/pkg/project/dirty/box.go similarity index 100% rename from tsc/internal/project/dirty/box.go rename to tsc/pkg/project/dirty/box.go diff --git a/tsc/internal/project/dirty/cloneablemap.go b/tsc/pkg/project/dirty/cloneablemap.go similarity index 100% rename from tsc/internal/project/dirty/cloneablemap.go rename to tsc/pkg/project/dirty/cloneablemap.go diff --git a/tsc/internal/project/dirty/entry.go b/tsc/pkg/project/dirty/entry.go similarity index 100% rename from tsc/internal/project/dirty/entry.go rename to tsc/pkg/project/dirty/entry.go diff --git a/tsc/internal/project/dirty/interfaces.go b/tsc/pkg/project/dirty/interfaces.go similarity index 100% rename from tsc/internal/project/dirty/interfaces.go rename to tsc/pkg/project/dirty/interfaces.go diff --git a/tsc/internal/project/dirty/map.go b/tsc/pkg/project/dirty/map.go similarity index 100% rename from tsc/internal/project/dirty/map.go rename to tsc/pkg/project/dirty/map.go diff --git a/tsc/internal/project/dirty/mapbuilder.go b/tsc/pkg/project/dirty/mapbuilder.go similarity index 100% rename from tsc/internal/project/dirty/mapbuilder.go rename to tsc/pkg/project/dirty/mapbuilder.go diff --git a/tsc/internal/project/dirty/syncmap.go b/tsc/pkg/project/dirty/syncmap.go similarity index 99% rename from tsc/internal/project/dirty/syncmap.go rename to tsc/pkg/project/dirty/syncmap.go index c57b17dafd05b..08bd88791f4bb 100644 --- a/tsc/internal/project/dirty/syncmap.go +++ b/tsc/pkg/project/dirty/syncmap.go @@ -4,7 +4,7 @@ import ( "maps" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) type lockedEntry[K comparable, V Cloneable[V]] struct { diff --git a/tsc/internal/project/dirty/syncmap_test.go b/tsc/pkg/project/dirty/syncmap_test.go similarity index 100% rename from tsc/internal/project/dirty/syncmap_test.go rename to tsc/pkg/project/dirty/syncmap_test.go diff --git a/tsc/internal/project/dirty/util.go b/tsc/pkg/project/dirty/util.go similarity index 100% rename from tsc/internal/project/dirty/util.go rename to tsc/pkg/project/dirty/util.go diff --git a/tsc/internal/project/extendedconfigcache.go b/tsc/pkg/project/extendedconfigcache.go similarity index 92% rename from tsc/internal/project/extendedconfigcache.go rename to tsc/pkg/project/extendedconfigcache.go index caf3971cbce7d..e01e8bd0a6ed2 100644 --- a/tsc/internal/project/extendedconfigcache.go +++ b/tsc/pkg/project/extendedconfigcache.go @@ -1,8 +1,8 @@ package project import ( - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/project/extendedconfigcache_test.go b/tsc/pkg/project/extendedconfigcache_test.go similarity index 95% rename from tsc/internal/project/extendedconfigcache_test.go rename to tsc/pkg/project/extendedconfigcache_test.go index 6228a3ee28659..deae2de6bb316 100644 --- a/tsc/internal/project/extendedconfigcache_test.go +++ b/tsc/pkg/project/extendedconfigcache_test.go @@ -5,15 +5,15 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/filechange.go b/tsc/pkg/project/filechange.go similarity index 95% rename from tsc/internal/project/filechange.go rename to tsc/pkg/project/filechange.go index cae24fb454d5c..43de468d015a6 100644 --- a/tsc/internal/project/filechange.go +++ b/tsc/pkg/project/filechange.go @@ -1,8 +1,8 @@ package project import ( - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" ) const excessiveChangeThreshold = 1000 diff --git a/tsc/internal/project/logging/logcollector.go b/tsc/pkg/project/logging/logcollector.go similarity index 100% rename from tsc/internal/project/logging/logcollector.go rename to tsc/pkg/project/logging/logcollector.go diff --git a/tsc/internal/project/logging/logger.go b/tsc/pkg/project/logging/logger.go similarity index 100% rename from tsc/internal/project/logging/logger.go rename to tsc/pkg/project/logging/logger.go diff --git a/tsc/internal/project/logging/logtree.go b/tsc/pkg/project/logging/logtree.go similarity index 100% rename from tsc/internal/project/logging/logtree.go rename to tsc/pkg/project/logging/logtree.go diff --git a/tsc/internal/project/logging/logtree_test.go b/tsc/pkg/project/logging/logtree_test.go similarity index 100% rename from tsc/internal/project/logging/logtree_test.go rename to tsc/pkg/project/logging/logtree_test.go diff --git a/tsc/internal/project/overlayfs.go b/tsc/pkg/project/overlayfs.go similarity index 95% rename from tsc/internal/project/overlayfs.go rename to tsc/pkg/project/overlayfs.go index fb25338c26868..be6ef9e0676c8 100644 --- a/tsc/internal/project/overlayfs.go +++ b/tsc/pkg/project/overlayfs.go @@ -5,14 +5,14 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/spanmap" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/project/overlayfs_test.go b/tsc/pkg/project/overlayfs_test.go similarity index 97% rename from tsc/internal/project/overlayfs_test.go rename to tsc/pkg/project/overlayfs_test.go index 8a6c8dba0c7a0..3ea456aff9f03 100644 --- a/tsc/internal/project/overlayfs_test.go +++ b/tsc/pkg/project/overlayfs_test.go @@ -3,10 +3,10 @@ package project import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/ownercache.go b/tsc/pkg/project/ownercache.go similarity index 98% rename from tsc/internal/project/ownercache.go rename to tsc/pkg/project/ownercache.go index 801233d748b03..9f4c4162a7798 100644 --- a/tsc/internal/project/ownercache.go +++ b/tsc/pkg/project/ownercache.go @@ -3,7 +3,7 @@ package project import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) type ownerCacheEntry[V any] struct { diff --git a/tsc/internal/project/parsecache.go b/tsc/pkg/project/parsecache.go similarity index 89% rename from tsc/internal/project/parsecache.go rename to tsc/pkg/project/parsecache.go index 2fdd67e590963..a65d733eea56d 100644 --- a/tsc/internal/project/parsecache.go +++ b/tsc/pkg/project/parsecache.go @@ -3,13 +3,13 @@ package project import ( "encoding/binary" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/parser" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/parser" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/project/programcounter.go b/tsc/pkg/project/programcounter.go similarity index 93% rename from tsc/internal/project/programcounter.go rename to tsc/pkg/project/programcounter.go index df54b8c0e8cf9..6121322c9f857 100644 --- a/tsc/internal/project/programcounter.go +++ b/tsc/pkg/project/programcounter.go @@ -3,7 +3,7 @@ package project import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/compiler" + "github.com/frida/TypeScript/tsc/pkg/compiler" ) type programCounter struct { diff --git a/tsc/internal/project/project.go b/tsc/pkg/project/project.go similarity index 96% rename from tsc/internal/project/project.go rename to tsc/pkg/project/project.go index 80cacf0b7b834..896964d7a208e 100644 --- a/tsc/internal/project/project.go +++ b/tsc/pkg/project/project.go @@ -7,17 +7,17 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) const ( diff --git a/tsc/internal/project/project_stringer_generated.go b/tsc/pkg/project/project_stringer_generated.go similarity index 100% rename from tsc/internal/project/project_stringer_generated.go rename to tsc/pkg/project/project_stringer_generated.go diff --git a/tsc/internal/project/project_test.go b/tsc/pkg/project/project_test.go similarity index 98% rename from tsc/internal/project/project_test.go rename to tsc/pkg/project/project_test.go index eb1c8487dac46..a6dc0853569ac 100644 --- a/tsc/internal/project/project_test.go +++ b/tsc/pkg/project/project_test.go @@ -6,14 +6,14 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/projectcollection.go b/tsc/pkg/project/projectcollection.go similarity index 98% rename from tsc/internal/project/projectcollection.go rename to tsc/pkg/project/projectcollection.go index 1bd2f8148a466..7b3e403b0934e 100644 --- a/tsc/internal/project/projectcollection.go +++ b/tsc/pkg/project/projectcollection.go @@ -6,10 +6,10 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ProjectCollection struct { diff --git a/tsc/internal/project/projectcollectionbuilder.go b/tsc/pkg/project/projectcollectionbuilder.go similarity index 98% rename from tsc/internal/project/projectcollectionbuilder.go rename to tsc/pkg/project/projectcollectionbuilder.go index 347b69caf7a1a..ce40c6e389880 100644 --- a/tsc/internal/project/projectcollectionbuilder.go +++ b/tsc/pkg/project/projectcollectionbuilder.go @@ -8,18 +8,18 @@ import ( "slices" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type projectLoadKind int diff --git a/tsc/internal/project/projectcollectionbuilder_test.go b/tsc/pkg/project/projectcollectionbuilder_test.go similarity index 98% rename from tsc/internal/project/projectcollectionbuilder_test.go rename to tsc/pkg/project/projectcollectionbuilder_test.go index 096346d614cb0..f95ec3bfcae6e 100644 --- a/tsc/internal/project/projectcollectionbuilder_test.go +++ b/tsc/pkg/project/projectcollectionbuilder_test.go @@ -7,12 +7,12 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/projectcollectiondefaultproject_test.go b/tsc/pkg/project/projectcollectiondefaultproject_test.go similarity index 93% rename from tsc/internal/project/projectcollectiondefaultproject_test.go rename to tsc/pkg/project/projectcollectiondefaultproject_test.go index 92ec408506714..9deb3c2de6c55 100644 --- a/tsc/internal/project/projectcollectiondefaultproject_test.go +++ b/tsc/pkg/project/projectcollectiondefaultproject_test.go @@ -4,9 +4,9 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" ) func TestProjectCollectionDefaultProject(t *testing.T) { diff --git a/tsc/internal/project/projectlifetime_test.go b/tsc/pkg/project/projectlifetime_test.go similarity index 98% rename from tsc/internal/project/projectlifetime_test.go rename to tsc/pkg/project/projectlifetime_test.go index 8e9202e4b7518..e588a41a5cc63 100644 --- a/tsc/internal/project/projectlifetime_test.go +++ b/tsc/pkg/project/projectlifetime_test.go @@ -4,11 +4,11 @@ import ( "context" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) @@ -275,7 +275,7 @@ func TestProjectLifetime(t *testing.T) { assert.Assert(t, snapshot.ProjectCollection.ConfiguredProject(tspath.Path("/home/projects/ts/p1/tsconfig.json")) != nil) }) - // Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3733 + // Regression test for https://github.com/frida/TypeScript/tsc/issues/3733 // // "./"-prefixed include specs combined with a dot-directory exclude ("**/.*/") // used to drop all wildcard directories for the config, so a newly created file diff --git a/tsc/internal/project/projectreferencesprogram_test.go b/tsc/pkg/project/projectreferencesprogram_test.go similarity index 97% rename from tsc/internal/project/projectreferencesprogram_test.go rename to tsc/pkg/project/projectreferencesprogram_test.go index 2a18f82813f44..774f739e5b1b0 100644 --- a/tsc/internal/project/projectreferencesprogram_test.go +++ b/tsc/pkg/project/projectreferencesprogram_test.go @@ -5,14 +5,14 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) @@ -314,7 +314,7 @@ func TestProjectReferencesProgram(t *testing.T) { t.Run("dropped project reference does not crash on later change to the dropped config", func(t *testing.T) { t.Parallel() - // Regression test for https://github.com/microsoft/TypeScript/tsc/issues/3942. + // Regression test for https://github.com/frida/TypeScript/tsc/issues/3942. // A project reference dropped from a tsconfig used to leave a stale entry in // the referenced config's retainingProjects. When the referencing project was // later deleted and the referenced config subsequently changed, the stale entry diff --git a/tsc/internal/project/refcountcache.go b/tsc/pkg/project/refcountcache.go similarity index 98% rename from tsc/internal/project/refcountcache.go rename to tsc/pkg/project/refcountcache.go index 7a3c01d0f2ed5..f9c28f3904122 100644 --- a/tsc/internal/project/refcountcache.go +++ b/tsc/pkg/project/refcountcache.go @@ -3,7 +3,7 @@ package project import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) type refCountCacheEntry[V any] struct { diff --git a/tsc/internal/project/refcountcache_test.go b/tsc/pkg/project/refcountcache_test.go similarity index 97% rename from tsc/internal/project/refcountcache_test.go rename to tsc/pkg/project/refcountcache_test.go index 9af1a6eab689d..3a284e2bb3470 100644 --- a/tsc/internal/project/refcountcache_test.go +++ b/tsc/pkg/project/refcountcache_test.go @@ -5,16 +5,16 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "github.com/zeebo/xxh3" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/session.go b/tsc/pkg/project/session.go similarity index 98% rename from tsc/internal/project/session.go rename to tsc/pkg/project/session.go index 545287e54af33..d223eab9ccc8f 100644 --- a/tsc/internal/project/session.go +++ b/tsc/pkg/project/session.go @@ -15,22 +15,22 @@ import ( "time" osmemory "github.com/mackerelio/go-osstat/memory" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" - "github.com/microsoft/TypeScript/tsc/internal/project/background" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/background" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type UpdateReason int diff --git a/tsc/internal/project/session_test.go b/tsc/pkg/project/session_test.go similarity index 99% rename from tsc/internal/project/session_test.go rename to tsc/pkg/project/session_test.go index 209d9d70d2516..bb1b5017bccb6 100644 --- a/tsc/internal/project/session_test.go +++ b/tsc/pkg/project/session_test.go @@ -8,15 +8,15 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/snapshot.go b/tsc/pkg/project/snapshot.go similarity index 97% rename from tsc/internal/project/snapshot.go rename to tsc/pkg/project/snapshot.go index 37800279caeec..0831effd01fda 100644 --- a/tsc/internal/project/snapshot.go +++ b/tsc/pkg/project/snapshot.go @@ -9,21 +9,21 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls" - "github.com/microsoft/TypeScript/tsc/internal/ls/autoimport" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls" + "github.com/frida/TypeScript/tsc/pkg/ls/autoimport" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) type Snapshot struct { diff --git a/tsc/internal/project/snapshot_test.go b/tsc/pkg/project/snapshot_test.go similarity index 98% rename from tsc/internal/project/snapshot_test.go rename to tsc/pkg/project/snapshot_test.go index e1782e138c0d9..eda4a77a9b233 100644 --- a/tsc/internal/project/snapshot_test.go +++ b/tsc/pkg/project/snapshot_test.go @@ -5,10 +5,10 @@ import ( "fmt" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/snapshotfs.go b/tsc/pkg/project/snapshotfs.go similarity index 98% rename from tsc/internal/project/snapshotfs.go rename to tsc/pkg/project/snapshotfs.go index 61fc7312977e1..a0e3c591b77bb 100644 --- a/tsc/internal/project/snapshotfs.go +++ b/tsc/pkg/project/snapshotfs.go @@ -6,14 +6,14 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/project/snapshotfs_test.go b/tsc/pkg/project/snapshotfs_test.go similarity index 99% rename from tsc/internal/project/snapshotfs_test.go rename to tsc/pkg/project/snapshotfs_test.go index 26bae11240f89..92cffe6a31387 100644 --- a/tsc/internal/project/snapshotfs_test.go +++ b/tsc/pkg/project/snapshotfs_test.go @@ -5,12 +5,12 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/dirty" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/dirty" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/snapshothost.go b/tsc/pkg/project/snapshothost.go similarity index 92% rename from tsc/internal/project/snapshothost.go rename to tsc/pkg/project/snapshothost.go index 2a3f068f1f37c..99b67169470ba 100644 --- a/tsc/internal/project/snapshothost.go +++ b/tsc/pkg/project/snapshothost.go @@ -5,14 +5,14 @@ import ( "slices" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsutil" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsutil" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // SnapshotHost owns the services shared by a collection of immutable snapshots. diff --git a/tsc/internal/project/testmain_test.go b/tsc/pkg/project/testmain_test.go similarity index 54% rename from tsc/internal/project/testmain_test.go rename to tsc/pkg/project/testmain_test.go index 10415de494446..8d3fc5766897c 100644 --- a/tsc/internal/project/testmain_test.go +++ b/tsc/pkg/project/testmain_test.go @@ -3,8 +3,8 @@ package project_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/project/untitled_test.go b/tsc/pkg/project/untitled_test.go similarity index 96% rename from tsc/internal/project/untitled_test.go rename to tsc/pkg/project/untitled_test.go index a874641ea7bb6..480d3ff3d60fb 100644 --- a/tsc/internal/project/untitled_test.go +++ b/tsc/pkg/project/untitled_test.go @@ -5,10 +5,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/project/watch.go b/tsc/pkg/project/watch.go similarity index 98% rename from tsc/internal/project/watch.go rename to tsc/pkg/project/watch.go index f5640f2240dcc..db015c415a83c 100644 --- a/tsc/internal/project/watch.go +++ b/tsc/pkg/project/watch.go @@ -8,11 +8,11 @@ import ( "sync" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) const ( diff --git a/tsc/internal/project/watch_test.go b/tsc/pkg/project/watch_test.go similarity index 100% rename from tsc/internal/project/watch_test.go rename to tsc/pkg/project/watch_test.go diff --git a/tsc/internal/project/watchtimeout_test.go b/tsc/pkg/project/watchtimeout_test.go similarity index 95% rename from tsc/internal/project/watchtimeout_test.go rename to tsc/pkg/project/watchtimeout_test.go index 4e77f430c94ea..6c51a97360218 100644 --- a/tsc/internal/project/watchtimeout_test.go +++ b/tsc/pkg/project/watchtimeout_test.go @@ -8,10 +8,10 @@ import ( "testing/synctest" "time" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/pseudochecker/checker.go b/tsc/pkg/pseudochecker/checker.go similarity index 100% rename from tsc/internal/pseudochecker/checker.go rename to tsc/pkg/pseudochecker/checker.go diff --git a/tsc/internal/pseudochecker/lookup.go b/tsc/pkg/pseudochecker/lookup.go similarity index 99% rename from tsc/internal/pseudochecker/lookup.go rename to tsc/pkg/pseudochecker/lookup.go index 38d4c30ec0a08..87f4ccd86be01 100644 --- a/tsc/internal/pseudochecker/lookup.go +++ b/tsc/pkg/pseudochecker/lookup.go @@ -3,9 +3,9 @@ package pseudochecker import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" ) func (ch *PseudoChecker) GetReturnTypeOfSignature(signatureNode *ast.Node) *PseudoType { diff --git a/tsc/internal/pseudochecker/type.go b/tsc/pkg/pseudochecker/type.go similarity index 99% rename from tsc/internal/pseudochecker/type.go rename to tsc/pkg/pseudochecker/type.go index 8cbc43a8afb6a..7d5c059c4801c 100644 --- a/tsc/internal/pseudochecker/type.go +++ b/tsc/pkg/pseudochecker/type.go @@ -1,7 +1,7 @@ package pseudochecker import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" + "github.com/frida/TypeScript/tsc/pkg/ast" ) // `PseudoType`s are skeletons of types - partially interpreted expressions and type nodes diff --git a/tsc/internal/repo/paths.go b/tsc/pkg/repo/paths.go similarity index 100% rename from tsc/internal/repo/paths.go rename to tsc/pkg/repo/paths.go diff --git a/tsc/internal/scanner/regexp.go b/tsc/pkg/scanner/regexp.go similarity index 99% rename from tsc/internal/scanner/regexp.go rename to tsc/pkg/scanner/regexp.go index 0e83c1c589094..791bb50bd1347 100644 --- a/tsc/internal/scanner/regexp.go +++ b/tsc/pkg/scanner/regexp.go @@ -8,11 +8,11 @@ import ( "unicode/utf16" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type regularExpressionFlags int32 diff --git a/tsc/internal/scanner/scanner.go b/tsc/pkg/scanner/scanner.go similarity index 99% rename from tsc/internal/scanner/scanner.go rename to tsc/pkg/scanner/scanner.go index 55c81643836bc..2dc7d65b3ae14 100644 --- a/tsc/internal/scanner/scanner.go +++ b/tsc/pkg/scanner/scanner.go @@ -10,12 +10,12 @@ import ( "unicode/utf16" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type identifierVariant int32 diff --git a/tsc/internal/scanner/scanner_test.go b/tsc/pkg/scanner/scanner_test.go similarity index 95% rename from tsc/internal/scanner/scanner_test.go rename to tsc/pkg/scanner/scanner_test.go index 5c50a17fe0f59..6f930e8b64e28 100644 --- a/tsc/internal/scanner/scanner_test.go +++ b/tsc/pkg/scanner/scanner_test.go @@ -4,9 +4,9 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/stringutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/scanner/unicodeproperties.go b/tsc/pkg/scanner/unicodeproperties.go similarity index 99% rename from tsc/internal/scanner/unicodeproperties.go rename to tsc/pkg/scanner/unicodeproperties.go index d636ff1485106..9e36d35fde3ab 100644 --- a/tsc/internal/scanner/unicodeproperties.go +++ b/tsc/pkg/scanner/unicodeproperties.go @@ -1,6 +1,6 @@ package scanner -import "github.com/microsoft/TypeScript/tsc/internal/collections" +import "github.com/frida/TypeScript/tsc/pkg/collections" // Table 66: Non-binary Unicode property aliases and their canonical property names // https://tc39.es/ecma262/#table-nonbinary-unicode-properties diff --git a/tsc/internal/scanner/utilities.go b/tsc/pkg/scanner/utilities.go similarity index 94% rename from tsc/internal/scanner/utilities.go rename to tsc/pkg/scanner/utilities.go index 6a8ad06ef4ad7..6d5e558876f90 100644 --- a/tsc/internal/scanner/utilities.go +++ b/tsc/pkg/scanner/utilities.go @@ -5,10 +5,10 @@ import ( "unicode" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func tokenIsIdentifierOrKeyword(token ast.Kind) bool { diff --git a/tsc/internal/semver/version.go b/tsc/pkg/semver/version.go similarity index 100% rename from tsc/internal/semver/version.go rename to tsc/pkg/semver/version.go diff --git a/tsc/internal/semver/version_range.go b/tsc/pkg/semver/version_range.go similarity index 100% rename from tsc/internal/semver/version_range.go rename to tsc/pkg/semver/version_range.go diff --git a/tsc/internal/semver/version_range_test.go b/tsc/pkg/semver/version_range_test.go similarity index 100% rename from tsc/internal/semver/version_range_test.go rename to tsc/pkg/semver/version_range_test.go diff --git a/tsc/internal/semver/version_test.go b/tsc/pkg/semver/version_test.go similarity index 100% rename from tsc/internal/semver/version_test.go rename to tsc/pkg/semver/version_test.go diff --git a/tsc/internal/sourcemap/decoder.go b/tsc/pkg/sourcemap/decoder.go similarity index 99% rename from tsc/internal/sourcemap/decoder.go rename to tsc/pkg/sourcemap/decoder.go index 92ba756cddbc6..4f8983a431292 100644 --- a/tsc/internal/sourcemap/decoder.go +++ b/tsc/pkg/sourcemap/decoder.go @@ -4,7 +4,7 @@ import ( "errors" "iter" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) type Mapping struct { diff --git a/tsc/internal/sourcemap/generator.go b/tsc/pkg/sourcemap/generator.go similarity index 98% rename from tsc/internal/sourcemap/generator.go rename to tsc/pkg/sourcemap/generator.go index 33f0cbc897811..af5a45c35c830 100644 --- a/tsc/internal/sourcemap/generator.go +++ b/tsc/pkg/sourcemap/generator.go @@ -6,9 +6,9 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ( diff --git a/tsc/internal/sourcemap/generator_test.go b/tsc/pkg/sourcemap/generator_test.go similarity index 99% rename from tsc/internal/sourcemap/generator_test.go rename to tsc/pkg/sourcemap/generator_test.go index f429ec40f628f..987f2f45b3671 100644 --- a/tsc/internal/sourcemap/generator_test.go +++ b/tsc/pkg/sourcemap/generator_test.go @@ -3,7 +3,7 @@ package sourcemap import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/sourcemap/lineinfo.go b/tsc/pkg/sourcemap/lineinfo.go similarity index 90% rename from tsc/internal/sourcemap/lineinfo.go rename to tsc/pkg/sourcemap/lineinfo.go index 056c76f818a0f..90d565f249a50 100644 --- a/tsc/internal/sourcemap/lineinfo.go +++ b/tsc/pkg/sourcemap/lineinfo.go @@ -1,6 +1,6 @@ package sourcemap -import "github.com/microsoft/TypeScript/tsc/internal/core" +import "github.com/frida/TypeScript/tsc/pkg/core" type ECMALineInfo struct { text string diff --git a/tsc/internal/sourcemap/source.go b/tsc/pkg/sourcemap/source.go similarity index 65% rename from tsc/internal/sourcemap/source.go rename to tsc/pkg/sourcemap/source.go index 7bf167ef04061..f2cc0d792085b 100644 --- a/tsc/internal/sourcemap/source.go +++ b/tsc/pkg/sourcemap/source.go @@ -1,6 +1,6 @@ package sourcemap -import "github.com/microsoft/TypeScript/tsc/internal/core" +import "github.com/frida/TypeScript/tsc/pkg/core" type Source interface { Text() string diff --git a/tsc/internal/sourcemap/source_mapper.go b/tsc/pkg/sourcemap/source_mapper.go similarity index 96% rename from tsc/internal/sourcemap/source_mapper.go rename to tsc/pkg/sourcemap/source_mapper.go index d78db551780d0..69e31c96f8ebd 100644 --- a/tsc/internal/sourcemap/source_mapper.go +++ b/tsc/pkg/sourcemap/source_mapper.go @@ -5,12 +5,12 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type Host interface { diff --git a/tsc/internal/sourcemap/util.go b/tsc/pkg/sourcemap/util.go similarity index 92% rename from tsc/internal/sourcemap/util.go rename to tsc/pkg/sourcemap/util.go index ee5ed3490f9cd..6152b20d55e6f 100644 --- a/tsc/internal/sourcemap/util.go +++ b/tsc/pkg/sourcemap/util.go @@ -4,7 +4,7 @@ import ( "strings" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) // Tries to find the sourceMappingURL comment at the end of a file. diff --git a/tsc/internal/spanmap/spanmap.go b/tsc/pkg/spanmap/spanmap.go similarity index 99% rename from tsc/internal/spanmap/spanmap.go rename to tsc/pkg/spanmap/spanmap.go index 465fa24b386ec..38d73fbde92ca 100644 --- a/tsc/internal/spanmap/spanmap.go +++ b/tsc/pkg/spanmap/spanmap.go @@ -14,8 +14,8 @@ import ( "sort" "sync" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" ) // Kind describes how positions inside a segment relate the virtual span to the original span. diff --git a/tsc/internal/spanmap/spanmap_test.go b/tsc/pkg/spanmap/spanmap_test.go similarity index 99% rename from tsc/internal/spanmap/spanmap_test.go rename to tsc/pkg/spanmap/spanmap_test.go index f4902ca11214a..8ef3ac7e6eaeb 100644 --- a/tsc/internal/spanmap/spanmap_test.go +++ b/tsc/pkg/spanmap/spanmap_test.go @@ -3,8 +3,8 @@ package spanmap_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/spanmap" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/stringutil/_scripts/generate-unicode-data.mts b/tsc/pkg/stringutil/_scripts/generate-unicode-data.mts similarity index 100% rename from tsc/internal/stringutil/_scripts/generate-unicode-data.mts rename to tsc/pkg/stringutil/_scripts/generate-unicode-data.mts diff --git a/tsc/internal/stringutil/compare.go b/tsc/pkg/stringutil/compare.go similarity index 100% rename from tsc/internal/stringutil/compare.go rename to tsc/pkg/stringutil/compare.go diff --git a/tsc/internal/stringutil/generate.go b/tsc/pkg/stringutil/generate.go similarity index 100% rename from tsc/internal/stringutil/generate.go rename to tsc/pkg/stringutil/generate.go diff --git a/tsc/internal/stringutil/identifier.go b/tsc/pkg/stringutil/identifier.go similarity index 100% rename from tsc/internal/stringutil/identifier.go rename to tsc/pkg/stringutil/identifier.go diff --git a/tsc/internal/stringutil/identifier_parts_generated.go b/tsc/pkg/stringutil/identifier_parts_generated.go similarity index 100% rename from tsc/internal/stringutil/identifier_parts_generated.go rename to tsc/pkg/stringutil/identifier_parts_generated.go diff --git a/tsc/internal/stringutil/js_case.go b/tsc/pkg/stringutil/js_case.go similarity index 100% rename from tsc/internal/stringutil/js_case.go rename to tsc/pkg/stringutil/js_case.go diff --git a/tsc/internal/stringutil/js_case_generated.go b/tsc/pkg/stringutil/js_case_generated.go similarity index 100% rename from tsc/internal/stringutil/js_case_generated.go rename to tsc/pkg/stringutil/js_case_generated.go diff --git a/tsc/internal/stringutil/js_case_test.go b/tsc/pkg/stringutil/js_case_test.go similarity index 100% rename from tsc/internal/stringutil/js_case_test.go rename to tsc/pkg/stringutil/js_case_test.go diff --git a/tsc/internal/stringutil/util.go b/tsc/pkg/stringutil/util.go similarity index 100% rename from tsc/internal/stringutil/util.go rename to tsc/pkg/stringutil/util.go diff --git a/tsc/internal/stringutil/util_test.go b/tsc/pkg/stringutil/util_test.go similarity index 100% rename from tsc/internal/stringutil/util_test.go rename to tsc/pkg/stringutil/util_test.go diff --git a/tsc/internal/symlinks/knownsymlinks.go b/tsc/pkg/symlinks/knownsymlinks.go similarity index 95% rename from tsc/internal/symlinks/knownsymlinks.go rename to tsc/pkg/symlinks/knownsymlinks.go index 107a5cb35b2d4..9fee6714514d6 100644 --- a/tsc/internal/symlinks/knownsymlinks.go +++ b/tsc/pkg/symlinks/knownsymlinks.go @@ -3,11 +3,11 @@ package symlinks import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type KnownDirectoryLink struct { diff --git a/tsc/internal/symlinks/knownsymlinks_bench_test.go b/tsc/pkg/symlinks/knownsymlinks_bench_test.go similarity index 97% rename from tsc/internal/symlinks/knownsymlinks_bench_test.go rename to tsc/pkg/symlinks/knownsymlinks_bench_test.go index 8718f3a8e0779..cd953e4a5f6b8 100644 --- a/tsc/internal/symlinks/knownsymlinks_bench_test.go +++ b/tsc/pkg/symlinks/knownsymlinks_bench_test.go @@ -3,7 +3,7 @@ package symlinks import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func BenchmarkPopulateSymlinksFromResolutions(b *testing.B) { diff --git a/tsc/internal/symlinks/knownsymlinks_test.go b/tsc/pkg/symlinks/knownsymlinks_test.go similarity index 97% rename from tsc/internal/symlinks/knownsymlinks_test.go rename to tsc/pkg/symlinks/knownsymlinks_test.go index 1defc39704d18..4e7f8fb9d52a3 100644 --- a/tsc/internal/symlinks/knownsymlinks_test.go +++ b/tsc/pkg/symlinks/knownsymlinks_test.go @@ -3,10 +3,10 @@ package symlinks import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func TestNewKnownSymlink(t *testing.T) { diff --git a/tsc/internal/testrunner/compiler_runner.go b/tsc/pkg/testrunner/compiler_runner.go similarity index 96% rename from tsc/internal/testrunner/compiler_runner.go rename to tsc/pkg/testrunner/compiler_runner.go index 06d3a939b7185..d580948de4833 100644 --- a/tsc/internal/testrunner/compiler_runner.go +++ b/tsc/pkg/testrunner/compiler_runner.go @@ -10,17 +10,17 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/tsbaseline" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/tsbaseline" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testrunner/compiler_runner_test.go b/tsc/pkg/testrunner/compiler_runner_test.go similarity index 81% rename from tsc/internal/testrunner/compiler_runner_test.go rename to tsc/pkg/testrunner/compiler_runner_test.go index 11d0cfd4f0f46..139fdeb9804ee 100644 --- a/tsc/internal/testrunner/compiler_runner_test.go +++ b/tsc/pkg/testrunner/compiler_runner_test.go @@ -3,9 +3,9 @@ package testrunner import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testrunner/runner.go b/tsc/pkg/testrunner/runner.go similarity index 100% rename from tsc/internal/testrunner/runner.go rename to tsc/pkg/testrunner/runner.go diff --git a/tsc/internal/testrunner/test_case_parser.go b/tsc/pkg/testrunner/test_case_parser.go similarity index 95% rename from tsc/internal/testrunner/test_case_parser.go rename to tsc/pkg/testrunner/test_case_parser.go index 192c4de96b601..daab29dbd2e60 100644 --- a/tsc/internal/testrunner/test_case_parser.go +++ b/tsc/pkg/testrunner/test_case_parser.go @@ -5,14 +5,14 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions/tsoptionstest" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tsoptions/tsoptionstest" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var lineDelimiter = regexp.MustCompile("\r?\n") diff --git a/tsc/internal/testrunner/test_case_parser_test.go b/tsc/pkg/testrunner/test_case_parser_test.go similarity index 100% rename from tsc/internal/testrunner/test_case_parser_test.go rename to tsc/pkg/testrunner/test_case_parser_test.go diff --git a/tsc/internal/testrunner/testmain_test.go b/tsc/pkg/testrunner/testmain_test.go similarity index 54% rename from tsc/internal/testrunner/testmain_test.go rename to tsc/pkg/testrunner/testmain_test.go index 6ac7ddd6c2493..5e739f9e07f43 100644 --- a/tsc/internal/testrunner/testmain_test.go +++ b/tsc/pkg/testrunner/testmain_test.go @@ -3,8 +3,8 @@ package testrunner import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/testrunner/transpile_runner.go b/tsc/pkg/testrunner/transpile_runner.go similarity index 90% rename from tsc/internal/testrunner/transpile_runner.go rename to tsc/pkg/testrunner/transpile_runner.go index ea991ec88caba..08dbb6ea74f0c 100644 --- a/tsc/internal/testrunner/transpile_runner.go +++ b/tsc/pkg/testrunner/transpile_runner.go @@ -8,15 +8,15 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/tsbaseline" - "github.com/microsoft/TypeScript/tsc/internal/transpile" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/tsbaseline" + "github.com/frida/TypeScript/tsc/pkg/transpile" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" ) var transpileBaselineRegex = regexp.MustCompile(`\.[cm]?[tj]sx?$`) diff --git a/tsc/internal/testrunner/transpile_runner_test.go b/tsc/pkg/testrunner/transpile_runner_test.go similarity index 100% rename from tsc/internal/testrunner/transpile_runner_test.go rename to tsc/pkg/testrunner/transpile_runner_test.go diff --git a/tsc/internal/testutil/autoimporttestutil/fixtures.go b/tsc/pkg/testutil/autoimporttestutil/fixtures.go similarity index 98% rename from tsc/internal/testutil/autoimporttestutil/fixtures.go rename to tsc/pkg/testutil/autoimporttestutil/fixtures.go index 845080c5ee7dd..74c4957ffdd5d 100644 --- a/tsc/internal/testutil/autoimporttestutil/fixtures.go +++ b/tsc/pkg/testutil/autoimporttestutil/fixtures.go @@ -7,12 +7,12 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ls/lsconv" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/testutil/projecttestutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ls/lsconv" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/testutil/projecttestutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) // FileHandle represents a file created for an autoimport lifecycle test. diff --git a/tsc/internal/testutil/baseline/baseline.go b/tsc/pkg/testutil/baseline/baseline.go similarity index 95% rename from tsc/internal/testutil/baseline/baseline.go rename to tsc/pkg/testutil/baseline/baseline.go index 539728ce16579..2155b52469e3e 100644 --- a/tsc/internal/testutil/baseline/baseline.go +++ b/tsc/pkg/testutil/baseline/baseline.go @@ -6,8 +6,8 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/stringutil" "github.com/peter-evans/patience" ) diff --git a/tsc/internal/testutil/baseline/testmain.go b/tsc/pkg/testutil/baseline/testmain.go similarity index 97% rename from tsc/internal/testutil/baseline/testmain.go rename to tsc/pkg/testutil/baseline/testmain.go index 2828a177bf29e..e6e4481ecd642 100644 --- a/tsc/internal/testutil/baseline/testmain.go +++ b/tsc/pkg/testutil/baseline/testmain.go @@ -9,7 +9,7 @@ import ( "runtime" "testing" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) var ( diff --git a/tsc/internal/testutil/contentmappertest/component.go b/tsc/pkg/testutil/contentmappertest/component.go similarity index 95% rename from tsc/internal/testutil/contentmappertest/component.go rename to tsc/pkg/testutil/contentmappertest/component.go index 7da16c276f944..0a57922458914 100644 --- a/tsc/internal/testutil/contentmappertest/component.go +++ b/tsc/pkg/testutil/contentmappertest/component.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type componentHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/diagnostic_code_collision.go b/tsc/pkg/testutil/contentmappertest/diagnostic_code_collision.go similarity index 86% rename from tsc/internal/testutil/contentmappertest/diagnostic_code_collision.go rename to tsc/pkg/testutil/contentmappertest/diagnostic_code_collision.go index 481fc5bcf19f2..c6a1fcfffa5e8 100644 --- a/tsc/internal/testutil/contentmappertest/diagnostic_code_collision.go +++ b/tsc/pkg/testutil/contentmappertest/diagnostic_code_collision.go @@ -5,9 +5,9 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" ) type diagnosticCodeCollisionHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/duplicate.go b/tsc/pkg/testutil/contentmappertest/duplicate.go similarity index 96% rename from tsc/internal/testutil/contentmappertest/duplicate.go rename to tsc/pkg/testutil/contentmappertest/duplicate.go index 2ccd70b3fe3da..1bd7eb8405891 100644 --- a/tsc/internal/testutil/contentmappertest/duplicate.go +++ b/tsc/pkg/testutil/contentmappertest/duplicate.go @@ -5,10 +5,10 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type duplicateHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/duplicate_projection.go b/tsc/pkg/testutil/contentmappertest/duplicate_projection.go similarity index 91% rename from tsc/internal/testutil/contentmappertest/duplicate_projection.go rename to tsc/pkg/testutil/contentmappertest/duplicate_projection.go index 89acee5578398..1277c5a075e6d 100644 --- a/tsc/internal/testutil/contentmappertest/duplicate_projection.go +++ b/tsc/pkg/testutil/contentmappertest/duplicate_projection.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) // duplicateProjectionHandler emits the original content as both the canonical output and a supplemental diff --git a/tsc/internal/testutil/contentmappertest/dynamic_verbatim.go b/tsc/pkg/testutil/contentmappertest/dynamic_verbatim.go similarity index 91% rename from tsc/internal/testutil/contentmappertest/dynamic_verbatim.go rename to tsc/pkg/testutil/contentmappertest/dynamic_verbatim.go index 37e57c5b42e37..6644638f4e643 100644 --- a/tsc/internal/testutil/contentmappertest/dynamic_verbatim.go +++ b/tsc/pkg/testutil/contentmappertest/dynamic_verbatim.go @@ -5,9 +5,9 @@ import ( "errors" "sync/atomic" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // ProjectLifecycle records mapper project protocol calls. diff --git a/tsc/internal/testutil/contentmappertest/editing.go b/tsc/pkg/testutil/contentmappertest/editing.go similarity index 96% rename from tsc/internal/testutil/contentmappertest/editing.go rename to tsc/pkg/testutil/contentmappertest/editing.go index b3db5a3db234e..012eb84e27823 100644 --- a/tsc/internal/testutil/contentmappertest/editing.go +++ b/tsc/pkg/testutil/contentmappertest/editing.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type prefixedSupplementalHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/failing.go b/tsc/pkg/testutil/contentmappertest/failing.go similarity index 81% rename from tsc/internal/testutil/contentmappertest/failing.go rename to tsc/pkg/testutil/contentmappertest/failing.go index 0d32740978421..211a0a1144dda 100644 --- a/tsc/internal/testutil/contentmappertest/failing.go +++ b/tsc/pkg/testutil/contentmappertest/failing.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) type failingHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/hoisting.go b/tsc/pkg/testutil/contentmappertest/hoisting.go similarity index 94% rename from tsc/internal/testutil/contentmappertest/hoisting.go rename to tsc/pkg/testutil/contentmappertest/hoisting.go index 1a6ec220c5958..f10d3aef2decb 100644 --- a/tsc/internal/testutil/contentmappertest/hoisting.go +++ b/tsc/pkg/testutil/contentmappertest/hoisting.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type hoistingHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/lisp.go b/tsc/pkg/testutil/contentmappertest/lisp.go similarity index 89% rename from tsc/internal/testutil/contentmappertest/lisp.go rename to tsc/pkg/testutil/contentmappertest/lisp.go index 97f8c174987be..0c57ee5a1a288 100644 --- a/tsc/internal/testutil/contentmappertest/lisp.go +++ b/tsc/pkg/testutil/contentmappertest/lisp.go @@ -5,9 +5,9 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type lispHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/manifest.go b/tsc/pkg/testutil/contentmappertest/manifest.go similarity index 100% rename from tsc/internal/testutil/contentmappertest/manifest.go rename to tsc/pkg/testutil/contentmappertest/manifest.go diff --git a/tsc/internal/testutil/contentmappertest/mapper_test.go b/tsc/pkg/testutil/contentmappertest/mapper_test.go similarity index 93% rename from tsc/internal/testutil/contentmappertest/mapper_test.go rename to tsc/pkg/testutil/contentmappertest/mapper_test.go index fbad19ddefb4d..2344ac86d6880 100644 --- a/tsc/internal/testutil/contentmappertest/mapper_test.go +++ b/tsc/pkg/testutil/contentmappertest/mapper_test.go @@ -8,10 +8,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testutil/contentmappertest/protocol.go b/tsc/pkg/testutil/contentmappertest/protocol.go similarity index 89% rename from tsc/internal/testutil/contentmappertest/protocol.go rename to tsc/pkg/testutil/contentmappertest/protocol.go index acff7f602f83a..87144e3479863 100644 --- a/tsc/internal/testutil/contentmappertest/protocol.go +++ b/tsc/pkg/testutil/contentmappertest/protocol.go @@ -4,11 +4,11 @@ package contentmappertest import ( "context" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type noNotifications struct{} diff --git a/tsc/internal/testutil/contentmappertest/registry.go b/tsc/pkg/testutil/contentmappertest/registry.go similarity index 98% rename from tsc/internal/testutil/contentmappertest/registry.go rename to tsc/pkg/testutil/contentmappertest/registry.go index 8526dd7b68784..c733451fde255 100644 --- a/tsc/internal/testutil/contentmappertest/registry.go +++ b/tsc/pkg/testutil/contentmappertest/registry.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/ipc" + "github.com/frida/TypeScript/tsc/pkg/ipc" ) const ( diff --git a/tsc/internal/testutil/contentmappertest/spawner.go b/tsc/pkg/testutil/contentmappertest/spawner.go similarity index 91% rename from tsc/internal/testutil/contentmappertest/spawner.go rename to tsc/pkg/testutil/contentmappertest/spawner.go index 6e14f7597d6ac..fea9d5739d79e 100644 --- a/tsc/internal/testutil/contentmappertest/spawner.go +++ b/tsc/pkg/testutil/contentmappertest/spawner.go @@ -5,8 +5,8 @@ import ( "io" "net" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/ipc" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/ipc" ) // Serve drives the transforming mapper over the connection until it closes or ctx is cancelled. diff --git a/tsc/internal/testutil/contentmappertest/supplemental.go b/tsc/pkg/testutil/contentmappertest/supplemental.go similarity index 88% rename from tsc/internal/testutil/contentmappertest/supplemental.go rename to tsc/pkg/testutil/contentmappertest/supplemental.go index 599ed258e8a7a..da62ed163b1db 100644 --- a/tsc/internal/testutil/contentmappertest/supplemental.go +++ b/tsc/pkg/testutil/contentmappertest/supplemental.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) type supplementalHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/supplemental_diagnostics.go b/tsc/pkg/testutil/contentmappertest/supplemental_diagnostics.go similarity index 85% rename from tsc/internal/testutil/contentmappertest/supplemental_diagnostics.go rename to tsc/pkg/testutil/contentmappertest/supplemental_diagnostics.go index 6ba9b509501d8..03e4aab754702 100644 --- a/tsc/internal/testutil/contentmappertest/supplemental_diagnostics.go +++ b/tsc/pkg/testutil/contentmappertest/supplemental_diagnostics.go @@ -4,10 +4,10 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) type supplementalDiagnosticsHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/supplemental_globals.go b/tsc/pkg/testutil/contentmappertest/supplemental_globals.go similarity index 91% rename from tsc/internal/testutil/contentmappertest/supplemental_globals.go rename to tsc/pkg/testutil/contentmappertest/supplemental_globals.go index 61ea039af034f..cd369df9586f5 100644 --- a/tsc/internal/testutil/contentmappertest/supplemental_globals.go +++ b/tsc/pkg/testutil/contentmappertest/supplemental_globals.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) type supplementalGlobalsHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/supplemental_module.go b/tsc/pkg/testutil/contentmappertest/supplemental_module.go similarity index 88% rename from tsc/internal/testutil/contentmappertest/supplemental_module.go rename to tsc/pkg/testutil/contentmappertest/supplemental_module.go index 44a89b11497a7..62fc14cb92aee 100644 --- a/tsc/internal/testutil/contentmappertest/supplemental_module.go +++ b/tsc/pkg/testutil/contentmappertest/supplemental_module.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) type supplementalModuleHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/contentmappertest/synthesizing.go b/tsc/pkg/testutil/contentmappertest/synthesizing.go similarity index 83% rename from tsc/internal/testutil/contentmappertest/synthesizing.go rename to tsc/pkg/testutil/contentmappertest/synthesizing.go index 7c79dfa34b822..00354f9fba795 100644 --- a/tsc/internal/testutil/contentmappertest/synthesizing.go +++ b/tsc/pkg/testutil/contentmappertest/synthesizing.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) const synthesizedOutput = "export const el = jsxRuntime(Widget);\n" diff --git a/tsc/internal/testutil/contentmappertest/transforming.go b/tsc/pkg/testutil/contentmappertest/transforming.go similarity index 96% rename from tsc/internal/testutil/contentmappertest/transforming.go rename to tsc/pkg/testutil/contentmappertest/transforming.go index 41da490b47e5b..4ebab4dd8b002 100644 --- a/tsc/internal/testutil/contentmappertest/transforming.go +++ b/tsc/pkg/testutil/contentmappertest/transforming.go @@ -6,12 +6,12 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/ipc" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/spanmap" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/ipc" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/spanmap" ) const preamble = "const __VERSION = \"1.0.0\";\n" diff --git a/tsc/internal/testutil/contentmappertest/verbatim.go b/tsc/pkg/testutil/contentmappertest/verbatim.go similarity index 92% rename from tsc/internal/testutil/contentmappertest/verbatim.go rename to tsc/pkg/testutil/contentmappertest/verbatim.go index afa8368a47d0e..455d91b8a855c 100644 --- a/tsc/internal/testutil/contentmappertest/verbatim.go +++ b/tsc/pkg/testutil/contentmappertest/verbatim.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/json" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/json" ) type verbatimHandler struct{ noNotifications } diff --git a/tsc/internal/testutil/emittestutil/emittestutil.go b/tsc/pkg/testutil/emittestutil/emittestutil.go similarity index 75% rename from tsc/internal/testutil/emittestutil/emittestutil.go rename to tsc/pkg/testutil/emittestutil/emittestutil.go index 93800e2dd64f9..1885dc270a940 100644 --- a/tsc/internal/testutil/emittestutil/emittestutil.go +++ b/tsc/pkg/testutil/emittestutil/emittestutil.go @@ -4,10 +4,10 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testutil/filefixture/filefixture.go b/tsc/pkg/testutil/filefixture/filefixture.go similarity index 100% rename from tsc/internal/testutil/filefixture/filefixture.go rename to tsc/pkg/testutil/filefixture/filefixture.go diff --git a/tsc/internal/testutil/fixtures/benchfixtures.go b/tsc/pkg/testutil/fixtures/benchfixtures.go similarity index 84% rename from tsc/internal/testutil/fixtures/benchfixtures.go rename to tsc/pkg/testutil/fixtures/benchfixtures.go index f4b5719db3512..2d286e7907cf5 100644 --- a/tsc/internal/testutil/fixtures/benchfixtures.go +++ b/tsc/pkg/testutil/fixtures/benchfixtures.go @@ -3,8 +3,8 @@ package fixtures import ( "path/filepath" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil/filefixture" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil/filefixture" ) var BenchFixtures = []filefixture.Fixture{ diff --git a/tsc/internal/testutil/fsbaselineutil/differ.go b/tsc/pkg/testutil/fsbaselineutil/differ.go similarity index 96% rename from tsc/internal/testutil/fsbaselineutil/differ.go rename to tsc/pkg/testutil/fsbaselineutil/differ.go index 07d217d2c6ade..fe34856cf0b9c 100644 --- a/tsc/internal/testutil/fsbaselineutil/differ.go +++ b/tsc/pkg/testutil/fsbaselineutil/differ.go @@ -10,9 +10,9 @@ import ( "strings" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) type DiffEntry struct { diff --git a/tsc/internal/testutil/harnessutil/harnessutil.go b/tsc/pkg/testutil/harnessutil/harnessutil.go similarity index 97% rename from tsc/internal/testutil/harnessutil/harnessutil.go rename to tsc/pkg/testutil/harnessutil/harnessutil.go index 0b46a9a7a7cd7..53da6d2ea3906 100644 --- a/tsc/internal/testutil/harnessutil/harnessutil.go +++ b/tsc/pkg/testutil/harnessutil/harnessutil.go @@ -16,25 +16,25 @@ import ( "testing" "testing/fstest" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/execute/incremental" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/contentmappertest" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/execute/incremental" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/contentmappertest" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) // Posix-style path to additional test libraries diff --git a/tsc/internal/testutil/harnessutil/recorderfs.go b/tsc/pkg/testutil/harnessutil/recorderfs.go similarity index 94% rename from tsc/internal/testutil/harnessutil/recorderfs.go rename to tsc/pkg/testutil/harnessutil/recorderfs.go index 33e78294b2605..c198d8cf12d40 100644 --- a/tsc/internal/testutil/harnessutil/recorderfs.go +++ b/tsc/pkg/testutil/harnessutil/recorderfs.go @@ -4,7 +4,7 @@ import ( "slices" "sync" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type OutputRecorderFS struct { diff --git a/tsc/internal/testutil/harnessutil/sourcemap_recorder.go b/tsc/pkg/testutil/harnessutil/sourcemap_recorder.go similarity index 97% rename from tsc/internal/testutil/harnessutil/sourcemap_recorder.go rename to tsc/pkg/testutil/harnessutil/sourcemap_recorder.go index 0610c6c43ae98..14b5aac5f0bd4 100644 --- a/tsc/internal/testutil/harnessutil/sourcemap_recorder.go +++ b/tsc/pkg/testutil/harnessutil/sourcemap_recorder.go @@ -6,11 +6,11 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type writerAggregator struct { diff --git a/tsc/internal/testutil/jstest/node.go b/tsc/pkg/testutil/jstest/node.go similarity index 94% rename from tsc/internal/testutil/jstest/node.go rename to tsc/pkg/testutil/jstest/node.go index 0fd5372ea79e1..26aa2b7bffe0b 100644 --- a/tsc/internal/testutil/jstest/node.go +++ b/tsc/pkg/testutil/jstest/node.go @@ -8,9 +8,9 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) const loaderScript = `import script from "./script.mjs"; diff --git a/tsc/internal/testutil/lsptestutil/lspclient.go b/tsc/pkg/testutil/lsptestutil/lspclient.go similarity index 97% rename from tsc/internal/testutil/lsptestutil/lspclient.go rename to tsc/pkg/testutil/lsptestutil/lspclient.go index f6d6045611fab..12e0ad3b60073 100644 --- a/tsc/internal/testutil/lsptestutil/lspclient.go +++ b/tsc/pkg/testutil/lsptestutil/lspclient.go @@ -8,11 +8,11 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/jsonrpc" - "github.com/microsoft/TypeScript/tsc/internal/lsp" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/jsonrpc" + "github.com/frida/TypeScript/tsc/pkg/lsp" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" "golang.org/x/sync/errgroup" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testutil/parsetestutil/parsetestutil.go b/tsc/pkg/testutil/parsetestutil/parsetestutil.go similarity index 89% rename from tsc/internal/testutil/parsetestutil/parsetestutil.go rename to tsc/pkg/testutil/parsetestutil/parsetestutil.go index 30be71e8ad338..f29108a394751 100644 --- a/tsc/internal/testutil/parsetestutil/parsetestutil.go +++ b/tsc/pkg/testutil/parsetestutil/parsetestutil.go @@ -4,11 +4,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Simplifies parsing an input string into a SourceFile for testing purposes. diff --git a/tsc/internal/testutil/projecttestutil/clientmock_generated.go b/tsc/pkg/testutil/projecttestutil/clientmock_generated.go similarity index 98% rename from tsc/internal/testutil/projecttestutil/clientmock_generated.go rename to tsc/pkg/testutil/projecttestutil/clientmock_generated.go index ccd0d4dd437d3..36daf64d6981a 100644 --- a/tsc/internal/testutil/projecttestutil/clientmock_generated.go +++ b/tsc/pkg/testutil/projecttestutil/clientmock_generated.go @@ -7,10 +7,10 @@ import ( "context" "sync" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" ) // Ensure, that ClientMock does implement project.Client. diff --git a/tsc/internal/testutil/projecttestutil/npmexecutormock_generated.go b/tsc/pkg/testutil/projecttestutil/npmexecutormock_generated.go similarity index 97% rename from tsc/internal/testutil/projecttestutil/npmexecutormock_generated.go rename to tsc/pkg/testutil/projecttestutil/npmexecutormock_generated.go index ebe897f8b1e50..396eda4baaa71 100644 --- a/tsc/internal/testutil/projecttestutil/npmexecutormock_generated.go +++ b/tsc/pkg/testutil/projecttestutil/npmexecutormock_generated.go @@ -6,7 +6,7 @@ package projecttestutil import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/project/ata" + "github.com/frida/TypeScript/tsc/pkg/project/ata" ) // Ensure, that NpmExecutorMock does implement ata.NpmExecutor. diff --git a/tsc/internal/testutil/projecttestutil/projecttestutil.go b/tsc/pkg/testutil/projecttestutil/projecttestutil.go similarity index 93% rename from tsc/internal/testutil/projecttestutil/projecttestutil.go rename to tsc/pkg/testutil/projecttestutil/projecttestutil.go index ca1af7fb7edae..3f73223e08291 100644 --- a/tsc/internal/testutil/projecttestutil/projecttestutil.go +++ b/tsc/pkg/testutil/projecttestutil/projecttestutil.go @@ -9,18 +9,18 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/bundled" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/glob" - "github.com/microsoft/TypeScript/tsc/internal/lsp/lsproto" - "github.com/microsoft/TypeScript/tsc/internal/project" - "github.com/microsoft/TypeScript/tsc/internal/project/logging" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/bundled" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/glob" + "github.com/frida/TypeScript/tsc/pkg/lsp/lsproto" + "github.com/frida/TypeScript/tsc/pkg/project" + "github.com/frida/TypeScript/tsc/pkg/project/logging" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) //go:generate go tool github.com/matryer/moq -stub -fmt goimports -pkg projecttestutil -out clientmock_generated.go ../../project Client diff --git a/tsc/internal/testutil/race/norace.go b/tsc/pkg/testutil/race/norace.go similarity index 100% rename from tsc/internal/testutil/race/norace.go rename to tsc/pkg/testutil/race/norace.go diff --git a/tsc/internal/testutil/race/race.go b/tsc/pkg/testutil/race/race.go similarity index 100% rename from tsc/internal/testutil/race/race.go rename to tsc/pkg/testutil/race/race.go diff --git a/tsc/internal/testutil/stringtestutil/stringtestutil.go b/tsc/pkg/testutil/stringtestutil/stringtestutil.go similarity index 95% rename from tsc/internal/testutil/stringtestutil/stringtestutil.go rename to tsc/pkg/testutil/stringtestutil/stringtestutil.go index 26997aac7614e..d4c8ae5e4dc4b 100644 --- a/tsc/internal/testutil/stringtestutil/stringtestutil.go +++ b/tsc/pkg/testutil/stringtestutil/stringtestutil.go @@ -3,7 +3,7 @@ package stringtestutil import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) func Dedent(text string) string { diff --git a/tsc/internal/testutil/testutil.go b/tsc/pkg/testutil/testutil.go similarity index 93% rename from tsc/internal/testutil/testutil.go rename to tsc/pkg/testutil/testutil.go index 9aa3c7a8abc0a..0855b98bb37fb 100644 --- a/tsc/internal/testutil/testutil.go +++ b/tsc/pkg/testutil/testutil.go @@ -7,7 +7,7 @@ import ( "sync" "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil/race" + "github.com/frida/TypeScript/tsc/pkg/testutil/race" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/testutil/tsbaseline/contentmapper_baseline.go b/tsc/pkg/testutil/tsbaseline/contentmapper_baseline.go similarity index 90% rename from tsc/internal/testutil/tsbaseline/contentmapper_baseline.go rename to tsc/pkg/testutil/tsbaseline/contentmapper_baseline.go index 18585d5e1d880..6d24f2eafcb12 100644 --- a/tsc/internal/testutil/tsbaseline/contentmapper_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/contentmapper_baseline.go @@ -6,11 +6,11 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) var ansiEscape = regexp.MustCompile("\x1b\\[[0-9;]*m") diff --git a/tsc/internal/testutil/tsbaseline/error_baseline.go b/tsc/pkg/testutil/tsbaseline/error_baseline.go similarity index 96% rename from tsc/internal/testutil/tsbaseline/error_baseline.go rename to tsc/pkg/testutil/tsbaseline/error_baseline.go index 9ab14f23a5bcb..3d3a60556501b 100644 --- a/tsc/internal/testutil/tsbaseline/error_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/error_baseline.go @@ -9,13 +9,13 @@ import ( "testing" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" "gotest.tools/v3/assert/cmp" ) diff --git a/tsc/internal/testutil/tsbaseline/js_emit_baseline.go b/tsc/pkg/testutil/tsbaseline/js_emit_baseline.go similarity index 94% rename from tsc/internal/testutil/tsbaseline/js_emit_baseline.go rename to tsc/pkg/testutil/tsbaseline/js_emit_baseline.go index aaee3fb601fdd..3cf9785c12fc4 100644 --- a/tsc/internal/testutil/tsbaseline/js_emit_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/js_emit_baseline.go @@ -5,16 +5,16 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func DoJSEmitBaseline( diff --git a/tsc/internal/testutil/tsbaseline/module_resolution_baseline.go b/tsc/pkg/testutil/tsbaseline/module_resolution_baseline.go similarity index 85% rename from tsc/internal/testutil/tsbaseline/module_resolution_baseline.go rename to tsc/pkg/testutil/tsbaseline/module_resolution_baseline.go index 093619c24b6ab..efe3176d4533c 100644 --- a/tsc/internal/testutil/tsbaseline/module_resolution_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/module_resolution_baseline.go @@ -3,7 +3,7 @@ package tsbaseline import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func DoModuleResolutionBaseline(t *testing.T, baselinePath string, trace string, opts baseline.Options) { diff --git a/tsc/internal/testutil/tsbaseline/sourcemap_baseline.go b/tsc/pkg/testutil/tsbaseline/sourcemap_baseline.go similarity index 91% rename from tsc/internal/testutil/tsbaseline/sourcemap_baseline.go rename to tsc/pkg/testutil/tsbaseline/sourcemap_baseline.go index b453e45984451..e87a7add0a7f6 100644 --- a/tsc/internal/testutil/tsbaseline/sourcemap_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/sourcemap_baseline.go @@ -7,12 +7,12 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/sourcemap" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/sourcemap" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func DoSourcemapBaseline( diff --git a/tsc/internal/testutil/tsbaseline/sourcemap_record_baseline.go b/tsc/pkg/testutil/tsbaseline/sourcemap_record_baseline.go similarity index 77% rename from tsc/internal/testutil/tsbaseline/sourcemap_record_baseline.go rename to tsc/pkg/testutil/tsbaseline/sourcemap_record_baseline.go index cd97241f5f60a..c26db9382c7b9 100644 --- a/tsc/internal/testutil/tsbaseline/sourcemap_record_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/sourcemap_record_baseline.go @@ -3,10 +3,10 @@ package tsbaseline import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func DoSourcemapRecordBaseline( diff --git a/tsc/internal/testutil/tsbaseline/type_symbol_baseline.go b/tsc/pkg/testutil/tsbaseline/type_symbol_baseline.go similarity index 96% rename from tsc/internal/testutil/tsbaseline/type_symbol_baseline.go rename to tsc/pkg/testutil/tsbaseline/type_symbol_baseline.go index 9ca5aa86771f9..cfb8e050ed2f5 100644 --- a/tsc/internal/testutil/tsbaseline/type_symbol_baseline.go +++ b/tsc/pkg/testutil/tsbaseline/type_symbol_baseline.go @@ -8,17 +8,17 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/harnessutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/harnessutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var ( diff --git a/tsc/internal/testutil/tsbaseline/util.go b/tsc/pkg/testutil/tsbaseline/util.go similarity index 97% rename from tsc/internal/testutil/tsbaseline/util.go rename to tsc/pkg/testutil/tsbaseline/util.go index 2481e5b118ddd..03bbf6cb3be30 100644 --- a/tsc/internal/testutil/tsbaseline/util.go +++ b/tsc/pkg/testutil/tsbaseline/util.go @@ -4,7 +4,7 @@ import ( "regexp" "strings" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var ( diff --git a/tsc/internal/tracing/tracing.go b/tsc/pkg/tracing/tracing.go similarity index 98% rename from tsc/internal/tracing/tracing.go rename to tsc/pkg/tracing/tracing.go index dc3968b10e457..5eb9dc09c1d30 100644 --- a/tsc/internal/tracing/tracing.go +++ b/tsc/pkg/tracing/tracing.go @@ -11,11 +11,11 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" "github.com/zeebo/xxh3" ) diff --git a/tsc/internal/tracing/tracing_test.go b/tsc/pkg/tracing/tracing_test.go similarity index 97% rename from tsc/internal/tracing/tracing_test.go rename to tsc/pkg/tracing/tracing_test.go index 233fda63ba3fb..e0846c1f9f7ea 100644 --- a/tsc/internal/tracing/tracing_test.go +++ b/tsc/pkg/tracing/tracing_test.go @@ -5,8 +5,8 @@ import ( "testing" "testing/fstest" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/transformers/chain.go b/tsc/pkg/transformers/chain.go similarity index 88% rename from tsc/internal/transformers/chain.go rename to tsc/pkg/transformers/chain.go index d57af5e9947b1..858441ffd6010 100644 --- a/tsc/internal/transformers/chain.go +++ b/tsc/pkg/transformers/chain.go @@ -1,10 +1,10 @@ package transformers import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" ) type chainedTransformer struct { diff --git a/tsc/internal/transformers/declarations/diagnostics.go b/tsc/pkg/transformers/declarations/diagnostics.go similarity index 99% rename from tsc/internal/transformers/declarations/diagnostics.go rename to tsc/pkg/transformers/declarations/diagnostics.go index 9b2d45476a354..c87e6ba3b84ab 100644 --- a/tsc/internal/transformers/declarations/diagnostics.go +++ b/tsc/pkg/transformers/declarations/diagnostics.go @@ -1,10 +1,10 @@ package declarations import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) type GetSymbolAccessibilityDiagnostic = func(symbolAccessibilityResult printer.SymbolAccessibilityResult) *SymbolAccessibilityDiagnostic diff --git a/tsc/internal/transformers/declarations/supplementalreferences.go b/tsc/pkg/transformers/declarations/supplementalreferences.go similarity index 92% rename from tsc/internal/transformers/declarations/supplementalreferences.go rename to tsc/pkg/transformers/declarations/supplementalreferences.go index 3896126b034f6..db8d8027e431b 100644 --- a/tsc/internal/transformers/declarations/supplementalreferences.go +++ b/tsc/pkg/transformers/declarations/supplementalreferences.go @@ -1,9 +1,9 @@ package declarations import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // SupplementalReferencesTransformer adds triple-slash path references from a content mapper's diff --git a/tsc/internal/transformers/declarations/tracker.go b/tsc/pkg/transformers/declarations/tracker.go similarity index 97% rename from tsc/internal/transformers/declarations/tracker.go rename to tsc/pkg/transformers/declarations/tracker.go index 615d7c698150c..9b44347ec22e8 100644 --- a/tsc/internal/transformers/declarations/tracker.go +++ b/tsc/pkg/transformers/declarations/tracker.go @@ -1,12 +1,12 @@ package declarations import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) type SymbolTrackerImpl struct { diff --git a/tsc/internal/transformers/declarations/transform.go b/tsc/pkg/transformers/declarations/transform.go similarity index 99% rename from tsc/internal/transformers/declarations/transform.go rename to tsc/pkg/transformers/declarations/transform.go index 32fa0201a9ef5..b9e878b4ed9fa 100644 --- a/tsc/internal/transformers/declarations/transform.go +++ b/tsc/pkg/transformers/declarations/transform.go @@ -6,18 +6,18 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/modulespecifiers" - "github.com/microsoft/TypeScript/tsc/internal/nodebuilder" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/modulespecifiers" + "github.com/frida/TypeScript/tsc/pkg/nodebuilder" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ReferencedFilePair struct { diff --git a/tsc/internal/transformers/declarations/util.go b/tsc/pkg/transformers/declarations/util.go similarity index 97% rename from tsc/internal/transformers/declarations/util.go rename to tsc/pkg/transformers/declarations/util.go index cfe66b26ba76c..3d8547dbc22b3 100644 --- a/tsc/internal/transformers/declarations/util.go +++ b/tsc/pkg/transformers/declarations/util.go @@ -1,9 +1,9 @@ package declarations import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" ) func needsScopeMarker(result *ast.Node) bool { diff --git a/tsc/internal/transformers/destructuring.go b/tsc/pkg/transformers/destructuring.go similarity index 99% rename from tsc/internal/transformers/destructuring.go rename to tsc/pkg/transformers/destructuring.go index b3dc34e1b2260..f03c17f43859f 100644 --- a/tsc/internal/transformers/destructuring.go +++ b/tsc/pkg/transformers/destructuring.go @@ -4,8 +4,8 @@ import ( "slices" "strconv" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" ) // FlattenLevel controls how deeply binding/assignment patterns are decomposed. diff --git a/tsc/internal/transformers/estransforms/async.go b/tsc/pkg/transformers/estransforms/async.go similarity index 99% rename from tsc/internal/transformers/estransforms/async.go rename to tsc/pkg/transformers/estransforms/async.go index 74a6aa18b3ef3..84dd179d17174 100644 --- a/tsc/internal/transformers/estransforms/async.go +++ b/tsc/pkg/transformers/estransforms/async.go @@ -3,10 +3,10 @@ package estransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type asyncContextFlags int diff --git a/tsc/internal/transformers/estransforms/classfields.go b/tsc/pkg/transformers/estransforms/classfields.go similarity index 99% rename from tsc/internal/transformers/estransforms/classfields.go rename to tsc/pkg/transformers/estransforms/classfields.go index 68dc3950413d9..b182845e8492c 100644 --- a/tsc/internal/transformers/estransforms/classfields.go +++ b/tsc/pkg/transformers/estransforms/classfields.go @@ -4,14 +4,14 @@ import ( "iter" "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) // classFacts tracks various facts about a class being transformed. diff --git a/tsc/internal/transformers/estransforms/classthis.go b/tsc/pkg/transformers/estransforms/classthis.go similarity index 89% rename from tsc/internal/transformers/estransforms/classthis.go rename to tsc/pkg/transformers/estransforms/classthis.go index 4ffe57644a8ce..43730583f29cd 100644 --- a/tsc/internal/transformers/estransforms/classthis.go +++ b/tsc/pkg/transformers/estransforms/classthis.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/printer" ) // Gets whether a node is a `static {}` block containing only a single assignment of the static `this` to the `_classThis` diff --git a/tsc/internal/transformers/estransforms/definitions.go b/tsc/pkg/transformers/estransforms/definitions.go similarity index 94% rename from tsc/internal/transformers/estransforms/definitions.go rename to tsc/pkg/transformers/estransforms/definitions.go index 7f9dc9ae81653..2c59e8828145d 100644 --- a/tsc/internal/transformers/estransforms/definitions.go +++ b/tsc/pkg/transformers/estransforms/definitions.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) var ( diff --git a/tsc/internal/transformers/estransforms/esdecorator.go b/tsc/pkg/transformers/estransforms/esdecorator.go similarity index 99% rename from tsc/internal/transformers/estransforms/esdecorator.go rename to tsc/pkg/transformers/estransforms/esdecorator.go index dc2e6edee8a4d..52ea62f4b949f 100644 --- a/tsc/internal/transformers/estransforms/esdecorator.go +++ b/tsc/pkg/transformers/estransforms/esdecorator.go @@ -1,13 +1,13 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) // Class/Decorator evaluation order, as it pertains to this transformer: diff --git a/tsc/internal/transformers/estransforms/exponentiation.go b/tsc/pkg/transformers/estransforms/exponentiation.go similarity index 96% rename from tsc/internal/transformers/estransforms/exponentiation.go rename to tsc/pkg/transformers/estransforms/exponentiation.go index c1cf0c5a0b7c8..80fabad2b1f84 100644 --- a/tsc/internal/transformers/estransforms/exponentiation.go +++ b/tsc/pkg/transformers/estransforms/exponentiation.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type exponentiationTransformer struct { diff --git a/tsc/internal/transformers/estransforms/forawait.go b/tsc/pkg/transformers/estransforms/forawait.go similarity index 99% rename from tsc/internal/transformers/estransforms/forawait.go rename to tsc/pkg/transformers/estransforms/forawait.go index 4d2ddafb13b77..7f4391e172e74 100644 --- a/tsc/internal/transformers/estransforms/forawait.go +++ b/tsc/pkg/transformers/estransforms/forawait.go @@ -1,11 +1,11 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) // Facts we track as we traverse the tree diff --git a/tsc/internal/transformers/estransforms/logicalassignment.go b/tsc/pkg/transformers/estransforms/logicalassignment.go similarity index 96% rename from tsc/internal/transformers/estransforms/logicalassignment.go rename to tsc/pkg/transformers/estransforms/logicalassignment.go index 7cf03fc0183e4..28108899d7fd0 100644 --- a/tsc/internal/transformers/estransforms/logicalassignment.go +++ b/tsc/pkg/transformers/estransforms/logicalassignment.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type logicalAssignmentTransformer struct { diff --git a/tsc/internal/transformers/estransforms/namedevaluation.go b/tsc/pkg/transformers/estransforms/namedevaluation.go similarity index 99% rename from tsc/internal/transformers/estransforms/namedevaluation.go rename to tsc/pkg/transformers/estransforms/namedevaluation.go index 05924916ecc5d..37a6087edcb63 100644 --- a/tsc/internal/transformers/estransforms/namedevaluation.go +++ b/tsc/pkg/transformers/estransforms/namedevaluation.go @@ -3,9 +3,9 @@ package estransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" ) /** diff --git a/tsc/internal/transformers/estransforms/nullishcoalescing.go b/tsc/pkg/transformers/estransforms/nullishcoalescing.go similarity index 92% rename from tsc/internal/transformers/estransforms/nullishcoalescing.go rename to tsc/pkg/transformers/estransforms/nullishcoalescing.go index 4ae49ccd90faa..028b55a633483 100644 --- a/tsc/internal/transformers/estransforms/nullishcoalescing.go +++ b/tsc/pkg/transformers/estransforms/nullishcoalescing.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type nullishCoalescingTransformer struct { diff --git a/tsc/internal/transformers/estransforms/objectrestspread.go b/tsc/pkg/transformers/estransforms/objectrestspread.go similarity index 99% rename from tsc/internal/transformers/estransforms/objectrestspread.go rename to tsc/pkg/transformers/estransforms/objectrestspread.go index 3c0ebae147a19..acbd54398f014 100644 --- a/tsc/internal/transformers/estransforms/objectrestspread.go +++ b/tsc/pkg/transformers/estransforms/objectrestspread.go @@ -1,10 +1,10 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type objectRestSpreadTransformer struct { diff --git a/tsc/internal/transformers/estransforms/optionalcatch.go b/tsc/pkg/transformers/estransforms/optionalcatch.go similarity index 89% rename from tsc/internal/transformers/estransforms/optionalcatch.go rename to tsc/pkg/transformers/estransforms/optionalcatch.go index f5cf685b2d14e..06eebcac32615 100644 --- a/tsc/internal/transformers/estransforms/optionalcatch.go +++ b/tsc/pkg/transformers/estransforms/optionalcatch.go @@ -1,8 +1,8 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type optionalCatchTransformer struct { diff --git a/tsc/internal/transformers/estransforms/optionalchain.go b/tsc/pkg/transformers/estransforms/optionalchain.go similarity index 97% rename from tsc/internal/transformers/estransforms/optionalchain.go rename to tsc/pkg/transformers/estransforms/optionalchain.go index 33b269280f594..7a6fc77626b1f 100644 --- a/tsc/internal/transformers/estransforms/optionalchain.go +++ b/tsc/pkg/transformers/estransforms/optionalchain.go @@ -1,10 +1,10 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type optionalChainTransformer struct { diff --git a/tsc/internal/transformers/estransforms/taggedtemplate.go b/tsc/pkg/transformers/estransforms/taggedtemplate.go similarity index 96% rename from tsc/internal/transformers/estransforms/taggedtemplate.go rename to tsc/pkg/transformers/estransforms/taggedtemplate.go index 0beaf57e53d09..860569d6be877 100644 --- a/tsc/internal/transformers/estransforms/taggedtemplate.go +++ b/tsc/pkg/transformers/estransforms/taggedtemplate.go @@ -3,10 +3,10 @@ package estransforms import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) var newlineNormalizer = strings.NewReplacer("\r\n", "\n", "\r", "\n") diff --git a/tsc/internal/transformers/estransforms/usestrict.go b/tsc/pkg/transformers/estransforms/usestrict.go similarity index 90% rename from tsc/internal/transformers/estransforms/usestrict.go rename to tsc/pkg/transformers/estransforms/usestrict.go index a30581c3a2597..e3d0875d5bdcc 100644 --- a/tsc/internal/transformers/estransforms/usestrict.go +++ b/tsc/pkg/transformers/estransforms/usestrict.go @@ -1,9 +1,9 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) func NewUseStrictTransformer(opts *transformers.TransformOptions) *transformers.Transformer { diff --git a/tsc/internal/transformers/estransforms/using.go b/tsc/pkg/transformers/estransforms/using.go similarity index 99% rename from tsc/internal/transformers/estransforms/using.go rename to tsc/pkg/transformers/estransforms/using.go index 9becbf3201381..194dbc034f7ce 100644 --- a/tsc/internal/transformers/estransforms/using.go +++ b/tsc/pkg/transformers/estransforms/using.go @@ -1,11 +1,11 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type usingDeclarationTransformer struct { diff --git a/tsc/internal/transformers/estransforms/utilities.go b/tsc/pkg/transformers/estransforms/utilities.go similarity index 97% rename from tsc/internal/transformers/estransforms/utilities.go rename to tsc/pkg/transformers/estransforms/utilities.go index f30003ba09cff..6ecb906c06e04 100644 --- a/tsc/internal/transformers/estransforms/utilities.go +++ b/tsc/pkg/transformers/estransforms/utilities.go @@ -1,10 +1,10 @@ package estransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) func convertClassDeclarationToClassExpression(emitContext *printer.EmitContext, node *ast.ClassDeclaration) *ast.Expression { diff --git a/tsc/internal/transformers/inliners/constenum.go b/tsc/pkg/transformers/inliners/constenum.go similarity index 89% rename from tsc/internal/transformers/inliners/constenum.go rename to tsc/pkg/transformers/inliners/constenum.go index f3be363c8393a..fdd87cfa7df60 100644 --- a/tsc/internal/transformers/inliners/constenum.go +++ b/tsc/pkg/transformers/inliners/constenum.go @@ -3,13 +3,13 @@ package inliners import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type ConstEnumInliningTransformer struct { diff --git a/tsc/internal/transformers/jsxtransforms/jsx.go b/tsc/pkg/transformers/jsxtransforms/jsx.go similarity index 99% rename from tsc/internal/transformers/jsxtransforms/jsx.go rename to tsc/pkg/transformers/jsxtransforms/jsx.go index d6fafedfad6b9..41ad8aeb42878 100644 --- a/tsc/internal/transformers/jsxtransforms/jsx.go +++ b/tsc/pkg/transformers/jsxtransforms/jsx.go @@ -7,13 +7,13 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type JSXTransformer struct { diff --git a/tsc/internal/transformers/modifiervisitor.go b/tsc/pkg/transformers/modifiervisitor.go similarity index 85% rename from tsc/internal/transformers/modifiervisitor.go rename to tsc/pkg/transformers/modifiervisitor.go index 3bb2bda44109d..0c0ae59836f76 100644 --- a/tsc/internal/transformers/modifiervisitor.go +++ b/tsc/pkg/transformers/modifiervisitor.go @@ -1,8 +1,8 @@ package transformers import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/printer" ) type modifierVisitor struct { diff --git a/tsc/internal/transformers/moduletransforms/commonjsmodule.go b/tsc/pkg/transformers/moduletransforms/commonjsmodule.go similarity index 99% rename from tsc/internal/transformers/moduletransforms/commonjsmodule.go rename to tsc/pkg/transformers/moduletransforms/commonjsmodule.go index 9e7ca97dbe241..b393437db8233 100644 --- a/tsc/internal/transformers/moduletransforms/commonjsmodule.go +++ b/tsc/pkg/transformers/moduletransforms/commonjsmodule.go @@ -3,13 +3,13 @@ package moduletransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type CommonJSModuleTransformer struct { diff --git a/tsc/internal/transformers/moduletransforms/esmodule.go b/tsc/pkg/transformers/moduletransforms/esmodule.go similarity index 98% rename from tsc/internal/transformers/moduletransforms/esmodule.go rename to tsc/pkg/transformers/moduletransforms/esmodule.go index 87f20beb2033d..e8c4856e62313 100644 --- a/tsc/internal/transformers/moduletransforms/esmodule.go +++ b/tsc/pkg/transformers/moduletransforms/esmodule.go @@ -3,11 +3,11 @@ package moduletransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type ESModuleTransformer struct { diff --git a/tsc/internal/transformers/moduletransforms/externalmoduleinfo.go b/tsc/pkg/transformers/moduletransforms/externalmoduleinfo.go similarity index 97% rename from tsc/internal/transformers/moduletransforms/externalmoduleinfo.go rename to tsc/pkg/transformers/moduletransforms/externalmoduleinfo.go index 34354e3adc46f..ff1bb2fa2cf6c 100644 --- a/tsc/internal/transformers/moduletransforms/externalmoduleinfo.go +++ b/tsc/pkg/transformers/moduletransforms/externalmoduleinfo.go @@ -3,13 +3,13 @@ package moduletransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type externalModuleInfo struct { diff --git a/tsc/internal/transformers/moduletransforms/impliedmodule.go b/tsc/pkg/transformers/moduletransforms/impliedmodule.go similarity index 86% rename from tsc/internal/transformers/moduletransforms/impliedmodule.go rename to tsc/pkg/transformers/moduletransforms/impliedmodule.go index f5b55eb33d911..679b6b019b243 100644 --- a/tsc/internal/transformers/moduletransforms/impliedmodule.go +++ b/tsc/pkg/transformers/moduletransforms/impliedmodule.go @@ -1,10 +1,10 @@ package moduletransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type ImpliedModuleTransformer struct { diff --git a/tsc/internal/transformers/moduletransforms/utilities.go b/tsc/pkg/transformers/moduletransforms/utilities.go similarity index 94% rename from tsc/internal/transformers/moduletransforms/utilities.go rename to tsc/pkg/transformers/moduletransforms/utilities.go index fe931df145136..92ac32e0d67f6 100644 --- a/tsc/internal/transformers/moduletransforms/utilities.go +++ b/tsc/pkg/transformers/moduletransforms/utilities.go @@ -1,12 +1,12 @@ package moduletransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func isDeclarationNameOfEnumOrNamespace(emitContext *printer.EmitContext, node *ast.IdentifierNode) bool { diff --git a/tsc/internal/transformers/transformer.go b/tsc/pkg/transformers/transformer.go similarity index 89% rename from tsc/internal/transformers/transformer.go rename to tsc/pkg/transformers/transformer.go index 267d3a2594688..0bf0d0b88dff3 100644 --- a/tsc/internal/transformers/transformer.go +++ b/tsc/pkg/transformers/transformer.go @@ -1,8 +1,8 @@ package transformers import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/printer" ) type Transformer struct { diff --git a/tsc/internal/transformers/tstransforms/importelision.go b/tsc/pkg/transformers/tstransforms/importelision.go similarity index 95% rename from tsc/internal/transformers/tstransforms/importelision.go rename to tsc/pkg/transformers/tstransforms/importelision.go index 35a60f8dc5e65..ac35e29a386e2 100644 --- a/tsc/internal/transformers/tstransforms/importelision.go +++ b/tsc/pkg/transformers/tstransforms/importelision.go @@ -1,10 +1,10 @@ package tstransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type ImportElisionTransformer struct { diff --git a/tsc/internal/transformers/tstransforms/importelision_test.go b/tsc/pkg/transformers/tstransforms/importelision_test.go similarity index 91% rename from tsc/internal/transformers/tstransforms/importelision_test.go rename to tsc/pkg/transformers/tstransforms/importelision_test.go index 104f53c39324a..03f5e6bb20010 100644 --- a/tsc/internal/transformers/tstransforms/importelision_test.go +++ b/tsc/pkg/transformers/tstransforms/importelision_test.go @@ -3,20 +3,20 @@ package tstransforms_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/checker" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/symlinks" - "github.com/microsoft/TypeScript/tsc/internal/testutil/emittestutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/transformers/tstransforms" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/checker" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/symlinks" + "github.com/frida/TypeScript/tsc/pkg/testutil/emittestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/transformers/tstransforms" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type fakeProgram struct { diff --git a/tsc/internal/transformers/tstransforms/legacydecorators.go b/tsc/pkg/transformers/tstransforms/legacydecorators.go similarity index 99% rename from tsc/internal/transformers/tstransforms/legacydecorators.go rename to tsc/pkg/transformers/tstransforms/legacydecorators.go index 8eaa45e5071ad..6b3314c9c6b7e 100644 --- a/tsc/internal/transformers/tstransforms/legacydecorators.go +++ b/tsc/pkg/transformers/tstransforms/legacydecorators.go @@ -1,12 +1,12 @@ package tstransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type LegacyDecoratorsTransformer struct { diff --git a/tsc/internal/transformers/tstransforms/metadata.go b/tsc/pkg/transformers/tstransforms/metadata.go similarity index 98% rename from tsc/internal/transformers/tstransforms/metadata.go rename to tsc/pkg/transformers/tstransforms/metadata.go index 8d354747f080e..ddbb029073a6d 100644 --- a/tsc/internal/transformers/tstransforms/metadata.go +++ b/tsc/pkg/transformers/tstransforms/metadata.go @@ -1,10 +1,10 @@ package tstransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) const USE_NEW_TYPE_METADATA_FORMAT = false diff --git a/tsc/internal/transformers/tstransforms/runtimesyntax.go b/tsc/pkg/transformers/tstransforms/runtimesyntax.go similarity index 99% rename from tsc/internal/transformers/tstransforms/runtimesyntax.go rename to tsc/pkg/transformers/tstransforms/runtimesyntax.go index 35c29262606b0..13a7ce5f2f0ce 100644 --- a/tsc/internal/transformers/tstransforms/runtimesyntax.go +++ b/tsc/pkg/transformers/tstransforms/runtimesyntax.go @@ -5,12 +5,12 @@ package tstransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/binder" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/binder" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) // Transforms TypeScript-specific runtime syntax into JavaScript-compatible syntax. diff --git a/tsc/internal/transformers/tstransforms/typeeraser.go b/tsc/pkg/transformers/tstransforms/typeeraser.go similarity index 98% rename from tsc/internal/transformers/tstransforms/typeeraser.go rename to tsc/pkg/transformers/tstransforms/typeeraser.go index 0951065f645a4..53b021ee468a8 100644 --- a/tsc/internal/transformers/tstransforms/typeeraser.go +++ b/tsc/pkg/transformers/tstransforms/typeeraser.go @@ -3,9 +3,9 @@ package tstransforms import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type TypeEraserTransformer struct { diff --git a/tsc/internal/transformers/tstransforms/typeeraser_test.go b/tsc/pkg/transformers/tstransforms/typeeraser_test.go similarity index 94% rename from tsc/internal/transformers/tstransforms/typeeraser_test.go rename to tsc/pkg/transformers/tstransforms/typeeraser_test.go index 56d8fce25a804..c63a60aee47a2 100644 --- a/tsc/internal/transformers/tstransforms/typeeraser_test.go +++ b/tsc/pkg/transformers/tstransforms/typeeraser_test.go @@ -3,12 +3,12 @@ package tstransforms_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/testutil/emittestutil" - "github.com/microsoft/TypeScript/tsc/internal/testutil/parsetestutil" - "github.com/microsoft/TypeScript/tsc/internal/transformers" - "github.com/microsoft/TypeScript/tsc/internal/transformers/tstransforms" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/testutil/emittestutil" + "github.com/frida/TypeScript/tsc/pkg/testutil/parsetestutil" + "github.com/frida/TypeScript/tsc/pkg/transformers" + "github.com/frida/TypeScript/tsc/pkg/transformers/tstransforms" ) func TestTypeEraser(t *testing.T) { diff --git a/tsc/internal/transformers/tstransforms/typeserializer.go b/tsc/pkg/transformers/tstransforms/typeserializer.go similarity index 98% rename from tsc/internal/transformers/tstransforms/typeserializer.go rename to tsc/pkg/transformers/tstransforms/typeserializer.go index 96ef378de3779..dc06c056ad262 100644 --- a/tsc/internal/transformers/tstransforms/typeserializer.go +++ b/tsc/pkg/transformers/tstransforms/typeserializer.go @@ -1,11 +1,11 @@ package tstransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/transformers" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/transformers" ) type metadataSerializer struct { diff --git a/tsc/internal/transformers/tstransforms/utilities.go b/tsc/pkg/transformers/tstransforms/utilities.go similarity index 81% rename from tsc/internal/transformers/tstransforms/utilities.go rename to tsc/pkg/transformers/tstransforms/utilities.go index 2c0f0eb5478c6..1b17bcf59503b 100644 --- a/tsc/internal/transformers/tstransforms/utilities.go +++ b/tsc/pkg/transformers/tstransforms/utilities.go @@ -1,9 +1,9 @@ package tstransforms import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/printer" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/printer" ) func constantExpression(value any, factory *printer.NodeFactory) *ast.Expression { diff --git a/tsc/internal/transformers/utilities.go b/tsc/pkg/transformers/utilities.go similarity index 98% rename from tsc/internal/transformers/utilities.go rename to tsc/pkg/transformers/utilities.go index 949fdbda5e8ba..b5704847ef3d6 100644 --- a/tsc/internal/transformers/utilities.go +++ b/tsc/pkg/transformers/utilities.go @@ -3,10 +3,10 @@ package transformers import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/printer" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/printer" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func IsGeneratedIdentifier(emitContext *printer.EmitContext, name *ast.IdentifierNode) bool { diff --git a/tsc/internal/transpile/fs.go b/tsc/pkg/transpile/fs.go similarity index 94% rename from tsc/internal/transpile/fs.go rename to tsc/pkg/transpile/fs.go index 8a1c019988ef0..5cfb6c99dd513 100644 --- a/tsc/internal/transpile/fs.go +++ b/tsc/pkg/transpile/fs.go @@ -3,7 +3,7 @@ package transpile import ( "fmt" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // transpileFS embeds unsupported operations so unexpected filesystem access diff --git a/tsc/internal/transpile/fs_test.go b/tsc/pkg/transpile/fs_test.go similarity index 88% rename from tsc/internal/transpile/fs_test.go rename to tsc/pkg/transpile/fs_test.go index 31f9d1cf2a590..bfd8944a2aaf3 100644 --- a/tsc/internal/transpile/fs_test.go +++ b/tsc/pkg/transpile/fs_test.go @@ -3,7 +3,7 @@ package transpile import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/testutil" + "github.com/frida/TypeScript/tsc/pkg/testutil" ) func TestTranspileFSRejectsDirectoryAccess(t *testing.T) { diff --git a/tsc/internal/transpile/transpile.go b/tsc/pkg/transpile/transpile.go similarity index 96% rename from tsc/internal/transpile/transpile.go rename to tsc/pkg/transpile/transpile.go index 98d999c801b1e..f6eac18357c68 100644 --- a/tsc/internal/transpile/transpile.go +++ b/tsc/pkg/transpile/transpile.go @@ -5,12 +5,12 @@ import ( "context" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/compiler" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/compiler" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // Options configures single-file transpilation. diff --git a/tsc/internal/tsoptions/commandlineoption.go b/tsc/pkg/tsoptions/commandlineoption.go similarity index 96% rename from tsc/internal/tsoptions/commandlineoption.go rename to tsc/pkg/tsoptions/commandlineoption.go index 1346e5c0bbd5e..f71097a994806 100644 --- a/tsc/internal/tsoptions/commandlineoption.go +++ b/tsc/pkg/tsoptions/commandlineoption.go @@ -1,9 +1,9 @@ package tsoptions import ( - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) type CommandLineOptionKind string diff --git a/tsc/internal/tsoptions/commandlineparser.go b/tsc/pkg/tsoptions/commandlineparser.go similarity index 97% rename from tsc/internal/tsoptions/commandlineparser.go rename to tsc/pkg/tsoptions/commandlineparser.go index ad9d00dbbdb6c..297f238c26b3b 100644 --- a/tsc/internal/tsoptions/commandlineparser.go +++ b/tsc/pkg/tsoptions/commandlineparser.go @@ -4,13 +4,13 @@ import ( "strconv" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/stringutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) func (p *commandLineParser) AlternateMode() *AlternateModeDiagnostics { diff --git a/tsc/internal/tsoptions/commandlineparser_test.go b/tsc/pkg/tsoptions/commandlineparser_test.go similarity index 97% rename from tsc/internal/tsoptions/commandlineparser_test.go rename to tsc/pkg/tsoptions/commandlineparser_test.go index 59c5e65ca766a..f6f7480170fe0 100644 --- a/tsc/internal/tsoptions/commandlineparser_test.go +++ b/tsc/pkg/tsoptions/commandlineparser_test.go @@ -7,18 +7,18 @@ import ( "testing" "github.com/google/go-cmp/cmp/cmpopts" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/testutil/filefixture" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions/tsoptionstest" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/testutil/filefixture" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tsoptions/tsoptionstest" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/tsoptions/contentmappers.go b/tsc/pkg/tsoptions/contentmappers.go similarity index 87% rename from tsc/internal/tsoptions/contentmappers.go rename to tsc/pkg/tsoptions/contentmappers.go index 124e34a1d4bb3..a62cad3508ff6 100644 --- a/tsc/internal/tsoptions/contentmappers.go +++ b/tsc/pkg/tsoptions/contentmappers.go @@ -1,13 +1,13 @@ package tsoptions import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/packagejson" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/packagejson" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // resolveContentMapperManifest locates packageName in node_modules (walking up from the directory of diff --git a/tsc/internal/tsoptions/contentmappers_test.go b/tsc/pkg/tsoptions/contentmappers_test.go similarity index 94% rename from tsc/internal/tsoptions/contentmappers_test.go rename to tsc/pkg/tsoptions/contentmappers_test.go index 8974163776a39..4be4dd6c0ad43 100644 --- a/tsc/internal/tsoptions/contentmappers_test.go +++ b/tsc/pkg/tsoptions/contentmappers_test.go @@ -4,12 +4,12 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/tsoptions/decls_test.go b/tsc/pkg/tsoptions/decls_test.go similarity index 93% rename from tsc/internal/tsoptions/decls_test.go rename to tsc/pkg/tsoptions/decls_test.go index 75fe40f8c8d0e..be577711a0048 100644 --- a/tsc/internal/tsoptions/decls_test.go +++ b/tsc/pkg/tsoptions/decls_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" ) func TestCompilerOptionsDeclaration(t *testing.T) { diff --git a/tsc/internal/tsoptions/declsbuild.go b/tsc/pkg/tsoptions/declsbuild.go similarity index 97% rename from tsc/internal/tsoptions/declsbuild.go rename to tsc/pkg/tsoptions/declsbuild.go index fa48cd16a592f..62513e3cc3963 100644 --- a/tsc/internal/tsoptions/declsbuild.go +++ b/tsc/pkg/tsoptions/declsbuild.go @@ -3,7 +3,7 @@ package tsoptions import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) var TscBuildOption = CommandLineOption{ diff --git a/tsc/internal/tsoptions/declscompiler.go b/tsc/pkg/tsoptions/declscompiler.go similarity index 99% rename from tsc/internal/tsoptions/declscompiler.go rename to tsc/pkg/tsoptions/declscompiler.go index 46fb42faee7c5..45d280acc19ed 100644 --- a/tsc/internal/tsoptions/declscompiler.go +++ b/tsc/pkg/tsoptions/declscompiler.go @@ -4,8 +4,8 @@ import ( "reflect" "slices" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) var OptionsDeclarations = slices.Concat(commonOptionsWithBuild, optionsForCompiler) diff --git a/tsc/internal/tsoptions/declstypeacquisition.go b/tsc/pkg/tsoptions/declstypeacquisition.go similarity index 100% rename from tsc/internal/tsoptions/declstypeacquisition.go rename to tsc/pkg/tsoptions/declstypeacquisition.go diff --git a/tsc/internal/tsoptions/declswatch.go b/tsc/pkg/tsoptions/declswatch.go similarity index 96% rename from tsc/internal/tsoptions/declswatch.go rename to tsc/pkg/tsoptions/declswatch.go index aef18639faf7a..a3950dbfa4ca2 100644 --- a/tsc/internal/tsoptions/declswatch.go +++ b/tsc/pkg/tsoptions/declswatch.go @@ -1,8 +1,8 @@ package tsoptions import ( - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) var OptionsForWatch = []*CommandLineOption{ diff --git a/tsc/internal/tsoptions/diagnostics.go b/tsc/pkg/tsoptions/diagnostics.go similarity index 97% rename from tsc/internal/tsoptions/diagnostics.go rename to tsc/pkg/tsoptions/diagnostics.go index f453330eed83b..6df48a9a5a474 100644 --- a/tsc/internal/tsoptions/diagnostics.go +++ b/tsc/pkg/tsoptions/diagnostics.go @@ -3,7 +3,7 @@ package tsoptions import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" ) type DidYouMeanOptionsDiagnostics struct { diff --git a/tsc/internal/tsoptions/enummaps.go b/tsc/pkg/tsoptions/enummaps.go similarity index 98% rename from tsc/internal/tsoptions/enummaps.go rename to tsc/pkg/tsoptions/enummaps.go index 3bf67a8640675..e44fe27ef1f1d 100644 --- a/tsc/internal/tsoptions/enummaps.go +++ b/tsc/pkg/tsoptions/enummaps.go @@ -3,9 +3,9 @@ package tsoptions import ( "slices" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) var LibMap = collections.NewOrderedMapFromList([]collections.MapEntry[string, any]{ diff --git a/tsc/internal/tsoptions/errors.go b/tsc/pkg/tsoptions/errors.go similarity index 95% rename from tsc/internal/tsoptions/errors.go rename to tsc/pkg/tsoptions/errors.go index e217126cbad2b..0ca16f91f8f6d 100644 --- a/tsc/internal/tsoptions/errors.go +++ b/tsc/pkg/tsoptions/errors.go @@ -5,10 +5,10 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/scanner" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/scanner" ) func createDiagnosticForInvalidEnumType(opt *CommandLineOption, sourceFile *ast.SourceFile, node *ast.Node) *ast.Diagnostic { diff --git a/tsc/internal/tsoptions/export_test.go b/tsc/pkg/tsoptions/export_test.go similarity index 89% rename from tsc/internal/tsoptions/export_test.go rename to tsc/pkg/tsoptions/export_test.go index 011b5077d1782..f3e835d9a6f3b 100644 --- a/tsc/internal/tsoptions/export_test.go +++ b/tsc/pkg/tsoptions/export_test.go @@ -1,9 +1,9 @@ package tsoptions import ( - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) func getTestParseCommandLineWorkerDiagnostics(decls []*CommandLineOption) *ParseCommandLineWorkerDiagnostics { diff --git a/tsc/internal/tsoptions/namemap.go b/tsc/pkg/tsoptions/namemap.go similarity index 96% rename from tsc/internal/tsoptions/namemap.go rename to tsc/pkg/tsoptions/namemap.go index 86c1b80f7e367..2fe80eadad337 100644 --- a/tsc/internal/tsoptions/namemap.go +++ b/tsc/pkg/tsoptions/namemap.go @@ -3,7 +3,7 @@ package tsoptions import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/collections" + "github.com/frida/TypeScript/tsc/pkg/collections" ) var ( diff --git a/tsc/internal/tsoptions/parsedbuildcommandline.go b/tsc/pkg/tsoptions/parsedbuildcommandline.go similarity index 83% rename from tsc/internal/tsoptions/parsedbuildcommandline.go rename to tsc/pkg/tsoptions/parsedbuildcommandline.go index 8ab4666362de6..412f12ef86dc5 100644 --- a/tsc/internal/tsoptions/parsedbuildcommandline.go +++ b/tsc/pkg/tsoptions/parsedbuildcommandline.go @@ -3,10 +3,10 @@ package tsoptions import ( "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) type ParsedBuildCommandLine struct { diff --git a/tsc/internal/tsoptions/parsedcommandline.go b/tsc/pkg/tsoptions/parsedcommandline.go similarity index 96% rename from tsc/internal/tsoptions/parsedcommandline.go rename to tsc/pkg/tsoptions/parsedcommandline.go index caac1280e1ee0..02f70b8a7ca0e 100644 --- a/tsc/internal/tsoptions/parsedcommandline.go +++ b/tsc/pkg/tsoptions/parsedcommandline.go @@ -7,17 +7,17 @@ import ( "strings" "sync" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/glob" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/outputpaths" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/glob" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/outputpaths" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) const ( diff --git a/tsc/internal/tsoptions/parsedcommandline_test.go b/tsc/pkg/tsoptions/parsedcommandline_test.go similarity index 95% rename from tsc/internal/tsoptions/parsedcommandline_test.go rename to tsc/pkg/tsoptions/parsedcommandline_test.go index 4825076d21f76..35e16a8ec3f30 100644 --- a/tsc/internal/tsoptions/parsedcommandline_test.go +++ b/tsc/pkg/tsoptions/parsedcommandline_test.go @@ -4,11 +4,11 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions/tsoptionstest" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tsoptions/tsoptionstest" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/tsoptions/parsedoptions.go b/tsc/pkg/tsoptions/parsedoptions.go similarity index 79% rename from tsc/internal/tsoptions/parsedoptions.go rename to tsc/pkg/tsoptions/parsedoptions.go index 9922ccda24628..2b50f1ec83d6d 100644 --- a/tsc/internal/tsoptions/parsedoptions.go +++ b/tsc/pkg/tsoptions/parsedoptions.go @@ -1,8 +1,8 @@ package tsoptions import ( - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" ) type ParsedOptions struct { diff --git a/tsc/internal/tsoptions/parsinghelpers.go b/tsc/pkg/tsoptions/parsinghelpers.go similarity index 98% rename from tsc/internal/tsoptions/parsinghelpers.go rename to tsc/pkg/tsoptions/parsinghelpers.go index fa7491b1e0c06..aff7efaaa0dad 100644 --- a/tsc/internal/tsoptions/parsinghelpers.go +++ b/tsc/pkg/tsoptions/parsinghelpers.go @@ -4,13 +4,13 @@ import ( "reflect" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) func ParseTristate(value any) core.Tristate { diff --git a/tsc/internal/tsoptions/parsinghelpers_test.go b/tsc/pkg/tsoptions/parsinghelpers_test.go similarity index 94% rename from tsc/internal/tsoptions/parsinghelpers_test.go rename to tsc/pkg/tsoptions/parsinghelpers_test.go index 151db96ad96f3..d341fa0c10e36 100644 --- a/tsc/internal/tsoptions/parsinghelpers_test.go +++ b/tsc/pkg/tsoptions/parsinghelpers_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" + "github.com/frida/TypeScript/tsc/pkg/core" ) func TestParseCompilerOptionNoMissingFields(t *testing.T) { diff --git a/tsc/internal/tsoptions/showconfig.go b/tsc/pkg/tsoptions/showconfig.go similarity index 98% rename from tsc/internal/tsoptions/showconfig.go rename to tsc/pkg/tsoptions/showconfig.go index 17b7c03612a68..00c601b052a7c 100644 --- a/tsc/internal/tsoptions/showconfig.go +++ b/tsc/pkg/tsoptions/showconfig.go @@ -3,11 +3,11 @@ package tsoptions import ( "reflect" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/tspath" ) // computeFn wraps a typed getter method so it can be stored in an impliedOption's diff --git a/tsc/internal/tsoptions/testmain_test.go b/tsc/pkg/tsoptions/testmain_test.go similarity index 54% rename from tsc/internal/tsoptions/testmain_test.go rename to tsc/pkg/tsoptions/testmain_test.go index 3b46f06851910..6dfb696a97304 100644 --- a/tsc/internal/tsoptions/testmain_test.go +++ b/tsc/pkg/tsoptions/testmain_test.go @@ -3,8 +3,8 @@ package tsoptions_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" ) func TestMain(m *testing.M) { diff --git a/tsc/internal/tsoptions/tsconfigparsing.go b/tsc/pkg/tsoptions/tsconfigparsing.go similarity index 99% rename from tsc/internal/tsoptions/tsconfigparsing.go rename to tsc/pkg/tsoptions/tsconfigparsing.go index e491d40221679..dee4aeeaa31b8 100644 --- a/tsc/internal/tsoptions/tsconfigparsing.go +++ b/tsc/pkg/tsoptions/tsconfigparsing.go @@ -7,20 +7,20 @@ import ( "slices" "strings" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/debug" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/jsnum" - "github.com/microsoft/TypeScript/tsc/internal/locale" - "github.com/microsoft/TypeScript/tsc/internal/module" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/debug" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/jsnum" + "github.com/frida/TypeScript/tsc/pkg/locale" + "github.com/frida/TypeScript/tsc/pkg/module" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) type extendsResult struct { diff --git a/tsc/internal/tsoptions/tsconfigparsing_test.go b/tsc/pkg/tsoptions/tsconfigparsing_test.go similarity index 98% rename from tsc/internal/tsoptions/tsconfigparsing_test.go rename to tsc/pkg/tsoptions/tsconfigparsing_test.go index 914c62379de42..83911dacecb61 100644 --- a/tsc/internal/tsoptions/tsconfigparsing_test.go +++ b/tsc/pkg/tsoptions/tsconfigparsing_test.go @@ -10,22 +10,22 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/ast" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/contentmapper" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/diagnostics" - "github.com/microsoft/TypeScript/tsc/internal/diagnosticwriter" - "github.com/microsoft/TypeScript/tsc/internal/json" - "github.com/microsoft/TypeScript/tsc/internal/parser" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/scanner" - "github.com/microsoft/TypeScript/tsc/internal/testutil/baseline" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tsoptions/tsoptionstest" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/ast" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/contentmapper" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/diagnostics" + "github.com/frida/TypeScript/tsc/pkg/diagnosticwriter" + "github.com/frida/TypeScript/tsc/pkg/json" + "github.com/frida/TypeScript/tsc/pkg/parser" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/scanner" + "github.com/frida/TypeScript/tsc/pkg/testutil/baseline" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tsoptions/tsoptionstest" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/tsoptions/tsoptionstest/parsedcommandline.go b/tsc/pkg/tsoptions/tsoptionstest/parsedcommandline.go similarity index 86% rename from tsc/internal/tsoptions/tsoptionstest/parsedcommandline.go rename to tsc/pkg/tsoptions/tsoptionstest/parsedcommandline.go index fa6fef1b395e4..4ab97c98f8006 100644 --- a/tsc/internal/tsoptions/tsoptionstest/parsedcommandline.go +++ b/tsc/pkg/tsoptions/tsoptionstest/parsedcommandline.go @@ -1,8 +1,8 @@ package tsoptionstest import ( - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/tsoptions/tsoptionstest/vfsparseconfighost.go b/tsc/pkg/tsoptions/tsoptionstest/vfsparseconfighost.go similarity index 88% rename from tsc/internal/tsoptions/tsoptionstest/vfsparseconfighost.go rename to tsc/pkg/tsoptions/tsoptionstest/vfsparseconfighost.go index 7cf15f4e3470b..b37ee192cb0c8 100644 --- a/tsc/internal/tsoptions/tsoptionstest/vfsparseconfighost.go +++ b/tsc/pkg/tsoptions/tsoptionstest/vfsparseconfighost.go @@ -1,10 +1,10 @@ package tsoptionstest import ( - "github.com/microsoft/TypeScript/tsc/internal/tsoptions" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/tsoptions" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) func fixRoot(path string) string { diff --git a/tsc/internal/tsoptions/wildcarddirectories.go b/tsc/pkg/tsoptions/wildcarddirectories.go similarity index 97% rename from tsc/internal/tsoptions/wildcarddirectories.go rename to tsc/pkg/tsoptions/wildcarddirectories.go index dbb8d3a580551..5170d3bb66498 100644 --- a/tsc/internal/tsoptions/wildcarddirectories.go +++ b/tsc/pkg/tsoptions/wildcarddirectories.go @@ -3,8 +3,8 @@ package tsoptions import ( "strings" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmatch" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmatch" ) func getWildcardDirectories(include []string, exclude []string, comparePathsOptions tspath.ComparePathsOptions) map[string]bool { diff --git a/tsc/internal/tsoptions/wildcarddirectories_test.go b/tsc/pkg/tsoptions/wildcarddirectories_test.go similarity index 95% rename from tsc/internal/tsoptions/wildcarddirectories_test.go rename to tsc/pkg/tsoptions/wildcarddirectories_test.go index 66e1ecacde6b0..3cd6633dfc626 100644 --- a/tsc/internal/tsoptions/wildcarddirectories_test.go +++ b/tsc/pkg/tsoptions/wildcarddirectories_test.go @@ -3,14 +3,14 @@ package tsoptions import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) func TestGetWildcardDirectories_DotPrefixedIncludeWithDotDirExclude(t *testing.T) { t.Parallel() - // https://github.com/microsoft/TypeScript/tsc/issues/3733 + // https://github.com/frida/TypeScript/tsc/issues/3733 // "./"-prefixed include specs must be fully normalized before being tested // against exclude patterns; otherwise the leftover literal "." path segment // matches dot-directory excludes like "**/.*/", silently dropping every diff --git a/tsc/internal/tspath/extension.go b/tsc/pkg/tspath/extension.go similarity index 100% rename from tsc/internal/tspath/extension.go rename to tsc/pkg/tspath/extension.go diff --git a/tsc/internal/tspath/ignoredpaths.go b/tsc/pkg/tspath/ignoredpaths.go similarity index 100% rename from tsc/internal/tspath/ignoredpaths.go rename to tsc/pkg/tspath/ignoredpaths.go diff --git a/tsc/internal/tspath/ignoredpaths_test.go b/tsc/pkg/tspath/ignoredpaths_test.go similarity index 100% rename from tsc/internal/tspath/ignoredpaths_test.go rename to tsc/pkg/tspath/ignoredpaths_test.go diff --git a/tsc/internal/tspath/path.go b/tsc/pkg/tspath/path.go similarity index 99% rename from tsc/internal/tspath/path.go rename to tsc/pkg/tspath/path.go index 8b464c6752484..b470c0828523c 100644 --- a/tsc/internal/tspath/path.go +++ b/tsc/pkg/tspath/path.go @@ -8,7 +8,7 @@ import ( "unicode/utf8" "unsafe" - "github.com/microsoft/TypeScript/tsc/internal/stringutil" + "github.com/frida/TypeScript/tsc/pkg/stringutil" ) type Path string diff --git a/tsc/internal/tspath/path_test.go b/tsc/pkg/tspath/path_test.go similarity index 100% rename from tsc/internal/tspath/path_test.go rename to tsc/pkg/tspath/path_test.go diff --git a/tsc/internal/tspath/startsWithDirectory_test.go b/tsc/pkg/tspath/startsWithDirectory_test.go similarity index 100% rename from tsc/internal/tspath/startsWithDirectory_test.go rename to tsc/pkg/tspath/startsWithDirectory_test.go diff --git a/tsc/internal/tspath/untitled_test.go b/tsc/pkg/tspath/untitled_test.go similarity index 97% rename from tsc/internal/tspath/untitled_test.go rename to tsc/pkg/tspath/untitled_test.go index 186e755abcdc5..1ad6bff64cce8 100644 --- a/tsc/internal/tspath/untitled_test.go +++ b/tsc/pkg/tspath/untitled_test.go @@ -3,7 +3,7 @@ package tspath_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/cachedvfs/cachedvfs.go b/tsc/pkg/vfs/cachedvfs/cachedvfs.go similarity index 96% rename from tsc/internal/vfs/cachedvfs/cachedvfs.go rename to tsc/pkg/vfs/cachedvfs/cachedvfs.go index 7128d24d6bda7..b81ff5b0861c9 100644 --- a/tsc/internal/vfs/cachedvfs/cachedvfs.go +++ b/tsc/pkg/vfs/cachedvfs/cachedvfs.go @@ -4,8 +4,8 @@ import ( "sync/atomic" "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type FS struct { diff --git a/tsc/internal/vfs/cachedvfs/cachedvfs_test.go b/tsc/pkg/vfs/cachedvfs/cachedvfs_test.go similarity index 97% rename from tsc/internal/vfs/cachedvfs/cachedvfs_test.go rename to tsc/pkg/vfs/cachedvfs/cachedvfs_test.go index f1ba051ce0ac2..30f730fafb809 100644 --- a/tsc/internal/vfs/cachedvfs/cachedvfs_test.go +++ b/tsc/pkg/vfs/cachedvfs/cachedvfs_test.go @@ -3,10 +3,10 @@ package cachedvfs_test import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfsmock" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfsmock" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/internal/internal.go b/tsc/pkg/vfs/internal/internal.go similarity index 97% rename from tsc/internal/vfs/internal/internal.go rename to tsc/pkg/vfs/internal/internal.go index bed1c9d55db92..121a80cc9da40 100644 --- a/tsc/internal/vfs/internal/internal.go +++ b/tsc/pkg/vfs/internal/internal.go @@ -8,8 +8,8 @@ import ( "unicode/utf16" "unsafe" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type Common struct { diff --git a/tsc/internal/vfs/iovfs/iofs.go b/tsc/pkg/vfs/iovfs/iofs.go similarity index 97% rename from tsc/internal/vfs/iovfs/iofs.go rename to tsc/pkg/vfs/iovfs/iofs.go index 28e6d62409942..cb4aaa23ec01d 100644 --- a/tsc/internal/vfs/iovfs/iofs.go +++ b/tsc/pkg/vfs/iovfs/iofs.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/internal" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/internal" ) type RealpathFS interface { diff --git a/tsc/internal/vfs/iovfs/iofs_test.go b/tsc/pkg/vfs/iovfs/iofs_test.go similarity index 94% rename from tsc/internal/vfs/iovfs/iofs_test.go rename to tsc/pkg/vfs/iovfs/iofs_test.go index ed5a3216bdae8..9a7cee0af8be8 100644 --- a/tsc/internal/vfs/iovfs/iofs_test.go +++ b/tsc/pkg/vfs/iovfs/iofs_test.go @@ -5,9 +5,9 @@ import ( "testing" "testing/fstest" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/osvfs/helpers_test.go b/tsc/pkg/vfs/osvfs/helpers_test.go similarity index 100% rename from tsc/internal/vfs/osvfs/helpers_test.go rename to tsc/pkg/vfs/osvfs/helpers_test.go diff --git a/tsc/internal/vfs/osvfs/os.go b/tsc/pkg/vfs/osvfs/os.go similarity index 94% rename from tsc/internal/vfs/osvfs/os.go rename to tsc/pkg/vfs/osvfs/os.go index 21308dd967505..a6e40d21b9332 100644 --- a/tsc/internal/vfs/osvfs/os.go +++ b/tsc/pkg/vfs/osvfs/os.go @@ -11,12 +11,12 @@ import ( "time" "unicode" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/nativepath" - "github.com/microsoft/TypeScript/tsc/internal/osutil" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/internal" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/nativepath" + "github.com/frida/TypeScript/tsc/pkg/osutil" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/internal" ) var ( diff --git a/tsc/internal/vfs/osvfs/os_test.go b/tsc/pkg/vfs/osvfs/os_test.go similarity index 88% rename from tsc/internal/vfs/osvfs/os_test.go rename to tsc/pkg/vfs/osvfs/os_test.go index 8735d77102a19..01d6b6f491c0c 100644 --- a/tsc/internal/vfs/osvfs/os_test.go +++ b/tsc/pkg/vfs/osvfs/os_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/osvfs/realpath_test.go b/tsc/pkg/vfs/osvfs/realpath_test.go similarity index 98% rename from tsc/internal/vfs/osvfs/realpath_test.go rename to tsc/pkg/vfs/osvfs/realpath_test.go index 92dc40caf171f..682f16ef6b7e0 100644 --- a/tsc/internal/vfs/osvfs/realpath_test.go +++ b/tsc/pkg/vfs/osvfs/realpath_test.go @@ -6,7 +6,7 @@ import ( "path/filepath" "testing" - "github.com/microsoft/TypeScript/tsc/internal/tspath" + "github.com/frida/TypeScript/tsc/pkg/tspath" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/trackingvfs/trackingvfs.go b/tsc/pkg/vfs/trackingvfs/trackingvfs.go similarity index 94% rename from tsc/internal/vfs/trackingvfs/trackingvfs.go rename to tsc/pkg/vfs/trackingvfs/trackingvfs.go index afd4d99882853..c6c1d61cc6c91 100644 --- a/tsc/internal/vfs/trackingvfs/trackingvfs.go +++ b/tsc/pkg/vfs/trackingvfs/trackingvfs.go @@ -7,8 +7,8 @@ package trackingvfs import ( "time" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // FS wraps a vfs.FS and records every path accessed via read-like operations. diff --git a/tsc/internal/vfs/vfs.go b/tsc/pkg/vfs/vfs.go similarity index 100% rename from tsc/internal/vfs/vfs.go rename to tsc/pkg/vfs/vfs.go diff --git a/tsc/internal/vfs/vfs_test.go b/tsc/pkg/vfs/vfs_test.go similarity index 81% rename from tsc/internal/vfs/vfs_test.go rename to tsc/pkg/vfs/vfs_test.go index 8c32bdbd4c4a9..84ad73b68eda3 100644 --- a/tsc/internal/vfs/vfs_test.go +++ b/tsc/pkg/vfs/vfs_test.go @@ -4,11 +4,11 @@ import ( "testing" "testing/fstest" - "github.com/microsoft/TypeScript/tsc/internal/repo" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/osvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/repo" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/osvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/vfsmatch/MATCHING_ALGORITHM.md b/tsc/pkg/vfs/vfsmatch/MATCHING_ALGORITHM.md similarity index 100% rename from tsc/internal/vfs/vfsmatch/MATCHING_ALGORITHM.md rename to tsc/pkg/vfs/vfsmatch/MATCHING_ALGORITHM.md diff --git a/tsc/internal/vfs/vfsmatch/bench_test.go b/tsc/pkg/vfs/vfsmatch/bench_test.go similarity index 97% rename from tsc/internal/vfs/vfsmatch/bench_test.go rename to tsc/pkg/vfs/vfsmatch/bench_test.go index e20ce0311b344..37f59282afdf4 100644 --- a/tsc/internal/vfs/vfsmatch/bench_test.go +++ b/tsc/pkg/vfs/vfsmatch/bench_test.go @@ -3,9 +3,9 @@ package vfsmatch import ( "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/cachedvfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/cachedvfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" ) // Benchmark test cases using the same hosts as the unit tests diff --git a/tsc/internal/vfs/vfsmatch/stringer_generated.go b/tsc/pkg/vfs/vfsmatch/stringer_generated.go similarity index 100% rename from tsc/internal/vfs/vfsmatch/stringer_generated.go rename to tsc/pkg/vfs/vfsmatch/stringer_generated.go diff --git a/tsc/internal/vfs/vfsmatch/vfsmatch.go b/tsc/pkg/vfs/vfsmatch/vfsmatch.go similarity index 99% rename from tsc/internal/vfs/vfsmatch/vfsmatch.go rename to tsc/pkg/vfs/vfsmatch/vfsmatch.go index 4396f93831b4d..2f4585866211d 100644 --- a/tsc/internal/vfs/vfsmatch/vfsmatch.go +++ b/tsc/pkg/vfs/vfsmatch/vfsmatch.go @@ -6,10 +6,10 @@ import ( "strings" "unicode/utf8" - "github.com/microsoft/TypeScript/tsc/internal/collections" - "github.com/microsoft/TypeScript/tsc/internal/core" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/collections" + "github.com/frida/TypeScript/tsc/pkg/core" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) //go:generate go tool golang.org/x/tools/cmd/stringer -type=Usage -trimprefix=Usage -output=stringer_generated.go diff --git a/tsc/internal/vfs/vfsmatch/vfsmatch_test.go b/tsc/pkg/vfs/vfsmatch/vfsmatch_test.go similarity index 99% rename from tsc/internal/vfs/vfsmatch/vfsmatch_test.go rename to tsc/pkg/vfs/vfsmatch/vfsmatch_test.go index ecd681f531709..1877eb321f034 100644 --- a/tsc/internal/vfs/vfsmatch/vfsmatch_test.go +++ b/tsc/pkg/vfs/vfsmatch/vfsmatch_test.go @@ -4,8 +4,8 @@ import ( "slices" "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/vfsmock/mock_generated.go b/tsc/pkg/vfs/vfsmock/mock_generated.go similarity index 99% rename from tsc/internal/vfs/vfsmock/mock_generated.go rename to tsc/pkg/vfs/vfsmock/mock_generated.go index 6a838f928574d..3654226f9e713 100644 --- a/tsc/internal/vfs/vfsmock/mock_generated.go +++ b/tsc/pkg/vfs/vfsmock/mock_generated.go @@ -7,7 +7,7 @@ import ( "sync" "time" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) // Ensure, that FSMock does implement vfs.FS. diff --git a/tsc/internal/vfs/vfsmock/wrapper.go b/tsc/pkg/vfs/vfsmock/wrapper.go similarity index 92% rename from tsc/internal/vfs/vfsmock/wrapper.go rename to tsc/pkg/vfs/vfsmock/wrapper.go index 6eb8433917618..d204c7b76b483 100644 --- a/tsc/internal/vfs/vfsmock/wrapper.go +++ b/tsc/pkg/vfs/vfsmock/wrapper.go @@ -1,6 +1,6 @@ package vfsmock -import "github.com/microsoft/TypeScript/tsc/internal/vfs" +import "github.com/frida/TypeScript/tsc/pkg/vfs" // Wrap wraps a vfs.FS and returns a FSMock which calls it. func Wrap(fs vfs.FS) *FSMock { diff --git a/tsc/internal/vfs/vfsmock/wrapper_test.go b/tsc/pkg/vfs/vfsmock/wrapper_test.go similarity index 89% rename from tsc/internal/vfs/vfsmock/wrapper_test.go rename to tsc/pkg/vfs/vfsmock/wrapper_test.go index 971f04d80f860..2ce8f5362dd03 100644 --- a/tsc/internal/vfs/vfsmock/wrapper_test.go +++ b/tsc/pkg/vfs/vfsmock/wrapper_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/microsoft/TypeScript/tsc/internal/vfs/vfstest" + "github.com/frida/TypeScript/tsc/pkg/vfs/vfstest" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/vfstest/vfstest.go b/tsc/pkg/vfs/vfstest/vfstest.go similarity index 98% rename from tsc/internal/vfs/vfstest/vfstest.go rename to tsc/pkg/vfs/vfstest/vfstest.go index 06e33e19c5868..79bcd4018f495 100644 --- a/tsc/internal/vfs/vfstest/vfstest.go +++ b/tsc/pkg/vfs/vfstest/vfstest.go @@ -14,9 +14,9 @@ import ( "time" "unsafe" - "github.com/microsoft/TypeScript/tsc/internal/tspath" - "github.com/microsoft/TypeScript/tsc/internal/vfs" - "github.com/microsoft/TypeScript/tsc/internal/vfs/iovfs" + "github.com/frida/TypeScript/tsc/pkg/tspath" + "github.com/frida/TypeScript/tsc/pkg/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs/iovfs" ) type MapFS struct { diff --git a/tsc/internal/vfs/vfstest/vfstest_test.go b/tsc/pkg/vfs/vfstest/vfstest_test.go similarity index 99% rename from tsc/internal/vfs/vfstest/vfstest_test.go rename to tsc/pkg/vfs/vfstest/vfstest_test.go index 0dfba63aa60ff..a49c567440050 100644 --- a/tsc/internal/vfs/vfstest/vfstest_test.go +++ b/tsc/pkg/vfs/vfstest/vfstest_test.go @@ -11,8 +11,8 @@ import ( "testing/fstest" "unicode/utf16" - "github.com/microsoft/TypeScript/tsc/internal/testutil" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/testutil" + "github.com/frida/TypeScript/tsc/pkg/vfs" "gotest.tools/v3/assert" ) diff --git a/tsc/internal/vfs/wrapvfs/wrapvfs.go b/tsc/pkg/vfs/wrapvfs/wrapvfs.go similarity index 98% rename from tsc/internal/vfs/wrapvfs/wrapvfs.go rename to tsc/pkg/vfs/wrapvfs/wrapvfs.go index 3e2158cf92554..0e2723406f3e2 100644 --- a/tsc/internal/vfs/wrapvfs/wrapvfs.go +++ b/tsc/pkg/vfs/wrapvfs/wrapvfs.go @@ -3,7 +3,7 @@ package wrapvfs import ( "time" - "github.com/microsoft/TypeScript/tsc/internal/vfs" + "github.com/frida/TypeScript/tsc/pkg/vfs" ) type Replacements struct { From 9b11b80fda5658cd43b507efab420a657b353f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 12:12:57 +0200 Subject: [PATCH 2/7] Avoid panic if unable to detect case-sensitivity As this has been observed to fail when we're inside Python on macOS, we'll just assume case-insensitive filesystem for now. This is going to be correct for most macOS systems, and it also seems likely that this check only fails on macOS. --- tsc/pkg/vfs/osvfs/os.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsc/pkg/vfs/osvfs/os.go b/tsc/pkg/vfs/osvfs/os.go index a6e40d21b9332..2ee8a80ed3f40 100644 --- a/tsc/pkg/vfs/osvfs/os.go +++ b/tsc/pkg/vfs/osvfs/os.go @@ -61,7 +61,7 @@ var isFileSystemCaseSensitive = func() bool { // but this is largely good enough for our purposes (and what sys.ts used to do with __filename). exe, err := osutil.Executable() if err != nil { - panic(fmt.Sprintf("vfs: failed to get executable path: %v", err)) + return false } // If the current executable exists under a different case, we must be case-insensitive. From 8c7503dc8d57cca92ab53d1df5e84ce1d9561df2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 12:12:57 +0200 Subject: [PATCH 3/7] Keep testdata out of the module It weighs 342 MB, and a nested module is left out of the module zip. --- tsc/testdata/go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tsc/testdata/go.mod diff --git a/tsc/testdata/go.mod b/tsc/testdata/go.mod new file mode 100644 index 0000000000000..202b92258bb40 --- /dev/null +++ b/tsc/testdata/go.mod @@ -0,0 +1,3 @@ +module github.com/frida/TypeScript/tsc/testdata + +go 1.26 From e55514c4058eb087556d9321976830566359f119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 12:52:57 +0200 Subject: [PATCH 4/7] fswatch: Leave FSEvents out of iOS builds iOS has no FSEvents, and the symbols imported through cgo_import_dynamic must resolve when linking externally. --- tsc/pkg/fswatch/canonicalize_darwin.go | 2 +- tsc/pkg/fswatch/canonicalize_other.go | 2 +- tsc/pkg/fswatch/fsevents_darwin.go | 2 +- tsc/pkg/fswatch/fsevents_darwin_ffi.go | 2 +- tsc/pkg/fswatch/fsevents_darwin_ffi.s | 2 +- tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s | 2 +- tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tsc/pkg/fswatch/canonicalize_darwin.go b/tsc/pkg/fswatch/canonicalize_darwin.go index 9a81ffdfb5b77..7ba9c5b8f4a55 100644 --- a/tsc/pkg/fswatch/canonicalize_darwin.go +++ b/tsc/pkg/fswatch/canonicalize_darwin.go @@ -1,4 +1,4 @@ -//go:build darwin && (amd64 || arm64) +//go:build darwin && !ios && (amd64 || arm64) package fswatch diff --git a/tsc/pkg/fswatch/canonicalize_other.go b/tsc/pkg/fswatch/canonicalize_other.go index 5ed784c394748..e3e1cb2a38c1f 100644 --- a/tsc/pkg/fswatch/canonicalize_other.go +++ b/tsc/pkg/fswatch/canonicalize_other.go @@ -1,4 +1,4 @@ -//go:build !(darwin && (amd64 || arm64)) +//go:build !(darwin && !ios && (amd64 || arm64)) package fswatch diff --git a/tsc/pkg/fswatch/fsevents_darwin.go b/tsc/pkg/fswatch/fsevents_darwin.go index 6e0614ef0aad6..1598f4f8e71dd 100644 --- a/tsc/pkg/fswatch/fsevents_darwin.go +++ b/tsc/pkg/fswatch/fsevents_darwin.go @@ -1,4 +1,4 @@ -//go:build darwin && (amd64 || arm64) +//go:build darwin && !ios && (amd64 || arm64) package fswatch diff --git a/tsc/pkg/fswatch/fsevents_darwin_ffi.go b/tsc/pkg/fswatch/fsevents_darwin_ffi.go index 30294b9a43f51..a0548e98c651b 100644 --- a/tsc/pkg/fswatch/fsevents_darwin_ffi.go +++ b/tsc/pkg/fswatch/fsevents_darwin_ffi.go @@ -1,4 +1,4 @@ -//go:build darwin && (amd64 || arm64) +//go:build darwin && !ios && (amd64 || arm64) package fswatch diff --git a/tsc/pkg/fswatch/fsevents_darwin_ffi.s b/tsc/pkg/fswatch/fsevents_darwin_ffi.s index 07608498b5097..c476dd80184bb 100644 --- a/tsc/pkg/fswatch/fsevents_darwin_ffi.s +++ b/tsc/pkg/fswatch/fsevents_darwin_ffi.s @@ -1,4 +1,4 @@ -//go:build darwin && (amd64 || arm64) +//go:build darwin && !ios && (amd64 || arm64) #include "textflag.h" diff --git a/tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s b/tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s index 2a286117d8312..bfec8065cda06 100644 --- a/tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s +++ b/tsc/pkg/fswatch/fsevents_darwin_ffi_amd64.s @@ -1,4 +1,4 @@ -//go:build darwin && amd64 +//go:build darwin && !ios && amd64 #include "textflag.h" diff --git a/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s b/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s index dd0d2ef49a850..a81ba5b14cad2 100644 --- a/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s +++ b/tsc/pkg/fswatch/fsevents_darwin_ffi_arm64.s @@ -1,4 +1,4 @@ -//go:build darwin && arm64 +//go:build darwin && !ios && arm64 #include "textflag.h" From 147fb6dd53bdfd6c6c32756b445bc35196c88be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 13:54:25 +0200 Subject: [PATCH 5/7] lsp: Answer a panicking handler with an error Embedded in a host process, a panic would take that process down. --- tsc/pkg/lsp/server.go | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/tsc/pkg/lsp/server.go b/tsc/pkg/lsp/server.go index 0a1e68c153f87..89167418696e1 100644 --- a/tsc/pkg/lsp/server.go +++ b/tsc/pkg/lsp/server.go @@ -1146,7 +1146,7 @@ func (s *Server) handleRequestOrNotification(ctx context.Context, req *lsproto.R if handler := handlers()[req.Method]; handler != nil { start := time.Now() - doAsyncWork, err := handler(s, ctx, req) + doAsyncWork, err := callHandler(handler, s, ctx, req) idStr := "" if req.ID != nil { idStr = " (" + req.ID.String() + ")" @@ -1168,7 +1168,7 @@ func (s *Server) handleRequestOrNotification(ctx context.Context, req *lsproto.R if doAsyncWork != nil { return func() error { // note: ctx.Err() has to be checked in the async work to allow async handlers to cleanup resources correctly - asyncWorkErr := doAsyncWork() + asyncWorkErr := callAsyncWork(doAsyncWork) _, isUserFacing := errors.AsType[userFacingRequestFailedError](asyncWorkErr) isRealError := asyncWorkErr != nil && !isUserFacing if isRealError { @@ -1191,6 +1191,25 @@ func (s *Server) handleRequestOrNotification(ctx context.Context, req *lsproto.R return nil, nil } +func callHandler(handler handlerFunc, s *Server, ctx context.Context, req *lsproto.RequestMessage) (work func() error, err error) { + defer func() { + if recovered := recover(); recovered != nil { + work = nil + err = fmt.Errorf("%w: %v", lsproto.ErrorCodeInternalError, recovered) + } + }() + return handler(s, ctx, req) +} + +func callAsyncWork(work func() error) (err error) { + defer func() { + if recovered := recover(); recovered != nil { + err = fmt.Errorf("%w: %v", lsproto.ErrorCodeInternalError, recovered) + } + }() + return work() +} + // contentMapperFallbackResponse returns an empty response for requests made for // unknown file types not handled by any content mapper. This typically serves a // short window in time between when the server has unregistered content mapper @@ -1224,7 +1243,9 @@ func contentMapperFallbackResponse(method lsproto.Method, err error) (any, bool) // handlerMap maps LSP method to a handler function. The handler function executes any work that must be done synchronously // before other requests/notifications can be processed, and returns any additional work as a function to be executed // asynchronously after the synchronous work is complete. -type handlerMap map[lsproto.Method]func(*Server, context.Context, *lsproto.RequestMessage) (func() error, error) +type handlerFunc func(*Server, context.Context, *lsproto.RequestMessage) (func() error, error) + +type handlerMap map[lsproto.Method]handlerFunc var handlers = sync.OnceValue(func() handlerMap { handlers := make(handlerMap) From b808dbb27f9d5d19f176105c687d7bd9cb02dbce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 19:23:06 +0200 Subject: [PATCH 6/7] project: Export a disk file handle constructor Let an embedder acquire files from a ParseCache it shares with a Session. --- tsc/pkg/project/overlayfs.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsc/pkg/project/overlayfs.go b/tsc/pkg/project/overlayfs.go index be6ef9e0676c8..152adb38f45b6 100644 --- a/tsc/pkg/project/overlayfs.go +++ b/tsc/pkg/project/overlayfs.go @@ -88,6 +88,10 @@ func newDiskFile(fileName string, content string) *diskFile { var _ FileHandle = (*diskFile)(nil) +func NewDiskFile(fileName string, content string) FileHandle { + return newDiskFile(fileName, content) +} + func (f *diskFile) Version() int32 { return 0 } From e00a6a37c16edbcd429253d4e39e4ac89b016491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Sun, 6 Sep 2026 19:33:12 +0200 Subject: [PATCH 7/7] project: Release the snapshot on Close Drop the session's ref on its current snapshot, and close the session when Run returns, so a shared parse cache does not keep a gone session's files. --- tsc/pkg/lsp/server.go | 6 +++++- tsc/pkg/project/session.go | 10 +++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/tsc/pkg/lsp/server.go b/tsc/pkg/lsp/server.go index 89167418696e1..d506766cb7f04 100644 --- a/tsc/pkg/lsp/server.go +++ b/tsc/pkg/lsp/server.go @@ -874,7 +874,11 @@ func (s *Server) Run(ctx context.Context) error { }) go func() { readLoopErr <- s.readLoop(ctx) }() - if err := g.Wait(); err != nil && !errors.Is(err, io.EOF) && ctx.Err() != nil { + err := g.Wait() + if s.session != nil { + s.session.Close() + } + if err != nil && !errors.Is(err, io.EOF) && ctx.Err() != nil { return err } return nil diff --git a/tsc/pkg/project/session.go b/tsc/pkg/project/session.go index d223eab9ccc8f..15effb41223c4 100644 --- a/tsc/pkg/project/session.go +++ b/tsc/pkg/project/session.go @@ -14,7 +14,6 @@ import ( "sync/atomic" "time" - osmemory "github.com/mackerelio/go-osstat/memory" "github.com/frida/TypeScript/tsc/pkg/ast" "github.com/frida/TypeScript/tsc/pkg/collections" "github.com/frida/TypeScript/tsc/pkg/contentmapper" @@ -31,6 +30,7 @@ import ( "github.com/frida/TypeScript/tsc/pkg/project/logging" "github.com/frida/TypeScript/tsc/pkg/tspath" "github.com/frida/TypeScript/tsc/pkg/vfs" + osmemory "github.com/mackerelio/go-osstat/memory" ) type UpdateReason int @@ -135,6 +135,7 @@ type Session struct { snapshot *Snapshot snapshotMu sync.RWMutex snapshotUpdateMu sync.Mutex + closeOnce sync.Once // scheduledSnapshotUpdateCancel is the cancelation function for a scheduled // snapshot update. Snapshot updates are scheduled and debounced after file closes. @@ -1671,6 +1672,10 @@ func (s *Session) updateWatches(oldSnapshot *Snapshot, newSnapshot *Snapshot) er } func (s *Session) Close() { + s.closeOnce.Do(s.close) +} + +func (s *Session) close() { // Cancel any pending scheduled snapshot update s.cancelScheduledSnapshotUpdate() // Cancel any pending diagnostics refresh @@ -1683,6 +1688,9 @@ func (s *Session) Close() { s.stopPerformanceTelemetry() s.backgroundQueue.Close() s.SnapshotHost.Close() + s.snapshotMu.Lock() + s.snapshot.Deref() + s.snapshotMu.Unlock() } func (s *Session) flushChanges(ctx context.Context) (FileChangeSummary, map[tspath.Path]*Overlay, map[tspath.Path]*ATAStateChange, *lsutil.UserPreferences) {