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