shard-spectator/src/spectator/label.cr
2021-11-28 15:45:17 -07:00

7 lines
251 B
Crystal

module Spectator
# Identifier used in the spec.
# Significant 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