shard-spectator/src/spectator/label.cr

8 lines
251 B
Crystal
Raw Normal View History

2021-01-09 07:12:28 +00:00
module Spectator
# Identifier used in the spec.
2021-11-28 22:45:17 +00:00
# Significant to the user.
2021-01-09 07:12:28 +00:00
# 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