Package ru.ispras.verilog.parser.core
Interface ErrorHandler<Tag extends java.lang.Enum<Tag>>
-
public interface ErrorHandler<Tag extends java.lang.Enum<Tag>>
ErrorHandler
is a basic error handling interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(AbstractNode<Tag> newNode, AbstractNode<Tag> oldNode)
Handles an error.
-
-
-
Method Detail
-
handle
void handle(AbstractNode<Tag> newNode, AbstractNode<Tag> oldNode)
Handles an error.- Parameters:
newNode
- the current node.oldNode
- the old node (for handling redefinition errors).
-
-