예제 #1
0
 public override void ExitDecoratorProperty(LuminaryParser.DecoratorPropertyContext context)
 {
     _decorator.Properties.Add(Swap(ref _decoratorProperty, null));
 }
예제 #2
0
 public override void EnterDecoratorProperty(LuminaryParser.DecoratorPropertyContext context)
 {
     _decoratorProperty = new DecoratorPropertyNode(context.IDENTIFIER().GetText(), context.type().GetText(),
                                                    ExtractDocumentation(context));
 }