mirror of
https://github.com/XWine1/XDLCompiler.git
synced 2026-07-24 12:32:21 -07:00
9 lines
276 B
C#
9 lines
276 B
C#
namespace XDLCompiler;
|
|
|
|
public sealed class NoEmitAttribute : IAttributeFactory<NoEmitAttribute>
|
|
{
|
|
static string IAttributeFactory<NoEmitAttribute>.Name => "no_emit";
|
|
|
|
static NoEmitAttribute IAttributeFactory<NoEmitAttribute>.Create(AttributeNode node) => new();
|
|
}
|