This commit is contained in:
alexlamsl 2017-12-08 00:11:32 +08:00
parent 4f5d12c573
commit b246c150a4

View File

@ -615,6 +615,7 @@ cond_9: {
}
input: {
function f(x, y) {
g() ? x(1) : x(2);
x ? (y || x)() : (y || x)();
x ? y(a, b) : y(d, b, c);
x ? y(a, b, c) : y(a, b, c);
@ -629,6 +630,7 @@ cond_9: {
}
expect: {
function f(x, y) {
g() ? x(1) : x(2);
x, (y || x)();
x ? y(a, b) : y(d, b, c);
x, y(a, b, c);