Guest User

Untitled

a guest
Jul 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. module Arel
  2. module Visitors
  3. ###
  4. # The Identity visitor returns anything passed to the `accept` method.
  5. class Identity < Arel::Visitors::Visitor
  6. def initialize engine
  7. end
  8.  
  9. def accept ast
  10. ast
  11. end
  12. end
  13. end
  14. end
Add Comment
Please, Sign In to add comment