Class: GraphQL::Language::Visitor::NodeVisitor

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/language/visitor.rb

Overview

Collect enter and leave hooks for classes in Nodes

Access NodeVisitors via #[]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeNodeVisitor



229
230
231
232
# File 'lib/graphql/language/visitor.rb', line 229

def initialize
  @enter = []
  @leave = []
end

Instance Attribute Details

#enterArray<Proc> (readonly)



225
226
227
# File 'lib/graphql/language/visitor.rb', line 225

def enter
  @enter
end

#leaveArray<Proc> (readonly)



227
228
229
# File 'lib/graphql/language/visitor.rb', line 227

def leave
  @leave
end

Instance Method Details

#<<(hook) ⇒ Object

Shorthand to add a hook to the #enter array



236
237
238
# File 'lib/graphql/language/visitor.rb', line 236

def <<(hook)
  enter << hook
end