class Mint::Ast::EnumDestructuring
- Mint::Ast::EnumDestructuring
- Mint::Ast::Node
- Reference
- Object
Defined in:
ast/enum_destructuring.crConstructors
Instance Method Summary
-
#exhaustive?
TODO Probably this will need to go into the type checker if we want to support cases like this:
- #name : Mint::Ast::TypeId?
- #option : Mint::Ast::TypeId
- #parameters : Array(Mint::Ast::Node)
Instance methods inherited from class Mint::Ast::Node
from : Int32
from,
from=(from : Int32)
from=,
input : Data
input,
location : Location
location,
new_line?
new_line?,
owns?(node)
owns?,
source
source,
static?
static?,
static_value
static_value,
to : Int32
to,
to_tuple
to_tuple
Constructor methods inherited from class Mint::Ast::Node
new(input : Mint::Ast::Data, from : Int32, to : Int32)
new
Constructor Detail
def self.new(parameters : Array(Node), option : TypeId, name : TypeId | Nil, input : Data, from : Int32, to : Int32)
#
Instance Method Detail
def exhaustive?
#
TODO Probably this will need to go into the type checker if we want to support cases like this:
enum Test { Branch(String) }
let Test::Branch(value) = Test::Branch("Hello")