Skip to content

Instantly share code, notes, and snippets.

View titsuki's full-sized avatar

Itsuki Toyota titsuki

View GitHub Profile
@LLFourn
LLFourn / visitor-circular-dependencies.pm6
Last active May 29, 2016 17:07
Visitor Pattern package relationships in Perl 6
# this is a .gist to explain my solution wrt https://rt.perl.org/Public/Bug/Display.html?id=128275
# VisitorRoles.pm6
role Visitor {
method visit {...}
}
role Node {
method accept {...}
}