logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Mason::Plugin::DollarDot - Allow $. as substitution for $self-> and in attribute names

Author

       Jonathan Swartz <swartz@pobox.com>

Bugs

       Will not interpolate as expected inside double quotes:

           "My name is $.name"   # nope

       instead you have to do

           "My name is " . $.name

Description

       This plugin substitutes "$.identifier" for "$self->identifier" in all Perl code inside components, so
       that $. can be used when referring to attributes and calling methods. The actual regex is

           s/ \$\.([^\W\d]\w*) / \$self->$1 /gx;

Name

       Mason::Plugin::DollarDot - Allow $. as substitution for $self-> and in attribute names

Rationale

       In Mason 2, components have to write "$self->" a lot to refer to attributes that were simple scalars in
       Mason 1. This eases the transition pain.  $. was chosen because of its similar use in Perl 6.

       This plugin falls under the heading of gratuitous source filtering, which the author generally agrees is
       Evil. That said, this is a very limited filter, and seems unlikely to break any legitimate Perl syntax
       other than use of the $. special variable (input line number).

See Also

       Mason

Synopsis

           <%class>
           has 'name';
           has 'date';
           </%class>

           <%method greet>
           Hello, <% $.name %>. Today is <% $.date %>.
           </%method>

           ...
           % $.greet();

           <%init>
           # Set the date
           $.date(scalar(localtime));
           # or, if combined with LvalueAttributes
           $.date = scalar(localtime);
           </%init>

See Also