fix: Fixes timer migrations not compiling (#902)

This commit is contained in:
Kamron Batman 2021-12-28 13:48:48 -08:00 committed by GitHub
parent d0aa6320f7
commit 5019ce9694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1273 additions and 1209 deletions

View file

@ -23,6 +23,13 @@ namespace SerializableMigration
{
string RuleName { get; }
void GenerateMigrationProperty(
StringBuilder source,
Compilation compilation,
string indent,
SerializableProperty serializableProperty
);
bool GenerateRuleState(
Compilation compilation,
ISymbol symbol,
@ -37,7 +44,8 @@ namespace SerializableMigration
StringBuilder source,
string indent,
SerializableProperty property,
string? parentReference
string? parentReference,
bool isMigration = false
);
void GenerateSerializationMethod(