package org.jruby.runtime.callsite;

import org.jruby.runtime.CallType;

See Also:
  • CachingCallSite
/** * @see CachingCallSite */
public class MonomorphicCallSite extends CachingCallSite { public MonomorphicCallSite(String methodName) { super(methodName, CallType.NORMAL); } }