@@ -25,7 +25,7 @@ public override bool VisitType(Type type, TypeQualifiers quals)
25
25
TypeMap typeMap ;
26
26
if ( Context . Context . TypeMaps . FindTypeMap ( type , out typeMap ) && typeMap . DoesMarshalling )
27
27
{
28
- typeMap . MarshalToManaged ( GeneratorKind . QuickJS , Context ) ;
28
+ typeMap . MarshalToManaged ( Context ) ;
29
29
return false ;
30
30
}
31
31
@@ -210,7 +210,7 @@ public override bool VisitTypedefType(TypedefType typedef, TypeQualifiers quals)
210
210
typeMap . DoesMarshalling )
211
211
{
212
212
typeMap . Type = typedef ;
213
- typeMap . MarshalToManaged ( GeneratorKind . QuickJS , Context ) ;
213
+ typeMap . MarshalToManaged ( Context ) ;
214
214
return typeMap . IsValueType ;
215
215
}
216
216
@@ -232,7 +232,7 @@ public override bool VisitTemplateSpecializationType(TemplateSpecializationType
232
232
if ( Context . Context . TypeMaps . FindTypeMap ( template , out typeMap ) && typeMap . DoesMarshalling )
233
233
{
234
234
typeMap . Type = template ;
235
- typeMap . MarshalToManaged ( GeneratorKind . QuickJS , Context ) ;
235
+ typeMap . MarshalToManaged ( Context ) ;
236
236
return true ;
237
237
}
238
238
@@ -385,7 +385,7 @@ public override bool VisitType(Type type, TypeQualifiers quals)
385
385
TypeMap typeMap ;
386
386
if ( Context . Context . TypeMaps . FindTypeMap ( type , out typeMap ) && typeMap . DoesMarshalling )
387
387
{
388
- typeMap . MarshalToNative ( GeneratorKind . QuickJS , Context ) ;
388
+ typeMap . MarshalToNative ( Context ) ;
389
389
return false ;
390
390
}
391
391
@@ -583,7 +583,7 @@ public override bool VisitTypedefType(TypedefType typedef, TypeQualifiers quals)
583
583
if ( Context . Context . TypeMaps . FindTypeMap ( decl . Type , out typeMap ) &&
584
584
typeMap . DoesMarshalling )
585
585
{
586
- typeMap . MarshalToNative ( GeneratorKind . QuickJS , Context ) ;
586
+ typeMap . MarshalToNative ( Context ) ;
587
587
return typeMap . IsValueType ;
588
588
}
589
589
@@ -625,7 +625,7 @@ public override bool VisitTemplateSpecializationType(TemplateSpecializationType
625
625
if ( Context . Context . TypeMaps . FindTypeMap ( template , out typeMap ) && typeMap . DoesMarshalling )
626
626
{
627
627
typeMap . Type = template ;
628
- typeMap . MarshalToNative ( GeneratorKind . QuickJS , Context ) ;
628
+ typeMap . MarshalToNative ( Context ) ;
629
629
return true ;
630
630
}
631
631
@@ -672,7 +672,7 @@ private void MarshalRefClass(Class @class)
672
672
if ( Context . Context . TypeMaps . FindTypeMap ( type , out typeMap ) &&
673
673
typeMap . DoesMarshalling )
674
674
{
675
- typeMap . MarshalToNative ( GeneratorKind . QuickJS , Context ) ;
675
+ typeMap . MarshalToNative ( Context ) ;
676
676
return ;
677
677
}
678
678
0 commit comments