You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
434 B
15 lines
434 B
# ----------------------------------------------------------------------------- |
|
# 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;
|
|
|