Fixed ! operator and negative value prefix (e.g. -100).

This commit is contained in:
Marvin Blum
2015-10-24 14:24:00 +02:00
parent 5a00e256da
commit 75729ebb8e
5 changed files with 15 additions and 17 deletions

View File

@@ -1 +1 @@
var x = (1+(2+3))/(6*(someVariable+99-100))-(20)+anotherVariable+foo();
var x = -(1+(2+3))/(6*(someVariable+99-100))-(20)+!anotherVariable+foo();