mirror of
https://github.com/github/codeql.git
synced 2026-02-13 13:41:08 +01:00
12 lines
312 B
Plaintext
12 lines
312 B
Plaintext
import python
|
|
private import LegacyPointsTo
|
|
|
|
from PropertyValue p, string method_name, FunctionValue method
|
|
where
|
|
method_name = "getter" and method = p.getGetter()
|
|
or
|
|
method_name = "setter" and method = p.getSetter()
|
|
or
|
|
method_name = "deleter" and method = p.getDeleter()
|
|
select method, method_name, p
|