documentation for calleeImports ATM feature

This commit is contained in:
Stephan Brandauer
2022-04-19 16:54:50 +02:00
parent 93aa279b31
commit 3e860762e7

View File

@@ -440,6 +440,19 @@ class FileImports extends EndpointFeature, TFileImports {
}
}
/**
* The feature for the imports used in the callee of an invocation.
*
* ### Example
*
* ```javascript
* import * as _ from 'lodash';
*
* // ...
* _.deepClone(someObject);
* // ^^^^^^^^^^ will have the value `lodash` for the feature `calleeImports`.
* ```
*/
class CalleeImports extends EndpointFeature, TCalleeImports {
override string getName() { result = "calleeImports" }