(method)
| 11884 | }; |
| 11885 | |
| 11886 | function transformGlobalMethod(method) { |
| 11887 | var m = methodsRegex.exec(method); |
| 11888 | var result = |
| 11889 | methodsRegex.lastIndex = 0; |
| 11890 | return new AstMethod(m[3], transformParams(atoms[getAtomIndex(m[4])]), |
| 11891 | transformStatementsBlock(atoms[getAtomIndex(m[6])])); |
| 11892 | } |
| 11893 | |
| 11894 | function preStatementsTransform(statements) { |
| 11895 | var s = statements; |
nothing calls this directly
no test coverage detected