Add change note

This commit is contained in:
Chris Smowton
2023-10-24 11:45:41 +01:00
committed by GitHub
parent 3627eb2bcf
commit efb63aada3

View File

@@ -0,0 +1,5 @@
---
category: minorAnalysis
---
* Java classes `MethodAccess`, `LValue` and `RValue` were renamed to `MethodCall`, `VarWrite` and `VarRead` respectively, along with related predicates and class names. The old names remain usable for the time being but are deprecated and should be replaced.
* New class `NewClassExpr` was added to represent specifically an explicit `new ClassName(...)` invocation, in contrast to `ClassInstanceExpr` which also includes expressions that implicitly instantiate classes, such as defining a lambda or taking a method reference.