mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
13 lines
225 B
Plaintext
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() }
|
|
}
|