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.
14 lines
212 B
14 lines
212 B
9 years ago
|
var uid = 0;
|
||
|
uid = 1;
|
||
|
uid += 1;
|
||
|
uid++;
|
||
|
|
||
9 years ago
|
// ensure identifiers aren't treated as globals just because
|
||
|
// var declaration hasn't been encountered yet...
|
||
|
uid2 = 1;
|
||
|
uid2 += 1;
|
||
|
uid2++;
|
||
|
var uid2;
|
||
|
|
||
9 years ago
|
export var foo = 42;
|