MCPcopy Index your code
hub / github.com/alibaba/lowcode-engine / getNextParentIds

Function getNextParentIds

modules/material-parser/src/parse/ts/index.ts:20–27  ·  view source on GitHub ↗
(parentIds: number[], type: ts.Type)

Source from the content-addressed store, hash-verified

18};
19
20function getNextParentIds(parentIds: number[], type: ts.Type) {
21 // @ts-ignore
22 const id = type?.symbol?.id;
23 if (id) {
24 return [...parentIds, id];
25 }
26 return parentIds;
27}
28
29function getSymbolName(symbol: ts.Symbol) {
30 // @ts-ignore

Callers 4

getFunctionParamsFunction · 0.85
getFunctionReturnsFunction · 0.85
getShapeFromArrayFunction · 0.85
getDocgenTypeHelperFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…