Babel.Compiler.LocalVariable.LocalVariable C# (CSharp) Method

LocalVariable() public method

public LocalVariable ( string name, TypeData localType, bool isTypecaseVariable ) : System
name string
localType TypeData
isTypecaseVariable bool
return System
        public LocalVariable(string name, TypeData localType,
                             bool isTypecaseVariable)
        {
            this.name = name;
            this.localType = localType;
            this.isTypecaseVariable = isTypecaseVariable;
        }