-
Notifications
You must be signed in to change notification settings - Fork 22
fix: support python @classmethod decorator #106
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -246,6 +246,21 @@ class PythonAnalyzer extends (Analyzer as any) { | |
| return SymbolValue(new_node) | ||
| } | ||
|
|
||
| /** | ||
| * | ||
| * @param fclos | ||
| * @param argvalues | ||
| * @param state | ||
| * @param node | ||
| * @param scope | ||
| */ | ||
| executeSingleCall(fclos: any, argvalues: any, state: any, node: any, scope: any) { | ||
|
Contributor
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. The method signature uses |
||
| if (fclos.decorators?.some((d: any) => d.name === 'classmethod') && argvalues[0]?.vtype === 'undefine') { | ||
|
Contributor
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. 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. Decorator check uses wrong property nameHigh Severity The decorator check |
||
| argvalues[0] = fclos._this | ||
| } | ||
| return super.executeSingleCall(fclos, argvalues, state, node, scope) | ||
| } | ||
|
|
||
| /** | ||
| * | ||
| * @param scope | ||
|
|
||


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.
The JSDoc for this method is incomplete. It should explain that this method is overridden to handle Python's
@classmethoddecorator, where the first argument (cls) is implicitly passed.