Package edu.udel.cis.vsl.abc.ast.node.IF.label
package edu.udel.cis.vsl.abc.ast.node.IF.label
The ast.node.label submodule defines AST nodes for representing labels
in a program, including ordinary labels, and the case
and default
labels used in switch
statements.
-
InterfacesClassDescriptionRepresents a label in a program.Represents an ordinary label (i.e., a label which is not a
case
ordefault
label).Represents a label in aswitch
statement of the formcase constant-expression:
ordefault:
.