/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/VisualBasic/Test/Emit/PDB/PDBCollectionInitializerTests.vb
218 строк
8 KB
Jonathon Marolf
update headers
23 янв 2020, 04:01
Не верифицирован
23 янв 2020, 04:01
91571a3
Код
Авторство
О чём код?
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports Microsoft.CodeAnalysis.Test.Utilities Imports Roslyn.Test.Utilities Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.PDB Public Class PDBCollectionInitializerTests Inherits BasicTestBase <ConditionalFact(GetType(WindowsOnly), Reason:=ConditionalSkipReason.NativePdbRequiresDesktop)> Public Sub CollectionInitializerAsCollTypeEquals() Dim source = <compilation> <file> Option Strict On Option Infer Off Option Explicit Off Imports System Imports System.Collections.Generic Class C1 Public Shared Sub Main() Dim aList1 As List(Of String) = New List(Of String)() From {"Hello", " ", "World"} End Sub End Class </file> </compilation> Dim compilation = CreateCompilationWithMscorlib40AndVBRuntime(source, TestOptions.DebugExe) compilation.VerifyPdb("C1.Main", <symbols> <files> <file id="1" name="" language="VB"/> </files> <entryPoint declaringType="C1" methodName="Main"/> <methods> <method containingType="C1" name="Main"> <customDebugInfo> <encLocalSlotMap> <slot kind="0" offset="4"/> </encLocalSlotMap> </customDebugInfo> <sequencePoints> <entry offset="0x0" startLine="9" startColumn="5" endLine="9" endColumn="29" document="1"/> <entry offset="0x1" startLine="10" startColumn="13" endLine="10" endColumn="91" document="1"/> <entry offset="0x2b" startLine="11" startColumn="5" endLine="11" endColumn="12" document="1"/> </sequencePoints> <scope startOffset="0x0" endOffset="0x2c"> <namespace name="System" importlevel="file"/> <namespace name="System.Collections.Generic" importlevel="file"/> <currentnamespace name=""/> <local name="aList1" il_index="0" il_start="0x0" il_end="0x2c" attributes="0"/> </scope> </method> </methods> </symbols>) End Sub <ConditionalFact(GetType(WindowsOnly), Reason:=ConditionalSkipReason.NativePdbRequiresDesktop)> Public Sub CollectionInitializerAsNewCollType() Dim source = <compilation> <file> Option Strict On Option Infer Off Option Explicit Off Imports System Imports System.Collections.Generic Class C1 Public Shared Sub Main() Dim aList2 As New List(Of String)() From {"Hello", " ", "World"} End Sub End Class </file> </compilation> Dim compilation = CreateCompilationWithMscorlib40AndVBRuntime(source, TestOptions.DebugExe) compilation.VerifyPdb("C1.Main", <symbols> <files> <file id="1" name="" language="VB"/> </files> <entryPoint declaringType="C1" methodName="Main"/> <methods> <method containingType="C1" name="Main"> <customDebugInfo> <encLocalSlotMap> <slot kind="0" offset="4"/> </encLocalSlotMap> </customDebugInfo> <sequencePoints> <entry offset="0x0" startLine="9" startColumn="5" endLine="9" endColumn="29" document="1"/> <entry offset="0x1" startLine="10" startColumn="13" endLine="10" endColumn="73" document="1"/> <entry offset="0x2b" startLine="11" startColumn="5" endLine="11" endColumn="12" document="1"/> </sequencePoints> <scope startOffset="0x0" endOffset="0x2c"> <namespace name="System" importlevel="file"/> <namespace name="System.Collections.Generic" importlevel="file"/> <currentnamespace name=""/> <local name="aList2" il_index="0" il_start="0x0" il_end="0x2c" attributes="0"/> </scope> </method> </methods> </symbols>) End Sub <ConditionalFact(GetType(WindowsOnly), Reason:=ConditionalSkipReason.NativePdbRequiresDesktop)> Public Sub CollectionInitializerNested() Dim source = <compilation> <file> Option Strict On Option Infer Off Option Explicit Off Imports System Imports System.Collections.Generic Class C1 Public Shared Sub Main() Dim aList1 As New List(Of List(Of String))() From {new List(Of String)() From {"Hello", "World"} } End Sub End Class </file> </compilation> Dim compilation = CreateCompilationWithMscorlib40AndVBRuntime(source, TestOptions.DebugExe) compilation.VerifyPdb("C1.Main", <symbols> <files> <file id="1" name="" language="VB"/> </files> <entryPoint declaringType="C1" methodName="Main"/> <methods> <method containingType="C1" name="Main"> <customDebugInfo> <encLocalSlotMap> <slot kind="0" offset="4"/> </encLocalSlotMap> </customDebugInfo> <sequencePoints> <entry offset="0x0" startLine="9" startColumn="5" endLine="9" endColumn="29" document="1"/> <entry offset="0x1" startLine="10" startColumn="13" endLine="10" endColumn="107" document="1"/> <entry offset="0x2b" startLine="11" startColumn="5" endLine="11" endColumn="12" document="1"/> </sequencePoints> <scope startOffset="0x0" endOffset="0x2c"> <namespace name="System" importlevel="file"/> <namespace name="System.Collections.Generic" importlevel="file"/> <currentnamespace name=""/> <local name="aList1" il_index="0" il_start="0x0" il_end="0x2c" attributes="0"/> </scope> </method> </methods> </symbols>) End Sub <ConditionalFact(GetType(WindowsOnly), Reason:=ConditionalSkipReason.NativePdbRequiresDesktop)> Public Sub CollectionInitializerAsNewCollTypeMultipleVariables() Dim source = <compilation> <file> Option Strict On Option Infer Off Option Explicit Off Imports System Imports System.Collections.Generic Class C1 Public Shared Sub Main() Dim aList1, aList2 As New List(Of String)() From {"Hello", " ", "World"} End Sub End Class </file> </compilation> Dim compilation = CreateCompilationWithMscorlib40AndVBRuntime(source, TestOptions.DebugExe) compilation.VerifyPdb("C1.Main", <symbols> <files> <file id="1" name="" language="VB"/> </files> <entryPoint declaringType="C1" methodName="Main"/> <methods> <method containingType="C1" name="Main"> <customDebugInfo> <encLocalSlotMap> <slot kind="0" offset="4"/> <slot kind="0" offset="12"/> </encLocalSlotMap> </customDebugInfo> <sequencePoints> <entry offset="0x0" startLine="9" startColumn="5" endLine="9" endColumn="29" document="1"/> <entry offset="0x1" startLine="10" startColumn="13" endLine="10" endColumn="19" document="1"/> <entry offset="0x2b" startLine="10" startColumn="21" endLine="10" endColumn="27" document="1"/> <entry offset="0x55" startLine="11" startColumn="5" endLine="11" endColumn="12" document="1"/> </sequencePoints> <scope startOffset="0x0" endOffset="0x56"> <namespace name="System" importlevel="file"/> <namespace name="System.Collections.Generic" importlevel="file"/> <currentnamespace name=""/> <local name="aList1" il_index="0" il_start="0x0" il_end="0x56" attributes="0"/> <local name="aList2" il_index="1" il_start="0x0" il_end="0x56" attributes="0"/> </scope> </method> </methods> </symbols>) End Sub End Class End Namespace