Babel.Compiler.StatementList.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : object
return object
        public override object Clone()
        {
            StatementList statementList =
                (StatementList) base.Clone();
            statementList.localVariables = new Hashtable();
            return statementList;
        }