AjTalk.Language.BaseBehavior.NewObject C# (CSharp) Method

NewObject() public method

public NewObject ( ) : object
return object
        public virtual object NewObject()
        {
            if (this.IsIndexed)
                return new BaseIndexedObject(this, this.NoInstanceVariables);

            return new BaseObject(this, this.NoInstanceVariables);
        }