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

AtteanX::Parser::Turtle::Token - Token objects used for parsing of Turtle

Attributes

       "type"
           An integer indicating the token type, defined in AtteanX::Parser::Turtle::Constants

       "start_line"
           The line number in the source text that this token begins on.

       "start_column"
           The column number in the source text that this token begins on.

       "line"
           The line number in the source text that this token ends on.

       "column"
           The column number in the source text that this token ends on.

       "args"
           An array of values associated with the token (e.g. the integer value of an INT token).

Author

       Gregory Todd Williams  "<gwilliams@cpan.org>"

Bugs

       Please  report  any   bugs   or   feature   requests   to   through   the   GitHub   web   interface   at
       <https://github.com/kasei/attean/issues>.

Description

       The AtteanX::Parser::Turtle::Token class represents tokens produced and used during parsing of Turtle.

Methods

       "value"
           Returns the token value.

       "fast_constructor ( $type, $start_line, $start_col, $line, $col, \@args )"
           Returns a new token object.

       token_as_string()
           Returns a string version of the token (without escaping).

       is_string()
           Returns  true  if  the  token  is  one  of  the quoted string types (STRING1D, STRING3D, STRING1S, or
           STRING3S), false otherwise.

       "as_string"
           Returns a string description of the token including the token type and any associated values.

Name

       AtteanX::Parser::Turtle::Token - Token objects used for parsing of Turtle

See Also

Synopsis

         use v5.14;
         use Attean;
         my $term = Attean::Blank->new('b1');
         $term->ntriples_string; # _:b1

Version

       This document describes AtteanX::Parser::Turtle::Token version 0.035

See Also