mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Fix node6 support for Object.entries and URL object (#548)
This patch introduces a polyfill for Object.entries which is missing in Node 6
This commit is contained in:
committed by
Andrey Lushnikov
parent
4e3b6a1f57
commit
2c4dfbfd88
@@ -53,7 +53,7 @@ const asyncToGenerator = fn => {
|
||||
function transformAsyncFunctions(text) {
|
||||
const edits = [];
|
||||
|
||||
const ast = esprima.parseScript(text, {range: true});
|
||||
const ast = esprima.parseScript(text, {range: true, tolerant: true});
|
||||
const walker = new ESTreeWalker(node => {
|
||||
if (node.type === 'FunctionExpression' || node.type === 'FunctionDeclaration' || node.type === 'ArrowFunctionExpression')
|
||||
onFunction(node);
|
||||
|
||||
@@ -64,4 +64,10 @@ describe('TransformAsyncFunctions', function() {
|
||||
expect(output instanceof Promise).toBe(true);
|
||||
output.then(result => expect(result).toBe(123)).then(done);
|
||||
});
|
||||
it('should work with double await', function(done) {
|
||||
const input = `async function f(){ return 23 + await Promise.resolve(50 + await Promise.resolve(50)); } f();`;
|
||||
const output = eval(transformAsyncFunctions(input));
|
||||
expect(output instanceof Promise).toBe(true);
|
||||
output.then(result => expect(result).toBe(123)).then(done);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user