Skip to content
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

JS: QL-side type/name resolution for TypeScript and JSDoc #19078

Draft
wants to merge 47 commits into
base: main
Choose a base branch
from

Conversation

asgerf
Copy link
Contributor

@asgerf asgerf commented Mar 20, 2025

No description provided.

@github-actions github-actions bot added the JS label Mar 20, 2025
@asgerf asgerf force-pushed the js/name-resolution branch from cee75ae to fa3e5ed Compare March 20, 2025 15:31
}

/** Helps track flow from a particular set of source nodes. */
module Track<nodeSig/1 isSource> {

Check warning

Code scanning / CodeQL

Dead code Warning

This code is never used, and it's not publicly exported.
target = cls.getConstructor().getBody()
)
or
valueHasType(call.(InvokeExpr).getCallee(), trackFunctionValue(target))

Check warning

Code scanning / CodeQL

Redundant cast Warning

Redundant cast to
InvokeExpr
.
or
valueHasType(call.(InvokeExpr).getCallee(), trackFunctionValue(target))
or
valueHasType(call.(InvokeExpr).getCallee(), trackFunctionType(target)) and

Check warning

Code scanning / CodeQL

Redundant cast Warning

Redundant cast to
InvokeExpr
.
)
or
exists(InterfaceDefinition interface, CallSignature sig |
valueHasType(call.(InvokeExpr).getCallee(), trackType(interface)) and

Check warning

Code scanning / CodeQL

Redundant cast Warning

Redundant cast to
InvokeExpr
.
@asgerf asgerf force-pushed the js/name-resolution branch 2 times, most recently from fe9b23d to c07cc6e Compare March 27, 2025 20:20
asgerf added 23 commits April 3, 2025 11:19
Previously, ambient declarations were ignored during variable resolution in the extractor.

However, this makes it difficult to implement name/type resolution in QL, since ambient declaration can affect type checking.

Instead, the extractor's variable resolution no longer cares whether a given declaration is ambient.

The original behaviour was not particularly important to preserve since 'declare' can only appear at the top-level
or inside 'namespace' declarations.
@asgerf asgerf force-pushed the js/name-resolution branch from 2d928f2 to 3b395af Compare April 3, 2025 09:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant