aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Grammar/Actions.pm6
blob: 039f11e21ed379f4d9d6b9b373cd9e44cd4185c4 (plain)
1
2
3
4
5
6
class IRC::Grammar::Actions {
    method class     ($/) { $/.make: ~$/                            }
    method rules     ($/) { $/.make: ~$/                            }
    method pair      ($/) { $/.make: $<class>.made => $<rules>.made }
    method TOP       ($/) { $/.make: $<pair>ยป.made                  }
}