JS: Model dependency injection in Nest

This commit is contained in:
Asger F
2025-01-29 13:25:27 +01:00
parent 89ad737b2a
commit 16f7373712
2 changed files with 52 additions and 1 deletions

View File

@@ -2,6 +2,6 @@ import { Foo } from "./foo.interface";
export class FooImpl extends Foo {
fooMethod(x: string) {
sink(x); // $ MISSING: hasValueFlow=x
sink(x); // $ hasValueFlow=x
}
}