3 references to Declaration
Microsoft.Interop.JavaScript.JSImportGenerator (1)
JSImportGenerator.cs (1)
182
writer.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)
32
public override string ToString() =>
Declaration
;
65
public string ParameterList => "(" + string.Join(", ", Parameters.Select(static parameter => parameter.
Declaration
)) + ")";