fix(codegen): Fixes bulk order deed hue and codegens (#647)
- [X] Codegens some Bulk Order stuff - [X] Fixes deserializing with a class that requires the parent as a constructor argument Closes #641 Closes #623
This commit is contained in:
parent
eb4e3ac070
commit
510d2e006b
32 changed files with 185 additions and 378 deletions
|
|
@ -30,6 +30,7 @@ namespace SerializableMigration
|
|||
ISymbol symbol,
|
||||
ImmutableArray<AttributeData> attributes,
|
||||
ImmutableArray<INamedTypeSymbol> serializableTypes,
|
||||
ISymbol? parentSymbol,
|
||||
out string[] ruleArguments
|
||||
)
|
||||
{
|
||||
|
|
@ -47,7 +48,8 @@ namespace SerializableMigration
|
|||
setTypeSymbol,
|
||||
0,
|
||||
attributes,
|
||||
serializableTypes
|
||||
serializableTypes,
|
||||
parentSymbol
|
||||
);
|
||||
|
||||
var length = serializableSetType.RuleArguments.Length;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue