haikuwebkit/LayoutTests/js/order-of-operations-expecte...

23 lines
1.6 KiB
Plaintext

PASS (function(){ leftRight = ""; left() > right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >= right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() < right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() <= right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() + right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() - right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() / right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() * right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() % right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() << right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >> right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() >>> right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() || right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() && right(); return leftRight; })() is "Left"
PASS (function(){ leftRight = ""; left() & right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() | right(); return leftRight; })() is "LeftRight"
PASS (function(){ leftRight = ""; left() ^ right(); return leftRight; })() is "LeftRight"
PASS testEvaluationOfArguments() is true
PASS successfullyParsed is true
TEST COMPLETE