mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
212 B
13 lines
212 B
var uid = 0;
|
|
uid = 1;
|
|
uid += 1;
|
|
uid++;
|
|
|
|
// ensure identifiers aren't treated as globals just because
|
|
// var declaration hasn't been encountered yet...
|
|
uid2 = 1;
|
|
uid2 += 1;
|
|
uid2++;
|
|
var uid2;
|
|
|
|
export var foo = 42;
|
|
|