C# Class Jurassic.Library.ClrFunction.EmptyBinder

Creates a delegate that does type conversion and calls the method represented by this object. A binder that merely returns undefined.
Inheritance: Jurassic.Compiler.Binder
ファイルを表示 Open project: paulbartrum/jurassic

Public Methods

Method Description
EmptyBinder ( ) : System

Creates a new EmptyBinder instance.

Protected Methods

Method Description
GenerateStub ( Jurassic generator, int argumentCount ) : void

Generates a method that does type conversion and calls the bound method.

Method Details

EmptyBinder() public method

Creates a new EmptyBinder instance.
public EmptyBinder ( ) : System
return System

GenerateStub() protected method

Generates a method that does type conversion and calls the bound method.
protected GenerateStub ( Jurassic generator, int argumentCount ) : void
generator Jurassic The ILGenerator used to output the body of the method.
argumentCount int The number of arguments that will be passed to the delegate.
return void