(typeArguments: string[] = [], methodArguments: string[] = [])
| 605 | } |
| 606 | |
| 607 | function requestedMethod(typeArguments: string[] = [], methodArguments: string[] = []): DotNetMethodKey { |
| 608 | return { |
| 609 | typeName: 'Example.Box', |
| 610 | typeArguments, |
| 611 | methodName: 'Project', |
| 612 | methodArguments, |
| 613 | parameters: [], |
| 614 | returnType: '', |
| 615 | }; |
| 616 | } |
| 617 | |
| 618 | const sourceMapping: DotNetSourceMapping = [ |
| 619 | { |
no outgoing calls
no test coverage detected