(method)
| 11602 | }; |
| 11603 | |
| 11604 | function transformClassMethod(method) { |
| 11605 | var m = methodsRegex.exec(method); |
| 11606 | methodsRegex.lastIndex = 0; |
| 11607 | return new AstClassMethod(m[3], transformParams(atoms[getAtomIndex(m[4])]), |
| 11608 | transformStatementsBlock(atoms[getAtomIndex(m[6])]) ); |
| 11609 | } |
| 11610 | |
| 11611 | function AstClassField(definitions, fieldType, isStatic) { |
| 11612 | this.definitions = definitions; |
no test coverage detected