Posso facilmente usare le firme dei token usando direttamente il nome del token:
my token t ( $x ) { $x };
'axb' ~~ / 'a' <t: 'x'> 'b' /; # match
'axb' ~~ / 'a' <t( 'x' )> 'b' /; # match
Tuttavia, non ho trovato un modo per farlo, quando il token è archiviato nella variabile:
my $t = token ( $x ) { $x };
'axb' ~~ / 'a' <$t: 'x'> 'b' /;
'axb' ~~ / 'a' <$t( 'x' )> 'b' /;
Entrambi danno:
===SORRY!=== Error while compiling ...
Unable to parse expression in metachar:sym<assert>; couldn't find final '>'
Qual è la sintassi magica per farlo?
A proposito: ho anche sfogliato la suite di test Raku e non include questo caso roast/S05-grammar/signatures.t
.
&
variabili.