Example #1
0
 public ProcedureNode(VBAParser.PropertySetStmtContext context, string scope, string localScope)
     : this(context, scope, localScope, VBProcedureKind.PropertySet, context.visibility(), context.ambiguousIdentifier(), null)
 {
     _argsListContext = context.argList();
     _staticNode      = context.STATIC();
     _keyword         = context.PROPERTY_SET();
 }
Example #2
0
 public override void EnterPropertySetStmt(VBAParser.PropertySetStmtContext context)
 {
     CheckContext(context, context.PROPERTY_SET());
     CheckContext(context, context.END_PROPERTY());
     base.EnterPropertySetStmt(context);
 }