class RecursionCond { m(a, b, c) { if (1 == 2) { b = m(a, b); c = m(a, b); } else return a; } }