Files
helix/tests/query/highlights/elm/constructors.elm
2026-06-20 14:49:53 +09:00

12 lines
208 B
Elm

type Color = Red | Blue
-- ^ @type
-- ^ @constructor
-- ^ @constructor
f x = case x of
Just y -> y
--^ @constructor
Nothing -> 0
--^ @constructor
a = Just 1
-- ^ @constructor