MCPcopy Index your code
hub / github.com/nodejs/node / getAccessStack

Function getAccessStack

test/fixtures/snapshot/typescript.js:53014–53023  ·  view source on GitHub ↗
(ref)

Source from the content-addressed store, hash-verified

53012 }
53013 }
53014 function getAccessStack(ref) {
53015 var state = ref.typeName;
53016 var ids = [];
53017 while (!ts.isIdentifier(state)) {
53018 ids.unshift(state.right);
53019 state = state.left;
53020 }
53021 ids.unshift(state);
53022 return ids;
53023 }
53024 function createTypeNodesFromResolvedType(resolvedType) {
53025 if (checkTruncationLength(context)) {
53026 return [ts.factory.createPropertySignature(/*modifiers*/ undefined, "...", /*questionToken*/ undefined, /*type*/ undefined)];

Callers 1

appendReferenceToTypeFunction · 0.85

Calls 1

unshiftMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…