4 references to TupleTypeExpression
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (2)
CodeGeneration\SyntaxGeneratorTests.cs (2)
283
VerifySyntax<TypeSyntax>(Generator.
TupleTypeExpression
(new[] { intType, intType }), "(global::System.Int32, global::System.Int32)");
284
VerifySyntax<TypeSyntax>(Generator.
TupleTypeExpression
(new[] { intType, intType }, ["x", "y"]), "(global::System.Int32 x, global::System.Int32 y)");
Microsoft.CodeAnalysis.VisualBasic.Workspaces.UnitTests (2)
CodeGeneration\SyntaxGeneratorTests.vb (2)
260
VerifySyntax(Of TypeSyntax)(Generator.
TupleTypeExpression
(New ITypeSymbol() {intType, intType}), "(System.Int32, System.Int32)")
261
VerifySyntax(Of TypeSyntax)(Generator.
TupleTypeExpression
(New ITypeSymbol() {intType, intType}, New String() {"x", "y"}), "(x As System.Int32, y As System.Int32)")