◐ Shell
reader mode source ↗
Skip to content
Merged
Changes from all commits
File filter
Conversations
Jump to
Diff view
Apply and reload
Show whitespace
Diff view
Apply and reload
204 changes: 204 additions & 0 deletions src/domain_tests/TestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,210 @@ raise AssertionError('failed to raise')
assert foo is not bar
",
},
new TestCase
{
Name = "nested_type",
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/StateSerialization/MaybeMethodBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ public ParameterHelper(ParameterInfo tp)
Name = tp.ParameterType.AssemblyQualifiedName;
Modifier = TypeModifier.None;

if (tp.IsIn)
{
Modifier = TypeModifier.In;
}
else if (tp.IsOut)
{
Modifier = TypeModifier.Out;
}
Toggle all file notes Toggle all file annotations