|
// 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 System;
namespace Analyzer.Utilities
{
/// <summary>
/// Defines the word parsing and delimiting options for use with <see cref="WordParser.Parse(string,WordParserOptions)"/>.
/// </summary>
[Flags]
internal enum WordParserOptions
{
/// <summary>
/// Indicates the default options for word parsing.
/// </summary>
None = 0,
/// <summary>
/// Indicates that <see cref="WordParser.Parse(string,WordParserOptions)"/> should ignore the mnemonic indicator characters (&) embedded within words.
/// </summary>
IgnoreMnemonicsIndicators = 1,
/// <summary>
/// Indicates that <see cref="WordParser.Parse(string,WordParserOptions)"/> should split compound words.
/// </summary>
SplitCompoundWords = 2,
}
}
|