sbool tok_isSpacedDash(LS tok) { ret l(tok) == 3 && isOnlySpaces(first(tok)) && isOnlySpaces(last(tok)) && isDash(second(tok)); }