@mrclrchtr/supi-code-runtime 6.4.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types.ts +8 -1
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -234,7 +234,14 @@ export type CalleeDepth = "direct" | "deep";
|
|
|
234
234
|
*/
|
|
235
235
|
export interface CalleesData {
|
|
236
236
|
enclosingScope: { name: string; startLine: number; endLine: number };
|
|
237
|
-
|
|
237
|
+
/** Distinct call sites with 1-based UTF-16 start coordinates. */
|
|
238
|
+
callees: Array<{
|
|
239
|
+
name: string;
|
|
240
|
+
/** Optional syntax-shortened label for presentation; does not replace `name`. */
|
|
241
|
+
displayName?: string;
|
|
242
|
+
startLine: number;
|
|
243
|
+
startCharacter: number;
|
|
244
|
+
}>;
|
|
238
245
|
depth: CalleeDepth;
|
|
239
246
|
}
|
|
240
247
|
|