sS tabsToSpaces(S s) { ret tabsToSpaces(2, s); } sS tabsToSpaces(int spacesPerTab, S s) { ret replace(s, "\t", repSpace(spacesPerTab)); }