Package: ResolvingPhase
ResolvingPhase
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ResolvingPhase() |
|
|
|
|
|
Coverage
1: package controller;
2:
3: import model.type.TypeDoesNotExistException;
4: import model.type.TypeExceptions;
5:
6: /**
7: *
8: */
9:
10: /**
11: * @author Jannik
12: *
13: */
14: public abstract class ResolvingPhase extends AbstractPhase {
15:
16:         @Override
17:         public abstract void action() throws TypeDoesNotExistException, TypeExceptions;
18: }