Пример #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();
 }