-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
Handle CallExpression
for debug macros.
#46
Comments
Hi, I think I found a way to fix the issue in branch BBVAEngineering/use-call-expression, but I'm not sure if it's the correct way. Then I tried another approach, use the visitors All the tests seems to work but I couldn't try the branch in ember apps because when I link my package ( Build Error (Babel) in ember-resolver/features.js # Any Ember package
Cannot read property '__esModule' of undefined ¿Any hints about linking this package to a project to test my branch? |
Currently, we are handling only
ExpressionStatement
's for debug macro replacement. Unfortunately, the following do not get processed (since they do not include anExpressionStatement
):This is the underlying issue in emberjs/ember-cli-babel#168.
The text was updated successfully, but these errors were encountered: