mirror of
https://github.com/github/codeql.git
synced 2026-05-25 00:27:09 +02:00
11 lines
402 B
Plaintext
11 lines
402 B
Plaintext
import powershell
|
|
|
|
class StringConstExpr extends @string_constant_expression, BaseConstExpr {
|
|
StringLiteral getValue() { string_constant_expression(this, result) }
|
|
|
|
/** Get the full string literal with all its parts concatenated */
|
|
override string toString() { result = this.getValue().toString() }
|
|
|
|
override SourceLocation getLocation() { string_constant_expression_location(this, result) }
|
|
}
|