Example #1
0
 public override void EnterPropertyGetStmt(VBAParser.PropertyGetStmtContext context)
 {
     SetCurrentScope(Identifier.GetName(context.functionName().identifier()), DeclarationType.PropertyGet);
     //_resolver.Resolve(context.asTypeClause());
 }
 public override void EnterPropertyGetStmt(VBAParser.PropertyGetStmtContext context)
 {
     CheckContext(context, context.PROPERTY_GET());
     CheckContext(context, context.END_PROPERTY());
     base.EnterPropertyGetStmt(context);
 }
 public override void EnterPropertyGetStmt(VBAParser.PropertyGetStmtContext context)
 {
     _resolver.SetCurrentScope(context.ambiguousIdentifier().GetText(), DeclarationType.PropertyGet);
 }
 public override void ExitPropertyGetStmt(VBAParser.PropertyGetStmtContext context)
 {
     _resolver.SetCurrentScope();
 }
Example #5
0
 public override void EnterPropertyGetStmt(VBAParser.PropertyGetStmtContext context)
 {
     _currentMember = new QualifiedMemberName(_qualifiedName, context.ambiguousIdentifier().GetText());
 }