# ----------------------------------------------------------------------------- # dots.pm # Allows the user to use dots instead of ->'s in OO syntax. This is nothing # more than a repackaging of the DotsForArrows source filter from # Damian Conway's Filter::Simple module. # ----------------------------------------------------------------------------- package dots; use Filter::Simple; FILTER { s/\.(?=[a-z_\$({[])/->/gi }; 1;