Added conditional expressions.

This commit is contained in:
Marvin Blum
2015-10-14 22:00:59 +02:00
parent 8144e207ed
commit a8c6da2958
5 changed files with 69 additions and 44 deletions

View File

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

View File

@@ -0,0 +1 @@
var x = true || (3 >= 4 && 5 < 8);