This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 646
Don`t process function signatures on comment lines #2496
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c249f49
Merge remote-tracking branch 'upstream/master'
lggomez 7501734
Merge remote-tracking branch 'origin/master'
lggomez f87a5fc
Don´t process function signatures on comment lines
lggomez c4e886a
Remove false positives on comment line check
lggomez 4617bed
Fix regression on parameter backtracking
lggomez 5b7adc7
Improve comment detection
lggomez 76543e3
Remove old comment
ramya-rao-a File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
import vscode = require('vscode'); | ||
import { SignatureHelpProvider, SignatureHelp, SignatureInformation, ParameterInformation, TextDocument, Position, CancellationToken, WorkspaceConfiguration } from 'vscode'; | ||
import { definitionLocation } from './goDeclaration'; | ||
import { getParametersAndReturnType, isPositionInString } from './util'; | ||
import { getParametersAndReturnType, isPositionInString, isPositionInComment } from './util'; | ||
|
||
export class GoSignatureHelpProvider implements SignatureHelpProvider { | ||
|
||
|
@@ -94,12 +94,18 @@ export class GoSignatureHelpProvider implements SignatureHelpProvider { | |
for (let lineNr = position.line; lineNr >= 0 && maxLookupLines >= 0; lineNr-- , maxLookupLines--) { | ||
|
||
const line = document.lineAt(lineNr); | ||
|
||
// Stop processing if we're inside a comment | ||
if (isPositionInComment(document, position)) { | ||
return null; | ||
} | ||
|
||
// if its current line, get the text until the position given, otherwise get the full line. | ||
const [currentLine, characterPosition] = lineNr === position.line | ||
? [line.text.substring(0, position.character), position.character] | ||
: [line.text, line.text.length - 1]; | ||
|
||
for (let char = characterPosition - 1; char >= 0; char--) { | ||
for (let char = characterPosition; char >= 0; char--) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sometime during the last year I introduced this regression with the belief this would prevent an issue in the future, and while even though the code path shouldn't have caused any issues I remained none the wiser 🤦♂️ Sorry for that. This should fix it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No problem @lggomez, thanks for the fix! |
||
switch (currentLine[char]) { | ||
case '(': | ||
parenBalance--; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will only catch the case where the entire line starts with the comment.
What about the below case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That is the most basic case of course. Either way, I'm noticing the bug isn't completely dependent on comments presence so there is still something else in it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I decided to reuse the same function made for suggestions logic on this one