mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
872 B
872 B
category
| category |
|---|
| breaking |
- All modules that depend on the points-to analysis have now been removed from the top level
python.qllmodule. To access the points-to functionality, import the newLegacyPointsTomodule. This also means that some predicates have been removed from various classes, for instanceFunction.getFunctionObject(). To access these predicates, import theLegacyPointsTomodule and use theFunctionWithPointsToclass instead. Most cases follow this pattern, but there are a few exceptions:- The
getLiteralObjectmethod onImmutableLiteralsubclasses has been replaced with a predicategetLiteralObject(ImmutableLiteral l)in theLegacyPointsTomodule. - The
getMetricsmethod onFunction,Class, andModulehas been removed. To access metrics, importLegacyPointsToand use the classesFunctionMetrics, etc. instead.
- The