* Make labels on break and continue statements not referenced * Add test for imports and labels with the same name
6 lines
46 B
JavaScript
6 lines
46 B
JavaScript
import foo from "foo";
|
|
|
|
foo: {
|
|
break foo;
|
|
}
|