public Instance SetMethod(object name, NativeCodeCallback nativeCode) { return SetField(name, new Instance { Prototype = new Instance { Code = new FunctionCode(nativeCode) } }); }
public FunctionCode(NativeCodeCallback native) { this.NativeCode = native; }