Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public bool HandlesInvalidEntries(NodeFactory factory)

public ReadyToRunGenericHelperNode(NodeFactory factory, ReadyToRunHelperId helperId, object target, TypeSystemEntity dictionaryOwner)
{
Debug.Assert(
(dictionaryOwner is TypeDesc type && type.HasInstantiation)
|| (dictionaryOwner is MethodDesc method && method.HasInstantiation));
_id = helperId;
_dictionaryOwner = dictionaryOwner;
_target = target;
Expand Down