The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Kasago::Token - A search result for a token

SYNOPSIS

# search for a token
foreach my $token ($kasago->search('orange')){
print $token->source . "/"
. $token->file . "@"
. $token->col . ","
. $token->row . ": "
. $token->line . "\n";
}
# search for tokens
foreach my $token ($kasago->search_more($search)) {
print $token->source . "/"
. $token->file . "@"
. $token->col . ","
. $token->row . ": "
. $token->line . "\n";
}

DESCRIPTION

Kasago::Token represents a search result for a token.

AUTHOR

Leon Brocard <acme@astray.com>.

COPYRIGHT

Copyright (C) 2005, Leon Brocard

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.