| EMMA Coverage Report (generated Sat Dec 08 18:13:49 GMT 2007) | 
|---|
| [all classes][uk.co.zonetora.fj.ast.node] | 
| name | class, % | method, % | block, % | line, % | 
|---|---|---|---|---|
| TSemicolon.java | 100% (1/1) | 40% (2/5) | 47% (17/36) | 58% (7/12) | 
| name | class, % | method, % | block, % | line, % | 
|---|---|---|---|---|
| class TSemicolon | 100% (1/1) | 40% (2/5) | 47% (17/36) | 58% (7/12) | 
| TSemicolon (): void | 0% (0/1) | 0% (0/6) | 0% (0/3) | |
| clone (): Object | 0% (0/1) | 0% (0/8) | 0% (0/1) | |
| setText (String): void | 0% (0/1) | 0% (0/5) | 0% (0/1) | |
| TSemicolon (int, int): void | 100% (1/1) | 100% (12/12) | 100% (5/5) | |
| apply (Switch): void | 100% (1/1) | 100% (5/5) | 100% (2/2) | 
| 1 | /* This file was generated by SableCC (http://www.sablecc.org/). */ | 
| 2 | |
| 3 | package uk.co.zonetora.fj.ast.node; | 
| 4 | |
| 5 | import uk.co.zonetora.fj.ast.analysis.*; | 
| 6 | |
| 7 | public final class TSemicolon extends Token | 
| 8 | { | 
| 9 | public TSemicolon() | 
| 10 | { | 
| 11 | super.setText(";"); | 
| 12 | } | 
| 13 | |
| 14 | public TSemicolon(int line, int pos) | 
| 15 | { | 
| 16 | super.setText(";"); | 
| 17 | setLine(line); | 
| 18 | setPos(pos); | 
| 19 | } | 
| 20 | |
| 21 | public Object clone() | 
| 22 | { | 
| 23 | return new TSemicolon(getLine(), getPos()); | 
| 24 | } | 
| 25 | |
| 26 | public void apply(Switch sw) | 
| 27 | { | 
| 28 | ((Analysis) sw).caseTSemicolon(this); | 
| 29 | } | 
| 30 | |
| 31 | public void setText(String text) | 
| 32 | { | 
| 33 | throw new RuntimeException("Cannot change TSemicolon text."); | 
| 34 | } | 
| 35 | } | 
| [all classes][uk.co.zonetora.fj.ast.node] | 
| EMMA 2.0.5312 (C) Vladimir Roubtsov |