예제 #1
0
 public ProcedureNode(VBAParser.PropertyLetStmtContext context, string scope, string localScope)
     : this(context, scope, localScope, VBProcedureKind.PropertyLet, context.visibility(), context.ambiguousIdentifier(), null)
 {
     _argsListContext = context.argList();
     _staticNode      = context.STATIC();
     _keyword         = context.PROPERTY_LET();
 }
예제 #2
0
 public override void EnterPropertyLetStmt(VBAParser.PropertyLetStmtContext context)
 {
     CheckContext(context, context.PROPERTY_LET());
     CheckContext(context, context.END_PROPERTY());
     base.EnterPropertyLetStmt(context);
 }