44 references to Insert
Microsoft.AspNetCore.App.CodeFixes (2)
Microsoft.CodeAnalysis (1)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
Microsoft.CodeAnalysis.CSharp.Features (4)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (7)
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Microsoft.CodeAnalysis.Features (1)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (11)
Syntax\SeparatedSyntaxListTests.vb (11)
49newList = list.Insert(0, nodeD)
53newList = list.Insert(1, nodeD)
57newList = list.Insert(2, nodeD)
61newList = list.Insert(3, nodeD)
138Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.Insert(-1, nodeD))
139Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.Insert(list.Count + 1, nodeD))
148Assert.Throws(Of ArgumentNullException)(Function() list.Insert(0, Nothing))
173newList = list.Insert(0, nodeD)
186Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.Insert(1, nodeD))
187Assert.Throws(Of ArgumentOutOfRangeException)(Function() list.Insert(-1, nodeD))
194Assert.Throws(Of ArgumentNullException)(Function() list.Insert(0, Nothing))
Microsoft.CodeAnalysis.VisualBasic.Workspaces (3)
Microsoft.VisualStudio.LanguageServices.CSharp (7)
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)