Updated doc comments.

上级 7169da09
......@@ -9,9 +9,16 @@ namespace Microsoft.CodeAnalysis.Semantics
/// </summary>
/// <para>
/// Current Usage:
/// (1) VB As New statements
/// (2) VB multiple declarations in a single declarator
/// (1) VB Dim statement declaration groups
/// (2) VB Using statement variable declarations
/// </para>
/// <remarks>
/// The initializer of this node is applied to all individual declarations in <see cref="Declarations"/>. There cannot
/// be initializers in both locations except in invalid code scenarios.
///
/// This interface is reserved for implementation by its associated APIs. We reserve the right to
/// change it in the future.
/// </remarks>
public interface IMultiVariableDeclaration : IVariableDeclaration
{
/// <summary>
......
......@@ -8,9 +8,13 @@ namespace Microsoft.CodeAnalysis.Semantics
/// <para>
/// Current Usage:
/// (1) C# variable declarator
/// (2) VB single variable declaration
/// (2) C# catch variable declaration
/// (3) VB single variable declaration
/// (4) VB catch variable declaration
/// </para>
/// <remarks>
/// In VB, the initializer for this node is only ever used for explicit array bounds initializers.
///
/// This interface is reserved for implementation by its associated APIs. We reserve the right to
/// change it in the future.
/// </remarks>
......
......@@ -9,8 +9,11 @@ namespace Microsoft.CodeAnalysis.Semantics
/// </summary>
/// <para>
/// Current Usage:
/// (1) C# Local declaration statement
/// (2) VB Dim statement
/// (1) C# local declaration statement
/// (2) C# fixed statement
/// (3) C# using statement
/// (4) VB Dim statement
/// (5) VB Using statement
/// </para>
/// <remarks>
/// This interface is reserved for implementation by its associated APIs. We reserve the right to
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册