Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Why does p_taskvardecl not support Output types? #68

Closed
sjalloq opened this issue Oct 27, 2020 · 1 comment
Closed

Why does p_taskvardecl not support Output types? #68

sjalloq opened this issue Oct 27, 2020 · 1 comment

Comments

@sjalloq
Copy link

sjalloq commented Oct 27, 2020

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")
@shtaxxx
Copy link
Member

shtaxxx commented Nov 14, 2020

Task statement support will be available in the next version with SystemVerilog suuport.
SystemVerilog support is under development on feature_systemverilog branch.

@shtaxxx shtaxxx closed this as completed Nov 14, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants