Package: IsMethodTypeVisitor
IsMethodTypeVisitor
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
IsMethodTypeVisitor() |
|
|
|
|
|
||||||||||||||||||||
caseAMethodTypeIR(AMethodTypeIR) |
|
|
|
|
|
||||||||||||||||||||
createNewReturnValue(INode) |
|
|
|
|
|
||||||||||||||||||||
createNewReturnValue(Object) |
|
|
|
|
|
Coverage
1: /*
2: * #%~
3: * VDM to Isabelle Translation
4: * %%
5: * Copyright (C) 2008 - 2015 Overture
6: * %%
7: * This program is free software: you can redistribute it and/or modify
8: * it under the terms of the GNU General Public License as
9: * published by the Free Software Foundation, either version 3 of the
10: * License, or (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: * GNU General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public
18: * License along with this program. If not, see
19: * <http://www.gnu.org/licenses/gpl-3.0.html>.
20: * #~%
21: */
22: package org.overturetool.cgisa.utils;
23:
24: import org.overture.codegen.ir.INode;
25: import org.overture.codegen.ir.analysis.AnalysisException;
26: import org.overture.codegen.ir.analysis.AnswerAdaptor;
27: import org.overture.codegen.ir.types.AMethodTypeIR;
28:
29: public class IsMethodTypeVisitor extends AnswerAdaptor<Boolean>
30: {
31:
32:         @Override
33:         public Boolean createNewReturnValue(INode node) throws AnalysisException
34:         {
35:                 return false;
36:         }
37:
38:         @Override
39:         public Boolean createNewReturnValue(Object node) throws AnalysisException
40:         {
41:                 return false;
42:         }
43:
44:         @Override
45:         public Boolean caseAMethodTypeIR(AMethodTypeIR node)
46:                         throws AnalysisException
47:         {
48:                 return true;
49:         }
50:
51: }