BoundType.BoundType C# (CSharp) Method

BoundType() public method

public BoundType ( Symbol, owner, TextLocation, location, string name ) : Panther.CodeAnalysis.Symbols
owner Symbol,
location TextLocation,
name string
return Panther.CodeAnalysis.Symbols
    public BoundType(Symbol owner, TextLocation location, string name) : base(owner, location, name)
    {
        this.Type = new ClassType(this);
    }
}
BoundType