-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handling remaining PROTOTYPE markers in features/tuples branch (#12411)
- Loading branch information
Showing
11 changed files
with
85 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/Compilers/CSharp/Portable/Syntax/EventFieldDeclarationSyntax.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
| ||
namespace Microsoft.CodeAnalysis.CSharp.Syntax | ||
{ | ||
public sealed partial class EventFieldDeclarationSyntax : BaseFieldDeclarationSyntax | ||
{ | ||
public EventFieldDeclarationSyntax AddDeclarationVariables(params VariableDeclaratorSyntax[] items) | ||
{ | ||
return this.WithDeclaration(this.Declaration.WithVariables(this.Declaration.Variables.AddRange(items))); | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/Compilers/CSharp/Portable/Syntax/FieldDeclarationSyntax.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
| ||
namespace Microsoft.CodeAnalysis.CSharp.Syntax | ||
{ | ||
public sealed partial class FieldDeclarationSyntax : BaseFieldDeclarationSyntax | ||
{ | ||
public FieldDeclarationSyntax AddDeclarationVariables(params VariableDeclaratorSyntax[] items) | ||
{ | ||
return this.WithDeclaration(this.Declaration.WithVariables(this.Declaration.Variables.AddRange(items))); | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/Compilers/CSharp/Portable/Syntax/FixedStatementSyntax.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
| ||
namespace Microsoft.CodeAnalysis.CSharp.Syntax | ||
{ | ||
public sealed partial class FixedStatementSyntax : StatementSyntax | ||
{ | ||
public FixedStatementSyntax AddDeclarationVariables(params VariableDeclaratorSyntax[] items) | ||
{ | ||
return this.WithDeclaration(this.Declaration.WithVariables(this.Declaration.Variables.AddRange(items))); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters