3 references to Declaration
Microsoft.Interop.JavaScript.JSImportGenerator (1)
JSImportGenerator.cs (1)
182writer.WriteLine($"{string.Join(" ", context.StubMethodSyntaxTemplate.Modifiers)} {signature.StubReturnType} {context.StubMethodSyntaxTemplate.Identifier}({string.Join(", ", signature.StubParameters.Select(static parameter => parameter.Declaration))})");
Microsoft.Interop.SourceGeneration (2)
GeneratedMethodSignature.cs (2)
32public override string ToString() => Declaration; 65public string ParameterList => "(" + string.Join(", ", Parameters.Select(static parameter => parameter.Declaration)) + ")";