﻿Source Location: (14:0,14 [17] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|"*, TestAssembly"|
Generated Location: (1035:18,37 [17] )
|"*, TestAssembly"|

Source Location: (35:1,2 [154] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|
    var people = new Person[]
    {
        new Person() { Name = "Taylor", Age = 95, },
    };

    void PrintName(Person person)
    {
        |
Generated Location: (1541:35,2 [154] )
|
    var people = new Person[]
    {
        new Person() { Name = "Taylor", Age = 95, },
    };

    void PrintName(Person person)
    {
        |

Source Location: (195:9,14 [11] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|person.Name|
Generated Location: (1889:50,14 [11] )
|person.Name|

Source Location: (212:9,31 [9] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|
    }
|
Generated Location: (2259:59,31 [9] )
|
    }
|

Source Location: (228:13,2 [23] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
| PrintName(people[0]); |
Generated Location: (2448:67,2 [23] )
| PrintName(people[0]); |

Source Location: (256:14,2 [36] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
| await AnnounceBirthday(people[0]); |
Generated Location: (2653:74,2 [36] )
| await AnnounceBirthday(people[0]); |

Source Location: (309:16,12 [106] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|
    Task AnnounceBirthday(Person person)
    {
        var formatted = $"Mr. {person.Name}";
        |
Generated Location: (2930:83,12 [106] )
|
    Task AnnounceBirthday(Person person)
    {
        var formatted = $"Mr. {person.Name}";
        |

Source Location: (455:21,33 [9] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|formatted|
Generated Location: (3249:94,33 [9] )
|formatted|

Source Location: (487:22,14 [12] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|

        |
Generated Location: (3592:103,14 [12] )
|

        |

Source Location: (514:25,9 [66] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|for (var i = 0; i < person.Age / 10; i++)
        {
            |
Generated Location: (3793:112,9 [66] )
|for (var i = 0; i < person.Age / 10; i++)
        {
            |

Source Location: (586:27,18 [1] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|i|
Generated Location: (4057:121,18 [1] )
|i|

Source Location: (609:27,41 [11] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|
        }|
Generated Location: (4280:128,41 [11] )
|
        }|

Source Location: (635:29,13 [106] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|

        if (person.Age < 20)
        {
            return Task.CompletedTask;
        }

        |
Generated Location: (4484:136,13 [106] )
|

        if (person.Age < 20)
        {
            return Task.CompletedTask;
        }

        |

Source Location: (764:36,31 [161] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|
        return Task.CompletedTask;
    }


    class Person
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
|
Generated Location: (4801:150,31 [161] )
|
        return Task.CompletedTask;
    }


    class Person
    {
        public string Name { get; set; }
        public int Age { get; set; }
    }
|

