(target, input, expected)
| 7376 | |
| 7377 | async propertyAccessBugWorkaroundForWebKit({ esbuild }) { |
| 7378 | const check = async (target, input, expected) => |
| 7379 | assert.strictEqual((await esbuild.transform(input, { target })).code, expected) |
| 7380 | await Promise.all([ |
| 7381 | check('safari16.2', `x(class{}.y=z)`, `x((class {\n}).y = z);\n`), |
| 7382 | check('safari16.3', `x(class{}.y=z)`, `x(class {\n}.y = z);\n`), |
searching dependent graphs…