public override void EnterPropertyLetStmt(VBAParser.PropertyLetStmtContext context) { _currentScopeAttributes = new Attributes(); _currentScope = Tuple.Create(Identifier.GetName(context.subroutineName()), DeclarationType.PropertyLet); _currentAnnotatedContext = context; }
public override void EnterFunctionStmt(VBAParser.FunctionStmtContext context) { _currentScopeAttributes = new Attributes(); _currentScope = Tuple.Create(Identifier.GetName(context.functionName()), DeclarationType.Function); _currentAnnotatedContext = context; }