class Crystal::Macros::Annotation

Overview

An annotation on top of a type or variable.

Defined in:

compiler/crystal/macros.cr

Instance Method Summary

Instance Method Detail

def [](index : NumberLiteral) : ASTNode #

Returns the value of a positional argument, or NilLiteral if out of bounds.


[View source]

Returns the value of a named argument, or NilLiteral if the named argument isn't used on self.


[View source]
def args : TupleLiteral #

Returns a TupleLiteral representing the positional arguments on self.


[View source]
def name : Path #

Returns the name of this annotation.


[View source]
def named_args : NamedTupleLiteral #

Returns a NamedTupleLiteral representing the named arguments on self.


[View source]