C# Class DartSharp.Language.BaseClass

Inheritance: IClass
Datei anzeigen Open project: ajlopez/DartSharp Class Usage Examples

Public Methods

Method Description
BaseClass ( string name, IClass super ) : System
DefineMethod ( string name, IMethod method ) : void
DefineVariable ( string name, IType type ) : void
GetMethod ( string name ) : IMethod
GetVariableType ( string name ) : IType
NewInstance ( object arguments ) : object

Method Details

BaseClass() public method

public BaseClass ( string name, IClass super ) : System
name string
super IClass
return System

DefineMethod() public method

public DefineMethod ( string name, IMethod method ) : void
name string
method IMethod
return void

DefineVariable() public method

public DefineVariable ( string name, IType type ) : void
name string
type IType
return void

GetMethod() public method

public GetMethod ( string name ) : IMethod
name string
return IMethod

GetVariableType() public method

public GetVariableType ( string name ) : IType
name string
return IType

NewInstance() public method

public NewInstance ( object arguments ) : object
arguments object
return object