001package components.statement;
002
003import components.sequence.Sequence;
004import components.tree.Tree;
005import components.tree.Tree1;
006import components.utilities.Tokenizer;
007
008/**
009 * {@code Statement} represented as a {@link Tree} of {@code StatementLabel}s
010 * with implementations of primary methods.
011 *
012 * @convention [$this.rep is a valid representation of a Statement]
013 * @correspondence this = $this.rep
014 */
015public class Statement1 extends StatementSecondary {
016
017    /*
018     * 2221/2231 assignment code deleted.
019     */
020
021}