C# Class Jurassic.Library.ThrowTypeErrorFunction

Represents a JavaScript function that throws a type error.
Inheritance: FunctionInstance
Mostra file Open project: paulbartrum/jurassic Class Usage Examples

Public Methods

Method Description
CallLateBound ( object thisObject ) : object

Calls this function, passing in the given "this" value and zero or more arguments.

Private Methods

Method Description
ThrowTypeErrorFunction ( ObjectInstance prototype ) : System

Creates a new ThrowTypeErrorFunction instance.

ThrowTypeErrorFunction ( ObjectInstance prototype, string message ) : System

Creates a new ThrowTypeErrorFunction instance.

Method Details

CallLateBound() public method

Calls this function, passing in the given "this" value and zero or more arguments.
public CallLateBound ( object thisObject ) : object
thisObject object The value of the "this" keyword within the function.
return object