mirror of
https://github.com/github/codeql.git
synced 2026-05-12 10:19:29 +02:00
19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
/**
|
|
* Provides a class for modeling expressions used to supply
|
|
* credentials.
|
|
*/
|
|
|
|
import javascript
|
|
|
|
/**
|
|
* An expression whose value is used to supply credentials such
|
|
* as a user name, a password, or a key.
|
|
*/
|
|
abstract class CredentialsExpr extends Expr {
|
|
/**
|
|
* Gets a description of the kind of credential this expression is used as,
|
|
* such as `"user name"`, `"password"`, `"key"`.
|
|
*/
|
|
abstract string getCredentialsKind();
|
|
}
|