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

Function createIntrinsicType

test/fixtures/snapshot/typescript.js:51731–51737  ·  view source on GitHub ↗
(kind, intrinsicName, objectFlags)

Source from the content-addressed store, hash-verified

51729 return new Type(checker, flags);
51730 }
51731 function createIntrinsicType(kind, intrinsicName, objectFlags) {
51732 if (objectFlags === void 0) { objectFlags = 0; }
51733 var type = createType(kind);
51734 type.intrinsicName = intrinsicName;
51735 type.objectFlags = objectFlags;
51736 return type;
51737 }
51738 function createObjectType(objectFlags, symbol) {
51739 var type = createType(524288 /* TypeFlags.Object */);
51740 type.objectFlags = objectFlags;

Callers 2

createTypeCheckerFunction · 0.85

Calls 1

createTypeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…