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

Function createIndexedAccessType

test/fixtures/snapshot/typescript.js:62022–62030  ·  view source on GitHub ↗
(objectType, indexType, accessFlags, aliasSymbol, aliasTypeArguments)

Source from the content-addressed store, hash-verified

62020 return result;
62021 }
62022 function createIndexedAccessType(objectType, indexType, accessFlags, aliasSymbol, aliasTypeArguments) {
62023 var type = createType(8388608 /* TypeFlags.IndexedAccess */);
62024 type.objectType = objectType;
62025 type.indexType = indexType;
62026 type.accessFlags = accessFlags;
62027 type.aliasSymbol = aliasSymbol;
62028 type.aliasTypeArguments = aliasTypeArguments;
62029 return type;
62030 }
62031 /**
62032 * Returns if a type is or consists of a JSLiteral object type
62033 * In addition to objects which are directly literals,

Callers 1

Calls 1

createTypeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…