mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
457 B
457 B
0.9.2
Minor Analysis Improvements
- Type tracking is now aware of reads of captured variables (variables defined in an outer scope). This leads to a richer API graph, and may lead to more results in some queries.
- Added more content-flow/field-flow for dictionaries, by adding support for reads through
mydict.get("key")andmydict.setdefault("key", value), and store steps throughdict["key"] = valueandmydict.setdefault("key", value).