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
Afficher le fichier Open project: paulbartrum/jurassic

Méthodes publiques

Méthode Description
EmptyBinder ( ) : System

Creates a new EmptyBinder instance.

Méthodes protégées

Méthode Description
GenerateStub ( Jurassic generator, int argumentCount ) : void

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

Method Details

EmptyBinder() public méthode

Creates a new EmptyBinder instance.
public EmptyBinder ( ) : System
Résultat System

GenerateStub() protected méthode

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.
Résultat void