( BSHMethodDeclaration method, NameSpace declaringNameSpace, Modifiers modifiers )
| 75 | // End method components |
| 76 | |
| 77 | BshMethod( |
| 78 | BSHMethodDeclaration method, |
| 79 | NameSpace declaringNameSpace, Modifiers modifiers ) |
| 80 | { |
| 81 | this( method.name, method.returnType, method.paramsNode.getParamNames(), |
| 82 | method.paramsNode.paramTypes, method.blockNode, declaringNameSpace, |
| 83 | modifiers ); |
| 84 | } |
| 85 | |
| 86 | BshMethod( |
| 87 | String name, Class returnType, String [] paramNames, |
nothing calls this directly
no test coverage detected