mirror of
https://github.com/github/codeql.git
synced 2026-04-20 06:24:03 +02:00
17 lines
450 B
Plaintext
17 lines
450 B
Plaintext
/*
|
|
* For internal use only.
|
|
*/
|
|
|
|
private import experimental.adaptivethreatmodeling.FeaturizationConfig
|
|
|
|
/**
|
|
* A featurization config that featurizes all endpoints.
|
|
*
|
|
* This should only be used in extraction queries and tests.
|
|
*/
|
|
class NoRestrictionsFeaturizationConfig extends FeaturizationConfig {
|
|
NoRestrictionsFeaturizationConfig() { this = "NoRestrictionsFeaturization" }
|
|
|
|
override DataFlow::Node getAnEndpointToFeaturize() { any() }
|
|
}
|