Package: FuncValPrefixes
FuncValPrefixes
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
FuncValPrefixes() |
|
|
|
|
|
||||||||||||||||||||
evalMethod() |
|
|
|
|
|
||||||||||||||||||||
funcInterface() |
|
|
|
|
|
||||||||||||||||||||
param() |
|
|
|
|
|
||||||||||||||||||||
templateType() |
|
|
|
|
|
Coverage
1: package org.overture.codegen.trans.funcvalues;
2:
3: public class FuncValPrefixes
4: {
5:         public String funcInterface()
6:         {
7:                 return "Func_";
8:         }
9:
10:         public String templateType()
11:         {
12:                 return "T_";
13:         }
14:
15:         public String evalMethod()
16:         {
17:                 return "eval";
18:         }
19:
20:         public String param()
21:         {
22:                 return "param_";
23:         }
24: }