LynnaLab.FileComponent.FileComponent C# (CSharp) Method

FileComponent() public method

public FileComponent ( FileParser parser, IList spacing ) : System
parser FileParser
spacing IList
return System
        public FileComponent(FileParser parser, IList<int> spacing)
        {
            if (parser != null)
                _project = parser.Project;
            EndsLine = true;
            Fake = false;
            if (spacing != null)
                this.spacing = new List<int>(spacing);
            this.parser = parser;
        }