(fnName)
| 4005 | } |
| 4006 | |
| 4007 | function fileName(fnName) { |
| 4008 | return 'src/recurrent/matrix/' + fnName.replace(/[A-Z]/g, function (value) { |
| 4009 | return '-' + value.toLowerCase(); |
| 4010 | }) + '.js'; |
| 4011 | } |
| 4012 | |
| 4013 | var statesRaw = []; |
| 4014 | var usedFunctionNames = {}; |
no outgoing calls
no test coverage detected