|
// 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.
#nullable disable
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax
{
internal abstract partial class StructuredTriviaSyntax : CSharpSyntaxNode
{
internal StructuredTriviaSyntax(SyntaxKind kind, DiagnosticInfo[] diagnostics = null, SyntaxAnnotation[] annotations = null)
: base(kind, diagnostics, annotations)
{
this.Initialize();
}
internal StructuredTriviaSyntax(ObjectReader reader)
: base(reader)
{
this.Initialize();
}
private void Initialize()
{
this.flags |= NodeFlags.ContainsStructuredTrivia;
if (this.Kind == SyntaxKind.SkippedTokensTrivia)
{
this.flags |= NodeFlags.ContainsSkippedText;
}
}
}
}
|