9 references to RemoveSyntaxTrees
Microsoft.CodeAnalysis.VisualBasic (2)
Compilation\VisualBasicCompilation.vb (2)
995Return RemoveSyntaxTrees(DirectCast(trees, IEnumerable(Of SyntaxTree))) 2761Return Me.RemoveSyntaxTrees(trees.Cast(Of SyntaxTree)())
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (7)
Compilation\CompilationAPITests.vb (7)
667comp = comp.RemoveSyntaxTrees(tree) 732compCollection = compCollection.RemoveSyntaxTrees(hs) 742Assert.Throws(Of ArgumentException)(Sub() compCollection = compCollection.AddSyntaxTrees(t4, t5).RemoveSyntaxTrees(col)) 753Assert.Throws(Of ArgumentException)(Sub() compCollection = compCollection.AddSyntaxTrees(t4, t6).RemoveSyntaxTrees(stack)) 764Assert.Throws(Of ArgumentException)(Sub() compCollection = compCollection.AddSyntaxTrees(t4, t6).RemoveSyntaxTrees(queue)) 826comp = comp.AddSyntaxTrees().RemoveSyntaxTrees(listSyntaxTree) 827comp = comp.AddSyntaxTrees(listSyntaxTree).RemoveSyntaxTrees(listSyntaxTree)