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

Function checkPropertySignature

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

Source from the content-addressed store, hash-verified

80438 }
80439 }
80440 function checkPropertySignature(node) {
80441 if (ts.isPrivateIdentifier(node.name)) {
80442 error(node, ts.Diagnostics.Private_identifiers_are_not_allowed_outside_class_bodies);
80443 }
80444 return checkPropertyDeclaration(node);
80445 }
80446 function checkMethodDeclaration(node) {
80447 // Grammar checking
80448 if (!checkGrammarMethod(node))

Callers 1

checkSourceElementWorkerFunction · 0.85

Calls 2

checkPropertyDeclarationFunction · 0.85
errorFunction · 0.70

Tested by

no test coverage detected