shard-spectator/src/spectator/label.cr
2021-01-09 00:12:28 -07:00

7 lines
250 B
Crystal

module Spectator
# Identifier used in the spec.
# Signficant to the user.
# When a label is a symbol, then it is referencing a type or method.
# A label is nil when one can't be provided or captured.
alias Label = String | Symbol | Nil
end