Macros are methods that receive AST nodes at compile-time and produce code that is pasted into a program. For example:
macro define_method(name, content)
def {{name}}
{{content}}
end
end
# This generates:
#
# def foo
# 1
# end
define_method foo, 1
foo #=> 1
A macro's definition body looks like regular Crystal code with
extra syntax to manipulate the AST nodes. The generated code must
be valid Crystal code, meaning that you can't for example generate
a def
without a matching end
, or a single when
expression of a
case
, since both of them are not complete valid expressions.
Macros declared at the top-level are visible anywhere. If a top-level macro is marked as private
it is only accessible in that file.
They can also be defined in classes and modules, and are only visible in those scopes. Macros are also looked-up in the ancestors chain (superclasses and included modules).
For example, a block which is given an object to use as the default receiver by being invoked with with ... yield
can access macros defined within that object's ancestors chain:
class Foo
macro emphasize(value)
"***#{ {{value}} }***"
end
def yield_with_self
with self yield
end
end
Foo.new.yield_with_self { emphasize(10) } #=> "***10***"
You use {{...}}
to paste, or interpolate, an AST node, as in the above example.
Note that the node is pasted as-is. If in the previous example we pass a symbol, the generated code becomes invalid:
# This generates:
#
# def :foo
# 1
# end
define_method :foo, 1
Note that :foo
was the result of the interpolation, because that's what was passed to the macro. You can use the method ASTNode#id
in these cases, where you just need an identifier.
You can invoke a fixed subset of methods on AST nodes at compile-time. These methods are documented in a ficticious Macros module.
For example, invoking ASTNode#id
in the above example solves the problem:
macro define_method(name, content)
def {{name.id}}
{{content}}
end
end
# This correctly generates:
#
# def foo
# 1
# end
define_method :foo, 1
You use {% if condition %}
... {% end %}
to conditionally generate code:
macro define_method(name, content)
def {{name}}
{% if content == 1 %}
"one"
{% else %}
{{content}}
{% end %}
end
end
define_method foo, 1
define_method bar, 2
foo #=> one
bar #=> 2
Similar to regular code, Nop
, NilLiteral
and a false BoolLiteral
are considered falsey, while everything else is considered truthy.
Macro conditionals can be used outside a macro definition:
{% if env("TEST") %}
puts "We are in test mode"
{% end %}
To iterate an ArrayLiteral
:
macro define_dummy_methods(names)
{% for name, index in names %}
def {{name.id}}
{{index}}
end
{% end %}
end
define_dummy_methods [foo, bar, baz]
foo #=> 0
bar #=> 1
baz #=> 2
The index
variable in the above example is optional.
To iterate a HashLiteral
:
macro define_dummy_methods(hash)
{% for key, value in hash %}
def {{key.id}}
{{value}}
end
{% end %}
end
define_dummy_methods({foo: 10, bar: 20})
foo #=> 10
bar #=> 20
Macro iterations can be used outside a macro definition:
{% for name, index in ["foo", "bar", "baz"] %}
def {{name.id}}
{{index}}
end
{% end %}
foo #=> 0
bar #=> 1
baz #=> 2
A macro can accept variadic arguments:
macro define_dummy_methods(*names)
{% for name, index in names %}
def {{name.id}}
{{index}}
end
{% end %}
end
define_dummy_methods foo, bar, baz
foo #=> 0
bar #=> 1
baz #=> 2
The arguments are packed into an ArrayLiteral
and passed to the macro.
Additionaly, using *
when interpolating an ArrayLiteral
interpolates the elements separated by commas:
macro println(*values)
print {{*values}}, '\n'
end
println 1, 2, 3 # outputs 123\n
When a macro is invoked you can access the current scope, or type, with a special instance variable: @type
. The type of this variable is TypeNode
, which gives you access to type information at compile time.
Note that @type
is always the instance type, even when the macro is invoked in a class method.
Macros can access constants. For example:
VALUES = [1, 2, 3]
{% for value in VALUES %}
puts {{value}}
{% end %}
If the constant denotes a type, you get back a TypeNode
.