Boo.BooLangStudioSpecs.WhenParsingAMultiLineCommentWithEmbeededQuotesInMultipleLinesOfCode.WhenParsingAMultiLineCommentWithEmbeededQuotesInMultipleLinesOfCode C# (CSharp) Method

WhenParsingAMultiLineCommentWithEmbeededQuotesInMultipleLinesOfCode() public method

        public WhenParsingAMultiLineCommentWithEmbeededQuotesInMultipleLinesOfCode()
        {
            rawLines = new List<string>();
            //            0         1         2
            //            012345678901234567890123456789
            rawLines.Add("class SomeClassName:"); // 0
            rawLines.Add("  def constructor():"); // 1
            rawLines.Add("    pass"); // 2
            rawLines.Add("  def HelloWorld():"); // 3
            rawLines.Add("    someVal = 1"); // 4
            //            0         1         2
            //            012345678901234567890123456789
            rawLines.Add("    /* start of multi-liner"); // 5
            //            01234567899012345678890123456789
            rawLines.Add("    some \"comments\" gohere"); // 6
            //            0         1         2
            //            012345678901234567890123456789
            rawLines.Add("    and we are done */"); // 7
            rawLines.Add("    aStatement()"); // 8
        }