1 implementation of IJSMarshallingGenerator
Microsoft.Interop.JavaScript.JSImportGenerator (1)
Marshaling\BaseJSGenerator.cs (1)
13
internal abstract class BaseJSGenerator :
IJSMarshallingGenerator
4 references to IJSMarshallingGenerator
Microsoft.Interop.JavaScript.JSImportGenerator (4)
JSExportCodeGenerator.cs (2)
166
IEnumerable<ExpressionSyntax> types = _marshallers.ManagedReturnMarshaller is
IJSMarshallingGenerator
jsGen ? jsGen.GenerateBind() : [];
168
.Concat(_marshallers.NativeParameterMarshallers.OfType<
IJSMarshallingGenerator
>().SelectMany(p => p.GenerateBind()));
JSImportCodeGenerator.cs (2)
158
IEnumerable<ExpressionSyntax> types = _marshallers.ManagedReturnMarshaller is
IJSMarshallingGenerator
jsGen ? jsGen.GenerateBind() : [];
160
.Concat(_marshallers.NativeParameterMarshallers.OfType<
IJSMarshallingGenerator
>().SelectMany(p => p.GenerateBind()));