Here is my code :
result = method1().method2().method3();
I would like to know the execution hierarchy of the above code/
Same as this:
result1 = method1(); result2 = result1.method2(); result = result2.method3();