| 56 | } |
| 57 | |
| 58 | class EnglishGreeter implements Greeter { |
| 59 | language = 'en'; |
| 60 | greet(name: string) { |
| 61 | return `Hello, ${name}!`; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * A class with dependency injection |
nothing calls this directly
no outgoing calls
no test coverage detected