We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MonacoOutlineContribution
Range
theia/packages/monaco/src/browser/monaco-outline-contribution.ts
Lines 166 to 167 in c7ca0d5
Lines 259 to 271 in c7ca0d5
Creates a range with all values set to -1
-1
Line 245 in c7ca0d5
Uses vscode-languageserver-types Range.is
vscode-languageserver-types
Range.is
Which includes this check:
function uinteger(value) { return toString.call(value) === '[object Number]' && 0 <= value && value <= 2147483647; }
So check fails, leading to a call to
Lines 280 to 282 in c7ca0d5
Which passes undefined back into
undefined
Leading to
This seems to be necessary for the procedure that checks for parents to examine the 'root' nodes.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Bug Description:
theia/packages/monaco/src/browser/monaco-outline-contribution.ts
Lines 166 to 167 in c7ca0d5
theia/packages/monaco/src/browser/monaco-outline-contribution.ts
Lines 259 to 271 in c7ca0d5
Creates a range with all values set to
-1
theia/packages/monaco/src/browser/monaco-outline-contribution.ts
Line 245 in c7ca0d5
Uses
vscode-languageserver-types
Range.is
Which includes this check:
So check fails, leading to a call to
theia/packages/monaco/src/browser/monaco-outline-contribution.ts
Lines 280 to 282 in c7ca0d5
Which passes
undefined
back intotheia/packages/monaco/src/browser/monaco-outline-contribution.ts
Lines 259 to 271 in c7ca0d5
Leading to
Steps to Reproduce:
undefined
Additional Information
The text was updated successfully, but these errors were encountered: