Skip to content

Instantly share code, notes, and snippets.

@chriswailes
Created September 21, 2012 16:20
Show Gist options
  • Save chriswailes/3762434 to your computer and use it in GitHub Desktop.
Save chriswailes/3762434 to your computer and use it in GitHub Desktop.
Visitor Implementation Options
class MyVisitor < RLTK::Visitor
def wrapper_fun
...
yield
...
end
# Option 1
on KlassName do
wrapper_fun do |params|
# do stuff
end
end
# Option 2
on KlassName, wrapper: :wrapper_fun do
# do stuff
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment