mirror of
https://github.com/github/codeql.git
synced 2026-05-13 02:39:26 +02:00
12 lines
379 B
Plaintext
12 lines
379 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 = getCallback(0) }
|
|
}
|