1 parent ade460a commit fffb3f1Copy full SHA for fffb3f1
1 file changed
src/chunkers/typescript.ts
@@ -68,7 +68,7 @@ function getNodeName(node: ts.Node): string | undefined {
68
return undefined
69
}
70
71
-function getSignature(node: ts.Node, sourceFile: ts.SourceFile): string {
+function getSignature(node: ts.Node, _sourceFile: ts.SourceFile): string {
72
// For functions, build signature manually to handle anonymous functions safely
73
if (ts.isFunctionDeclaration(node)) {
74
const name = node.name?.getText() || 'anonymous'
0 commit comments