AsynqFramework.CodeWriter.CodeWriterBase.CodeWriterBase C# (CSharp) Method

CodeWriterBase() protected method

protected CodeWriterBase ( int indentLevel, List tokens ) : System
indentLevel int
tokens List
return System
        protected CodeWriterBase(int indentLevel, List<OutputToken> tokens)
        {
            this.indentLevel = indentLevel;
            this.output = new List<OutputToken>(tokens);
        }

Same methods

CodeWriterBase::CodeWriterBase ( ) : System