class RakuAST::Doc::Declarator

Contains the declarator docs of a RakuAST object
class RakuAST::Doc::Declarator { }

The RakuAST::Doc::Declarator class contains the leading and trailing documentation of an object doing the RakuAST::Doc::DeclaratorTarget role.

Support for RakuAST functionality is available in language version 6.e+ and was added in Rakudo compiler release 2023.02. In earlier language versions it is only available when specifying:

use experimental :rakuast;

Object introspection

RakuAST::Doc::Declarator objects are typically created when parsing Raku Programming Language code that has objects with leading (#|) and trailing (#=) documentation on it. So most developers will only need to know how to introspect the objects created.

method WHEREFORE

say "attached to a $declarator.WHEREFORE.^name() object";

Returns the object for which this object contains the declarator documentation.

method leading

.say for $declarator.leading;

Returns the lines of the leading declarator documentation (one for each line with #| if the object was created from parsing Raku source code.

method trailing

.say for $declarator.trailing;

Returns the lines of the trailing declarator documentation (one for each line with #= if the object was created from parsing Raku source code.

method raku

# method .gist falls back to .raku
say $declarator;  # RakuAST::Doc::Declarator.new(...

Returns the string that is needed for the creation of the block using RakuAST calls.

Object creation

One seldom creates RakuAST::Doc::Declarator objects directly. This documentation is intended for those few people who'd like to devise their own way of programmatically building a RakuAST::Doc::Declarator object.

method new

method new(
  Str:D :$WHEREFORE,  # the associated RakuAST object
        :@leading,    # leading lines of documentation
        :@trailing    # trailing lines of documentation
)

The new method can be called to create a new RakuAST::Doc::Declarator object. It only takes named arguments.

# there is no syntax for creating just a ::Declarator object

my $declarator = RakuAST::Doc::Declarator.new(
  :WHEREFORE(RakuAST::VarDeclaration::Simple.new(...)),
  :leading("line 1 leading","line 2 leading"),
  :trailing("line 1 trailing","line 2 trailing")
);

Note that the leading and trailing documentation may contain any left margin whitespace.

:WHEREFORE

The RakuAST object for which this declarator contains the documentation.

:leading

A Positional with the lines of leading documentation strings.

:trailing

A Positional with the lines of trailing documentation strings.

Object modification

method set-WHEREFORE

$declarator.set-WHEREFORE($object);

Set the object for which the RakuAST::Doc::Declarator object contains the documentation.

method set-leading

$declarator.set-leading;  # reset
$declarator.set-leading("foo", "bar");

Set the leading documentation. If no arguments are specified, reset to not having any leading documentation.

method add-leading

$declarator.add-leading("additional");

Add a line to the leading documentation.

method set-trailing

$declarator.set-trailing;  # reset
$declarator.set-trailing("foo", "bar");

Set the trailing documentation. If no arguments are specified, reset to not having any trailing documentation.

method add-trailing

$declarator.add-trailing("additional");

Add a line to the trailing documentation.

See Also

class int

Native integer

class Allomorph

Dual value number and string

class Any

Thing/object

class AST

Abstract representation of a piece of source code

class atomicint

Integer (native storage at the platform's atomic operation size)

class Block

Code object with its own lexical scope

class CallFrame

Captures the current frame state

class Code

Code object

class Collation

Encapsulates instructions about how strings should be sorted

class Compiler

Information related to the compiler that is being used

class Complex

Complex number

class ComplexStr

Dual value complex number and string

class Cool

Object that can be treated as both a string and number

class CurrentThreadScheduler

Scheduler that synchronously executes code on the current thread

class Date

Calendar date

class DateTime

Calendar date with time

class Distribution::Hash

Distribution::Hash

class Distribution::Locally

Distribution::Locally

class Distribution::Path

Distribution::Path

class Distribution::Resource

Every one of the resources installed with a distribution

class Duration

Length of time

class Encoding::Registry

Management of available encodings

class FatRat

Rational number (arbitrary-precision)

class ForeignCode

Rakudo-specific class that wraps around code in other languages (generally NQP)

class Format

Convert values to a string given a format specification

class Formatter

Produce Callable for given format specification

class HyperSeq

An object for performing batches of work in parallel with ordered output

class HyperWhatever

Placeholder for multiple unspecified values/arguments

class Instant

Specific moment in time

class Int

Integer (arbitrary-precision)

class IntStr

Dual value integer and string

class Junction

Logical superposition of values

class Label

Tagged location in the source code

class Lock::Async

A non-blocking, non-re-entrant, mutual exclusion lock

class Macro

Compile-time routine

class Method

Member function

class Mu

The root of the Raku type hierarchy.

class Nil

Absence of a value or a benign failure

class Num

Floating-point number

role Numeric

Number or object that can act as a number

class NumStr

Dual value floating-point number and string

class ObjAt

Unique identification for an object

class Parameter

Element of a Signature

class Perl

Perl related information

class Proxy

Item container with custom storage and retrieval

class RaceSeq

Performs batches of work in parallel without respecting original order.

class Raku

Raku related information

package RakuAST

Namespace for holding RakuAST related classes

class RakuAST::Doc::Block

Contains the information of a RakuDoc block

class RakuAST::Doc::Markup

Contains the information about RakuDoc markup

class RakuAST::Doc::Paragraph

Contains the information about a RakuDoc paragraph

class Rat

Rational number (limited-precision)

class RatStr

Dual value rational number and string

class Routine

Code object with its own lexical scope and return handling

class Routine::WrapHandle

Holds all information needed to unwrap a wrapped routine.

class Scalar

A mostly transparent container used for indirections

class Signature

Parameter list pattern

class Str

String of characters

class StrDistance

Contains the result of a string transformation.

class Sub

Subroutine

class Submethod

Member function that is not inherited by subclasses

class Telemetry

Collect performance state for analysis

class Telemetry::Instrument::Thread

Instrument for collecting Thread data

class Telemetry::Instrument::ThreadPool

Instrument for collecting ThreadPoolScheduler data

class Telemetry::Instrument::Usage

Instrument for collecting getrusage data

class Telemetry::Period

Performance data over a period

class Telemetry::Sampler

Telemetry instrument pod

Subset UInt

Unsigned integer (arbitrary-precision)

class ValueObjAt

Unique identification for value types

class Variable

Object representation of a variable for use in traits

class Version

Module version descriptor

class Whatever

Placeholder for the value of an unspecified argument

class WhateverCode

Code object constructed by Whatever-priming

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.