AST
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.
 
 
 
 

43 rivejä
228 B

var a = { x: 42};
a.x;
++a.x;
a.x;
++a[#"x"];
a.x;
var b = 666;
b;
++b;
b;
a.x;
a.x++;
a.x;
a[#"x"]++;
a.x;
b;
b++;
b;
a.x;
--a.x;
a.x;
--a[#"x"];
a.x;
var b = 666;
b;
--b;
b;
a.x;
a.x--;
a.x;
a[#"x"]--;
a.x;
b;
b--;
b;