class YARD::Verifier
def call(object)
-
(Boolean)
- the result of the expressions
Parameters:
-
object
(CodeObjects::Base
) -- the object to verify
Other tags:
- Note: - If the object is a {CodeObjects::Proxy} the result will always be true.
def call(object) return true if object.is_a?(CodeObjects::Proxy) modify_nilclass @object = object retval = __execute ? true : false unmodify_nilclass retval end