-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ServerErrors][JavaScript] 5.8.0-dev.20250105 vs 5.7.2 #60917
Comments
New server no longer reports this error: RangeError: Maximum call stack size exceeded
Affected reposless/less.jsRaw error text:RepoResults8/less.less.js.rawError.txt in the artifact folder Replay commands: RepoResults8/less.less.js.replay.txt in the artifact folder
Last few requests{"seq":3893,"type":"request","command":"organizeImports","arguments":{"scope":{"type":"file","args":{"file":"@PROJECT_ROOT@/packages/less/test/browser/less/plugin/plugin.js"}},"skipDestructiveCodeActions":false}}
{"seq":3894,"type":"request","command":"getOutliningSpans","arguments":{"file":"@PROJECT_ROOT@/packages/less/test/browser/less/plugin/plugin.js"}}
{"seq":3895,"type":"request","command":"navtree","arguments":{"file":"@PROJECT_ROOT@/packages/less/test/browser/less/plugin/plugin.js"}}
{"seq":3896,"type":"request","command":"navbar","arguments":{"file":"@PROJECT_ROOT@/packages/less/test/browser/less/plugin/plugin.js"}}
Repro steps#!/bin/bash
git clone https://github.com/less/less.js --recurse-submodules
git -C "./less.js" reset --hard 9d92b0ca3b00fec32c3411e7d445c2ea208b86de
npm --prefix "./less.js" ci --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
downloadUrl=$(curl -s "https://typescript.visualstudio.com/TypeScript/_apis/build/builds/164473/artifacts?artifactName=RepoResults8&api-version=7.0" | jq -r ".resource.downloadUrl")
wget -O RepoResults8.zip "$downloadUrl"
unzip -p RepoResults8.zip RepoResults8/less.less.js.replay.txt > less.less.js.replay.txt
npm install --no-save @typescript/server-replay To run the repro: # `npx tsreplay --help` to learn about helpful switches for debugging, logging, etc.
npx tsreplay ./less.js ./less.less.js.replay.txt <PATH_TO_tsserver.js> |
Server exited prematurely with code unknown and signal SIGABRT
Affected repostastejs/todomvcRaw error text:RepoResults3/tastejs.todomvc.rawError.txt in the artifact folder Replay commands: RepoResults3/tastejs.todomvc.replay.txt in the artifact folder
Last few requests{"seq":22628,"type":"request","command":"completionInfo","arguments":{"file":"@PROJECT_ROOT@/examples/angular-dart/web/main.dart.js","line":17094,"offset":24,"includeExternalModuleExports":false,"triggerKind":2,"triggerCharacter":" "}}
{"seq":22629,"type":"request","command":"completionInfo","arguments":{"file":"@PROJECT_ROOT@/examples/angular-dart/web/main.dart.js","line":17130,"offset":25,"includeExternalModuleExports":false,"triggerKind":1}}
{"seq":22630,"type":"request","command":"completionEntryDetails","arguments":{"file":"@PROJECT_ROOT@/examples/angular-dart/web/main.dart.js","line":17130,"offset":25,"entryNames":["$"]}}
{"seq":22631,"type":"request","command":"completionInfo","arguments":{"file":"@PROJECT_ROOT@/examples/angular-dart/web/main.dart.js","line":17150,"offset":2,"includeExternalModuleExports":false,"triggerKind":1}}
Repro steps#!/bin/bash
git clone https://github.com/tastejs/todomvc --recurse-submodules
git -C "./todomvc" reset --hard c8aedce5f512e47991a62b37b9ee3ef38df1a4b6
downloadUrl=$(curl -s "https://typescript.visualstudio.com/TypeScript/_apis/build/builds/164473/artifacts?artifactName=RepoResults3&api-version=7.0" | jq -r ".resource.downloadUrl")
wget -O RepoResults3.zip "$downloadUrl"
unzip -p RepoResults3.zip RepoResults3/tastejs.todomvc.replay.txt > tastejs.todomvc.replay.txt
npm install --no-save @typescript/server-replay To run the repro: # `npx tsreplay --help` to learn about helpful switches for debugging, logging, etc.
npx tsreplay ./todomvc ./tastejs.todomvc.replay.txt <PATH_TO_tsserver.js> |
TypeError: Cannot read properties of undefined (reading 'sourceFile')
Affected reposeslint/eslintRaw error text:RepoResults4/eslint.eslint.rawError.txt in the artifact folder Replay commands: RepoResults4/eslint.eslint.replay.txt in the artifact folder
Last few requests{"seq":144,"type":"request","command":"completionEntryDetails","arguments":{"file":"@PROJECT_ROOT@/tools/eslint-fuzzer.js","line":126,"offset":8,"entryNames":["@abstract"]}}
{"seq":145,"type":"request","command":"completionInfo","arguments":{"file":"@PROJECT_ROOT@/tools/eslint-fuzzer.js","line":195,"offset":31,"includeExternalModuleExports":false,"triggerKind":2,"triggerCharacter":" "}}
{"seq":146,"type":"request","command":"updateOpen","arguments":{"changedFiles":[],"closedFiles":["@PROJECT_ROOT@/eslint.config.js"],"openFiles":[]}}
{"seq":147,"type":"request","command":"updateOpen","arguments":{"changedFiles":[],"closedFiles":[],"openFiles":[{"file":"@PROJECT_ROOT@/tools/config-rule.js","projectRootPath":"@PROJECT_ROOT@"}]}}
Repro steps#!/bin/bash
git clone https://github.com/eslint/eslint --recurse-submodules
git -C "./eslint" reset --hard 36ef8bbeab495ef2598a4b1f52e32b4cb50be5e2
# Install packages (exact steps are below, but it might be easier to follow the repo readme)
npm --prefix "./eslint" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./eslint/packages/js" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./eslint/packages/eslint-config-eslint" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./eslint/docs" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./eslint/docs/_examples/integration-tutorial-code" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./eslint/docs/_examples/custom-rule-tutorial-code" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
downloadUrl=$(curl -s "https://typescript.visualstudio.com/TypeScript/_apis/build/builds/164473/artifacts?artifactName=RepoResults4&api-version=7.0" | jq -r ".resource.downloadUrl")
wget -O RepoResults4.zip "$downloadUrl"
unzip -p RepoResults4.zip RepoResults4/eslint.eslint.replay.txt > eslint.eslint.replay.txt
npm install --no-save @typescript/server-replay To run the repro: # `npx tsreplay --help` to learn about helpful switches for debugging, logging, etc.
npx tsreplay ./eslint ./eslint.eslint.replay.txt <PATH_TO_tsserver.js> |
Error: Debug Failure. Did not expect ObjectLiteralExpression to have an Identifier in its trivia
Affected reposHumanSignal/label-studioRaw error text:RepoResults6/HumanSignal.label-studio.rawError.txt in the artifact folder Replay commands: RepoResults6/HumanSignal.label-studio.replay.txt in the artifact folder
Last few requests{"seq":566,"type":"request","command":"completionInfo","arguments":{"file":"@PROJECT_ROOT@/web/dist/apps/labelstudio/main.js","line":2,"offset":71883,"includeExternalModuleExports":false,"triggerKind":1}}
{"seq":567,"type":"request","command":"completionEntryDetails","arguments":{"file":"@PROJECT_ROOT@/web/dist/apps/labelstudio/main.js","line":2,"offset":71883,"entryNames":["_"]}}
{"seq":568,"type":"request","command":"definitionAndBoundSpan","arguments":{"file":"@PROJECT_ROOT@/web/dist/apps/labelstudio/main.js","line":2,"offset":71901}}
{"seq":569,"type":"request","command":"references","arguments":{"file":"@PROJECT_ROOT@/web/dist/apps/labelstudio/main.js","line":2,"offset":71901}}
Repro steps#!/bin/bash
git clone https://github.com/HumanSignal/label-studio --recurse-submodules
git -C "./label-studio" reset --hard 58cb2f0297735167cb62be9234c72cee0c6aab98
# Install packages (exact steps are below, but it might be easier to follow the repo readme)
yarn --cwd "./label-studio/web" install --ignore-engines --ignore-scripts --silent
yarn --cwd "./label-studio/web/tools/version" install --ignore-engines --ignore-scripts --silent
npm --prefix "./label-studio/web/libs/ui" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./label-studio/web/libs/frontend-test/src/bin/assets" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
npm --prefix "./label-studio/web/libs/editor" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
yarn --cwd "./label-studio/web/libs/editor/tests/e2e" install --ignore-engines --ignore-scripts --silent
npm --prefix "./label-studio/web/libs/datamanager" install --prefer-offline --no-audit --no-progress --legacy-peer-deps --ignore-scripts -q
yarn --cwd "./label-studio/docs" install --ignore-engines --ignore-scripts --silent
downloadUrl=$(curl -s "https://typescript.visualstudio.com/TypeScript/_apis/build/builds/164473/artifacts?artifactName=RepoResults6&api-version=7.0" | jq -r ".resource.downloadUrl")
wget -O RepoResults6.zip "$downloadUrl"
unzip -p RepoResults6.zip RepoResults6/HumanSignal.label-studio.replay.txt > HumanSignal.label-studio.replay.txt
npm install --no-save @typescript/server-replay To run the repro: # `npx tsreplay --help` to learn about helpful switches for debugging, logging, etc.
npx tsreplay ./label-studio ./HumanSignal.label-studio.replay.txt <PATH_TO_tsserver.js> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following errors were reported by 5.8.0-dev.20250105 vs 5.7.2
Pipeline that generated this bug
Logs for the pipeline run
File that generated the pipeline
This run considered 300 popular TS repos from GH (after skipping the top 0).
Successfully analyzed 289 of 300 visited repos
Investigation Status
The text was updated successfully, but these errors were encountered: