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

Function isPropertyWithoutInitializer

test/fixtures/snapshot/typescript.js:84588–84593  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

84586 }
84587 }
84588 function isPropertyWithoutInitializer(node) {
84589 return node.kind === 167 /* SyntaxKind.PropertyDeclaration */ &&
84590 !ts.hasAbstractModifier(node) &&
84591 !node.exclamationToken &&
84592 !node.initializer;
84593 }
84594 function isPropertyInitializedInStaticBlocks(propName, propType, staticBlocks, startPos, endPos) {
84595 for (var _i = 0, staticBlocks_2 = staticBlocks; _i < staticBlocks_2.length; _i++) {
84596 var staticBlock = staticBlocks_2[_i];

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…