Babel.Compiler.RoutineLocalVariableStack.CreateLocal C# (CSharp) Method

CreateLocal() public method

public CreateLocal ( string name, TypeData type, bool isTypecaseVariable ) : LocalVariable
name string
type TypeData
isTypecaseVariable bool
return LocalVariable
        public override LocalVariable CreateLocal(string name, TypeData type,
                                                  bool isTypecaseVariable)
        {
            return new RoutineLocalVariable(name, type, isTypecaseVariable);
        }
RoutineLocalVariableStack