We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import { something } from "duplicated"; import duplicated from "elsewhere"; export default function() { return [something, duplicated]; }
transpiles to
define(['exports', 'duplicated', 'elsewhere'], function (exports, duplicated, duplicated) { 'use strict'; exports['default'] = function() { return [duplicated.something, duplicated['default']]; } });
Which contains a syntax error Strict mode function may not have duplicate parameter names.
Strict mode function may not have duplicate parameter names
I looked for similar bugs and #95 is similar but not identical.
The text was updated successfully, but these errors were encountered:
refactor import naming, for #116
ad68979
c5ff269
Merge pull request #118 from esperantojs/gh-116
e4174fe
Fix import name collisions
Thanks - fixed in 0.6.16
Sorry, something went wrong.
No branches or pull requests
transpiles to
Which contains a syntax error
Strict mode function may not have duplicate parameter names
.I looked for similar bugs and #95 is similar but not identical.
The text was updated successfully, but these errors were encountered: