robrix / Hammer

Parsing and pattern matching in Objective-C
BSD 3-Clause "New" or "Revised" License
75 stars 1 forks source link

Destructuring #75

Closed robrix closed 10 years ago

robrix commented 10 years ago

Implements destructuring pattern matching.

id firstIfConcatenation = [HMRCase match:combinator withCases:@[
    [HMRCase case:HMRConcatenationPredicate(HMRBind, HMREmptyPredicate) then:^(id<HMRCombinator> first) {
        return first;
    }],
]]

Fixes #15.