()
| 2364 | } |
| 2365 | |
| 2366 | function parsePropertyMethodFunction() { |
| 2367 | var params, method, node = new Node(); |
| 2368 | |
| 2369 | params = parseParams(); |
| 2370 | method = parsePropertyFunction(node, params); |
| 2371 | |
| 2372 | return method; |
| 2373 | } |
| 2374 | |
| 2375 | function parseObjectPropertyKey() { |
| 2376 | var token, node = new Node(), expr; |
no test coverage detected