Exemplo n.º 1
0
 public void Resolve(VBAParser.ImplementsStmtContext context)
 {
     ResolveType(context.expression());
 }
 public override void EnterImplementsStmt(VBAParser.ImplementsStmtContext context)
 {
     // The expression will be later resolved to the actual declaration. Have to split the work up because we have to gather/create all declarations first.
     ((ClassModuleDeclaration)_moduleDeclaration).AddSupertype(context.expression().GetText());
 }