mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
The class `Overridable` generalizes the existing class `Virtualizable` by also including accessors. This allows for quite a bit of code to be simplified.
9 lines
152 B
Plaintext
9 lines
152 B
Plaintext
import csharp
|
|
|
|
from Overridable v1, Overridable v2
|
|
where
|
|
v1 = v2.getAnUltimateImplementor() and
|
|
v1.fromSource() and
|
|
v2.fromSource()
|
|
select v1, v2
|