-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
async and await not supported #21
Comments
Thanks for the heads up! I'm definitely open to adding |
In fact I think it is due to uglify that maybe does not support recent javascript versions like ES8 ? I have seen there is another problem with function declaration like this :
I must modify to :
to have it works and finaly get my gaph :) |
Can I ask you why you're interested in generating a callgraph for your
code? (market research 😂)
…On Mon, Nov 23, 2020 at 2:35 PM laurent-33 ***@***.***> wrote:
In fact I think it is due to uglify that does not support recent
javascript versions like ES8
I saw there is a problem too with function declaration like this :
const blobimage_from_name = (blob_images, name) => {...}
I must modify to
function blobimage_from_name(blob_images, name) {...}
to have it works and finaly get my gaph :)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#21 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB2UDXRBEEPI42P4HNWGZHTSRJXMHANCNFSM4T7RXWDQ>
.
|
of course, it is to show a dude in my team how work the script PS : maybe not uglify the pb but can be babel too (i saw in the code of parser.js babel es6 ans es2015 preset ... but I dont know yet what that means) |
Thanks that's helpful!
…On Mon, 23 Nov 2020, 15:33 laurent-33, ***@***.***> wrote:
of course, it is to show a dude in my team how work the script
then he can quiclky see the graph, without I explain all details to him
PS : maybe not uglify the pb but can be babel too (i saw in the code of
parser.js babel es6 ans es2015 preset ... but I dont know yet what that
means)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#21 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AB2UDXU2NRQ4SVW5PEBY4W3SRJ6FXANCNFSM4T7RXWDQ>
.
|
that lead to errors when parsing file with uglify
The text was updated successfully, but these errors were encountered: