summaryrefslogtreecommitdiff
path: root/examples/verilog_parse.py
Commit message (Collapse)AuthorAgeFilesLines
* verilogParse.py code update: convert str literals to Keywords; add ↵ptmcg2023-03-291-0/+946
using_each to define multiple related Keywords; used f-string instead of str addition to build up identifier1 expr; merged alternative Regex exprs to single Regex in udpInitVal; change setName to set_name throughout; ZeroOrMore and OneOrMore to [...] and [1, ...] throughout; convert most Optional(expr) to (expr | ""); add ParseException.explain() to test() function