﻿Source Location: (14:0,14 [17] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
|"*, TestAssembly"|
Generated Location: (1774:32,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: (2297:49,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: (2645:64,14 [11] )
|person.Name|

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

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

Source Location: (256:14,2 [36] TestFiles/IntegrationTests/CodeGenerationIntegrationTest/Markup_InCodeBlocksWithTagHelper.cshtml)
| await AnnounceBirthday(people[0]); |
Generated Location: (3409:88,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: (3686:97,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: (4005:108,33 [9] )
|formatted|

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

        |
Generated Location: (4348:117,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: (4549:126,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: (4813:135,18 [1] )
|i|

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

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

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

        |
Generated Location: (5240:150,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: (5557:164,31 [161] )
|
        return Task.CompletedTask;
    }


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

