Bike.Interpreter.ScopeFrame.ScopeFrame C# (CSharp) Method

ScopeFrame() private method

private ScopeFrame ( Parser.SourceLocation location, BikeFunction func, ScopeFrame global, ScopeFrame parent, ScopeFrame caller ) : System.Collections.Generic
location Parser.SourceLocation
func BikeFunction
global ScopeFrame
parent ScopeFrame
caller ScopeFrame
return System.Collections.Generic
        private ScopeFrame(SourceLocation location, BikeFunction func, 
            ScopeFrame global, ScopeFrame parent, ScopeFrame caller)
        {
            this.Location = location;
            this.Func = func;
            this.global = global;
            this.parent = parent;
            this.Caller = caller;
        }

Same methods

ScopeFrame::ScopeFrame ( ) : System.Collections.Generic
ScopeFrame::ScopeFrame ( BikeFunction func, ScopeFrame global, ScopeFrame parent, ScopeFrame caller ) : System.Collections.Generic