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

Function isNotOverload

test/fixtures/snapshot/typescript.js:89266–89269  ·  view source on GitHub ↗
(declaration)

Source from the content-addressed store, hash-verified

89264 return !ts.isAccessor(declaration);
89265 }
89266 function isNotOverload(declaration) {
89267 return (declaration.kind !== 256 /* SyntaxKind.FunctionDeclaration */ && declaration.kind !== 169 /* SyntaxKind.MethodDeclaration */) ||
89268 !!declaration.body;
89269 }
89270 /** Like 'isDeclarationName', but returns true for LHS of `import { x as y }` or `export { x as y }`. */
89271 function isDeclarationNameOrImportPropertyName(name) {
89272 switch (name.parent.kind) {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…