C# Class Jurassic.Compiler.MethodBinder

Selects a method from a list of candidates and performs type conversion from actual argument type to formal argument type.
Inheritance: Binder
显示文件 Open project: paulbartrum/jurassic

Protected Methods

Method Description
MethodBinder ( BinderMethod targetMethod ) : System

Creates a new Binder instance.

MethodBinder ( IEnumerable targetMethods ) : System

Creates a new Binder instance.

Method Details

MethodBinder() protected method

Creates a new Binder instance.
protected MethodBinder ( BinderMethod targetMethod ) : System
targetMethod BinderMethod A method to bind to.
return System

MethodBinder() protected method

Creates a new Binder instance.
protected MethodBinder ( IEnumerable targetMethods ) : System
targetMethods IEnumerable An enumerable list of methods to bind to. At least one /// method must be provided. Every method must have the same name and declaring type.
return System