mirror of
https://github.com/github/codeql.git
synced 2026-05-27 01:21:23 +02:00
10 lines
293 B
Plaintext
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) }
|
|
}
|