Transcrypt icon indicating copy to clipboard operation
Transcrypt copied to clipboard

Fix extraneous comma when first import is removed

Open daboross opened this issue 3 years ago • 0 comments

This fixes a miscompilation when compiling python code

import unusedThing, cast from typing

# use cast somewhere, but not unusedThing

This was previously compiled to

import {, cast} from './module.js';

which failed to parse as JavaScript.

daboross avatar Dec 31 '20 03:12 daboross