Files
codeql/powershell/ql/lib/semmle/code/powershell/ScriptBlockExpr.qll
Mathias Vorreiter Pedersen 71349afae7 PS: Add more AST classes.
2024-08-26 19:21:28 +01:00

10 lines
293 B
Plaintext

import powershell
class ScriptBlockExpr extends @script_block_expression, Expr {
override SourceLocation getLocation() { script_block_expression_location(this, result) }
override string toString() { result = "{...}" }
ScriptBlock getBody() { script_block_expression(this, result) }
}