(methodDefinition)
| 8384 | // 14.3 Method Definitions |
| 8385 | // 14.3.7 |
| 8386 | function specialMethod(methodDefinition) { |
| 8387 | return methodDefinition.kind === 'get' || |
| 8388 | methodDefinition.kind === 'set' || |
| 8389 | methodDefinition.value.generator; |
| 8390 | } |
| 8391 | |
| 8392 | function parseMethodDefinition(key, isStatic, generator, computed) { |
| 8393 | var token, param, propType, |