OriRoth / fling

A fluent API generator
http://drops.dagstuhl.de/opus/volltexte/2019/10805/
24 stars 3 forks source link

Traverse function #7

Closed yossigil closed 5 years ago

yossigil commented 5 years ago

Chagne it to return a String. Do not print from this function

OriRoth commented 5 years ago

Which traverse function? In which class?

yossigil commented 5 years ago

private static String traverse(P p, int depth) { if (p instanceof P1) traverse((P1) p, depth); else traverse((P2) p, depth); }

OriRoth commented 5 years ago

Done.