Updated doc comments.

上级 7169da09
...@@ -9,9 +9,16 @@ namespace Microsoft.CodeAnalysis.Semantics ...@@ -9,9 +9,16 @@ namespace Microsoft.CodeAnalysis.Semantics
/// </summary> /// </summary>
/// <para> /// <para>
/// Current Usage: /// Current Usage:
/// (1) VB As New statements /// (1) VB Dim statement declaration groups
/// (2) VB multiple declarations in a single declarator /// (2) VB Using statement variable declarations
/// </para> /// </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 public interface IMultiVariableDeclaration : IVariableDeclaration
{ {
/// <summary> /// <summary>
......
...@@ -8,9 +8,13 @@ namespace Microsoft.CodeAnalysis.Semantics ...@@ -8,9 +8,13 @@ namespace Microsoft.CodeAnalysis.Semantics
/// <para> /// <para>
/// Current Usage: /// Current Usage:
/// (1) C# variable declarator /// (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> /// </para>
/// <remarks> /// <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 /// This interface is reserved for implementation by its associated APIs. We reserve the right to
/// change it in the future. /// change it in the future.
/// </remarks> /// </remarks>
......
...@@ -9,8 +9,11 @@ namespace Microsoft.CodeAnalysis.Semantics ...@@ -9,8 +9,11 @@ namespace Microsoft.CodeAnalysis.Semantics
/// </summary> /// </summary>
/// <para> /// <para>
/// Current Usage: /// Current Usage:
/// (1) C# Local declaration statement /// (1) C# local declaration statement
/// (2) VB Dim statement /// (2) C# fixed statement
/// (3) C# using statement
/// (4) VB Dim statement
/// (5) VB Using statement
/// </para> /// </para>
/// <remarks> /// <remarks>
/// This interface is reserved for implementation by its associated APIs. We reserve the right to /// 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.
先完成此消息的编辑!
想要评论请 注册