Class: YARD::Handlers::Ruby::MethodCallWrapper
- Inherits:
-
HandlesExtension
- Object
- HandlesExtension
- YARD::Handlers::Ruby::MethodCallWrapper
- Defined in:
- lib/yard/handlers/ruby/base.rb
Instance Attribute Summary collapse
-
#name ⇒ String
inherited
from HandlesExtension
readonly
protected
The extension matcher value.
Instance Method Summary collapse
Constructor Details
This class inherits a constructor from YARD::Handlers::Ruby::HandlesExtension
Instance Attribute Details
#name ⇒ String (readonly, protected) Originally defined in class HandlesExtension
Returns the extension matcher value
Instance Method Details
#matches?(node) ⇒ Boolean
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/yard/handlers/ruby/base.rb', line 35 def matches?(node) case node.type when :var_ref if !node.parent || node.parent.type == :list return true if node[0].type == :ident && (name.nil? || node[0][0] == name) end when :fcall, :command, :vcall return true if name.nil? || node[0][0] == name when :call, :command_call return true if name.nil? || node[2][0] == name end false end |