// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CodeAnalysis.Shared.Utilities;
namespace Microsoft.CodeAnalysis.ExternalAccess.VSTypeScript.Api
{
internal readonly struct VSTypeScriptDocumentationCommentWrapper
{
private readonly DocumentationComment _underlyingObject;
public VSTypeScriptDocumentationCommentWrapper(DocumentationComment underlyingObject)
=> _underlyingObject = underlyingObject;
public static VSTypeScriptDocumentationCommentWrapper FromXmlFragment(string xml)
=> new(DocumentationComment.FromXmlFragment(xml));
public bool IsDefault
=> _underlyingObject == null;
public string? SummaryTextOpt
=> _underlyingObject?.SummaryText;
public string? GetParameterTextOpt(string parameterName)
=> _underlyingObject?.GetParameterText(parameterName);
}
}
|