Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
Frozenreflex committed Apr 18, 2024
1 parent 7a6deeb commit b3b636b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ProjectObsidian.SourceGenerators/BindingGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,8 @@ public override void VisitFieldDeclaration(FieldDeclarationSyntax node)
TypedFieldDetection(type, name, "ValueOutput", "NodeValueOutput<{1}>", _outputCount);

//impulses
if (!UntypedFieldDetection(type, name, "Call", "SyncRef<ISyncNodeOperation>", _impulseCount))
{
UntypedFieldDetection(type, name, "AsyncCall", "SyncRef<INodeOperation>", _impulseCount);
}
if (!UntypedFieldDetection(type, name, "AsyncCall", "SyncRef<INodeOperation>", _impulseCount))
UntypedFieldDetection(type, name, "Call", "SyncRef<ISyncNodeOperation>", _impulseCount);
UntypedFieldDetection(type, name, "Continuation", "SyncRef<INodeOperation>", _impulseCount);
UntypedFieldDetection(type, name, "AsyncResumption", "SyncRef<INodeOperation>", _impulseCount);

Expand Down

0 comments on commit b3b636b

Please sign in to comment.