mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Node 6 support (#484)
This patch: - introduces a transpiler which substitutes async/await logic with generators. - starts using the transpiler to generate a node6-compatible version of puppeteer - introduces a runtime-check to decide which version of code to use Fixes #316.
This commit is contained in:
committed by
Andrey Lushnikov
parent
46115f9182
commit
9212863b92
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
const esprima = require('esprima');
|
||||
const ESTreeWalker = require('./ESTreeWalker');
|
||||
const ESTreeWalker = require('../../ESTreeWalker');
|
||||
const Documentation = require('./Documentation');
|
||||
|
||||
class JSOutline {
|
||||
|
||||
Reference in New Issue
Block a user