Files
codeql/csharp/ql/lib/semmle/code/cil/Parameterizable.qll
Andrew Eisenberg c9f1c98390 Packaging: C# refactoring
Split c# pack into `codeql/csharp-all` and `codeql/csharp-queries`.
2021-08-19 14:09:35 -07:00

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, _) }
}