Files
codeql/csharp/ql/lib/semmle/code/dotnet/Utils.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

13 lines
225 B
Plaintext

/**
* Provides some useful .Net classes.
*/
import Element
import Expr
/** A throw element. */
class Throw extends Element, @dotnet_throw {
/** Gets the expression being thrown, if any. */
Expr getExpr() { none() }
}