Class VerilogSyntaxBackend

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the name of the back-end.
      void start​(VerilogNode root)
      Processes the abstract syntax tree (AST).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • VerilogSyntaxBackend

        protected VerilogSyntaxBackend​(java.lang.String name)
        Creates an abstract back-end.
        Parameters:
        name - the back-end name.
      • VerilogSyntaxBackend

        public VerilogSyntaxBackend​(java.lang.String name,
                                    VerilogNodeVisitor visitor)
        Creates a visitor-based back-end.
        Parameters:
        name - the back-end name.
        visitor - the user-defined visitor.
    • Method Detail

      • getName

        public final java.lang.String getName()
        Returns the name of the back-end.
        Returns:
        the back-end name.
      • start

        public void start​(VerilogNode root)
        Processes the abstract syntax tree (AST).
        Parameters:
        root - the AST's root.