()
| 227 | // Nested with blocks using in-place object literals. |
| 228 | |
| 229 | function *gen8() { |
| 230 | with({a: 1,b: 2}) { |
| 231 | with({a: 2,b: 1}) { |
| 232 | yield a; |
| 233 | } |
| 234 | yield a; |
| 235 | } |
| 236 | return 3; |
| 237 | } |
| 238 | |
| 239 | g = gen8(); |
| 240 | g.next(); |
no outgoing calls
no test coverage detected