You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just hit a parse error that seems strange. In parser.py, why does p_taskvardecl not include a check for the Output type?
def p_taskvardecl(self, p):
"""taskvardecl : decl
| integerdecl
"""
if isinstance(p[1], Decl):
for r in p[1].list:
if (not isinstance(r, Input) and not isinstance(r, Reg) and
not isinstance(r, Integer)):
raise ParseError("Syntax Error")
The text was updated successfully, but these errors were encountered:
Task statement support will be available in the next version with SystemVerilog suuport.
SystemVerilog support is under development on feature_systemverilog branch.
I've just hit a parse error that seems strange. In parser.py, why does p_taskvardecl not include a check for the Output type?
The text was updated successfully, but these errors were encountered: