13 writes to Type
Microsoft.VisualStudio.LanguageServices.UnitTests (13)
CodeModel\CSharp\CodeClassTests.vb (9)
1812
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void"})
1835
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void"})
1858
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "System.Void"})
1884
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void"})
1910
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void", .Position = 1})
1936
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void", .Position = "i"})
2003
Await TestAddFunction(code, expected, New FunctionData With {.Name = "@as", .
Type
= "void", .Access = EnvDTE.vsCMAccess.vsCMAccessPublic})
2025
Await TestAddFunction(code, expected, New FunctionData With {.Name = "C", .Kind = EnvDTE.vsCMFunction.vsCMFunctionDestructor, .
Type
= "void", .Access = EnvDTE.vsCMAccess.vsCMAccessPublic})
2052
Await TestAddFunction(code, expected, New FunctionData With {.Name = "M2", .
Type
= "void", .Position = -1, .Access = EnvDTE.vsCMAccess.vsCMAccessPrivate})
CodeModel\CSharp\CodeInterfaceTests.vb (1)
360
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void"})
CodeModel\CSharp\CodeStructTests.vb (1)
385
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .
Type
= "void"})
CodeModel\VisualBasic\CodeClassTests.vb (2)
774
Await TestAddFunction(code, expected, New FunctionData With {.Name = "Goo", .Access = EnvDTE.vsCMAccess.vsCMAccessPrivate, .
Type
= "Integer"})
887
Await TestAddFunction(code, expected, New FunctionData With {.Name = "M2", .
Type
= "void", .Position = -1, .Access = EnvDTE.vsCMAccess.vsCMAccessPrivate})
4 references to Type
Microsoft.VisualStudio.LanguageServices.UnitTests (4)
CodeModel\AbstractCodeClassTests.vb (1)
141
Return codeElement.AddFunction(data.Name, data.Kind, data.
Type
, data.Position, data.Access, data.Location)
CodeModel\AbstractCodeInterfaceTests.vb (1)
58
Return codeElement.AddFunction(data.Name, data.Kind, data.
Type
, data.Position, data.Access)
CodeModel\AbstractCodeStructTests.vb (1)
66
Return codeElement.AddFunction(data.Name, data.Kind, data.
Type
, data.Position, data.Access, data.Location)
CodeModel\AbstractFileCodeModelTests.vb (1)
112
fileCodeModel.AddFunction(data.Name, data.Kind, data.
Type
, data.Position, data.Access)