mirror of
https://github.com/github/codeql.git
synced 2026-04-20 14:34:04 +02:00
12 lines
384 B
Plaintext
12 lines
384 B
Plaintext
/**
|
|
* Provides classes that heuristically increase the extent of `StandardLibrary::PromiseDefinition`.
|
|
*
|
|
* Note: This module should not be a permanent part of the standard library imports.
|
|
*/
|
|
|
|
import javascript
|
|
|
|
private class PromotedPromiseCandidate extends PromiseDefinition, PromiseCandidate {
|
|
override DataFlow::FunctionNode getExecutor() { result = this.getCallback(0) }
|
|
}
|