mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
16 lines
419 B
Plaintext
16 lines
419 B
Plaintext
/**
|
|
* Provides `Parameterizable` class.
|
|
*/
|
|
|
|
private import CIL
|
|
private import dotnet
|
|
|
|
/**
|
|
* A parameterizable entity, such as `FunctionPointerType` or `Method`.
|
|
*/
|
|
class Parameterizable extends DotNet::Parameterizable, Element, @cil_parameterizable {
|
|
override Parameter getRawParameter(int n) { cil_parameter(result, this, n, _) }
|
|
|
|
override Parameter getParameter(int n) { cil_parameter(result, this, n, _) }
|
|
}
|