mirror of
https://github.com/github/codeql.git
synced 2026-05-26 17:11:24 +02:00
8 lines
210 B
Plaintext
8 lines
210 B
Plaintext
import powershell
|
|
|
|
class UsingExpr extends @using_expression, Expr {
|
|
override string toString() { result = "$using..." }
|
|
|
|
override SourceLocation getLocation() { using_expression_location(this, result) }
|
|
}
|