from slicc.ast.DeclAST import DeclAST
from slicc.ast.TypeAST import TypeAST
from slicc.symbols import Var
+from slicc.symbols import Type
class OutPortDeclAST(DeclAST):
def __init__(self, slicc, ident, msg_type, var_expr, pairs):
"attribute. Type '%s' does not have this attribute.",
(queue_type))
+ if not self.symtab.find(self.msg_type.ident, Type):
+ self.error("The message type '%s' does not exist.",
+ self.msg_type.ident)
+
var = Var(self.symtab, self.ident, self.location, self.queue_type.type,
str(code), self.pairs)
self.symtab.newSymbol(var)