Merged
Conversation
Relates to https://github.com/sourcegraph/sourcegraph/issues/45800 With the current rules we don't recognize `isActive` in ``` ... let isActive = a === b ... ``` because it is neither exported ``` --regex-tsx=/^[ \t]*export[ \t]+(var|let|const)[ \t]+([a-zA-Z0-9_$]+)/\2/v,variable/2 ``` nor is it an anonymous function ``` --regex-tsx=/^[ \t]*(var|let|const)[ \t]+([a-zA-Z0-9_$]+)[ \t]*=[ \t]*function[ \t]*[*]?[ \t]*\(\)/\2/v,variable/ ``` Replacing the latter rule with this more liberal one captures both, anonymous functions and unexported variables. ``` --regex-tsx=/^[ \t]*(var|let|const)[ \t]+([a-zA-Z0-9_$]+)/\2/v,variable/ ```
olafurpg
approved these changes
Jan 11, 2023
Kvarnefalk
pushed a commit
to Kvarnefalk/go-ctags
that referenced
this pull request
Sep 28, 2023
Relates to https://github.com/sourcegraph/sourcegraph/issues/45800 With the current rules we don't recognise local vars in typescript. This PR changes an existing rule to be less restrictive to include local vars, too.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Relates to https://github.com/sourcegraph/sourcegraph/issues/45800
With the current rules we don't recognize
isActiveinbecause it is neither exported
nor is it an anonymous function
I am not sure about the motivation to exclude local vars. Maybe the intent was to limit the size of the tag files?
Replacing the latter rule with the following, more liberal one captures both, anonymous functions and unexported variables.
Test plan
with App.tsx