mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 14:37:45 +07:00
PyTypeChecker.analyzeCallSite() was used for analyzing the return type of the call in the same way for different expressions: a[b] and a[b](c) as analyzeCallSite(a[b]) making it impossible to distinguish between the two. Now we pass a PyCallExpression for analyzing the function call instead of a PyQualifiedExpression.