rewrite macro parser, improving speed and making parameter parsing more sane

This commit is contained in:
Graham Knop 2008-09-16 02:09:37 +00:00
parent e2942b450e
commit f0e6a30d75
9 changed files with 293 additions and 65 deletions

View file

@ -0,0 +1,14 @@
package WebGUI::Macro::VisualMacro;
use strict;
use warnings;
sub process {
my $session = shift;
my @params = @_;
$_ = "`$_`" for @params;
return "\@MacroCall[" . join('.', @params) . "]:";
}
1;