Open ptal opened 6 years ago
Problem: Calling a method this.m() means that m has accessed to every field of this and we cannot control which ones are accessed and how.
this.m()
m
this
Solution: Add a static analysis to prevent non-static method in spacetime modules.
See also #3.
Problem: Calling a method
this.m()
means thatm
has accessed to every field ofthis
and we cannot control which ones are accessed and how.Solution: Add a static analysis to prevent non-static method in spacetime modules.
See also #3.