Tagged Questions

17
votes
6answers
698 views

Why are Perl source filters bad and when is it OK to use them?

It is "common knowledge" that source filters are bad and should not be used in production code. When answering a a similar, but more specific question I couldn't find any good references that explain ...
13
votes
3answers
170 views

What exactly is a source filter?

Whenever I see the term source filter I am left wondering as to what it refers to. Aside from a formal definition, I think an example would also be helpful to drive the message home.
8
votes
8answers
615 views

Is there a Perl solution for lazy lists this side of Perl 6?

Has anybody found a good solution for lazily-evaluated lists in Perl? I've tried a number of ways to turn something like for my $item ( map { ... } @list ) { } into a lazy evaluation--by tie-ing ...
4
votes
5answers
224 views

What concerns should I have if I use Smart::Comments in development code?

I understand that Smart::Comments should not be used in production code, since it is a source filter. However, I have been using Smart::Comments in my development code and then commenting out the ...
3
votes
0answers
56 views

Using Filter::Util::Call to access the remainder of the calling source line in Perl

The following is a basic source filter that simply inserts a new line into the Perl source code at the point where it is use'd and then removes itself: use warnings; use strict; use 5.010; {package ...