class Yadriggy::C::NativeMethodType
Type
for native methods.
Attributes
body[R]
@return [String] the method body.
Public Class Methods
new(method_type, body_code)
click to toggle source
@param [MethodType] method_type a method type. @param [String] body_code the body of a native method.
Calls superclass method
# File lib/yadriggy/c/ctypecheck.rb, line 34 def initialize(method_type, body_code) super(method_type) @body = body_code end