Add section directives

This commit is contained in:
Yoshi Askharoun
2024-02-05 09:23:46 -06:00
parent 804bca823b
commit 5a0473e499
8 changed files with 192 additions and 27 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace Microsoft.Iris.Asm.Models;
public record SectionDirective : Directive, IBodyItem
{
public SectionDirective(string name) : base("section")
{
Name = name;
}
public string Name { get; init; }
public override string ToString() => $"{base.ToString()} {Name}";
}