Exemplo n.º 1
0
 [Emitted] //RubyBinder
 public static bool IsSuperCallTarget(RubyScope/*!*/ scope, RubyModule/*!*/ module, string/*!*/ methodName, out object self) {
     RubyModule _currentDeclaringModule;
     string _currentMethodName;
     scope.GetSuperCallTarget(out _currentDeclaringModule, out _currentMethodName, out self);
     return module == _currentDeclaringModule && methodName == _currentMethodName;
 }