| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. |
| 2 | |
| 3 | namespace WixToolset.Core.Preprocess |
| 4 | { |
| 5 | /// <summary> |
| 6 | /// Current state of the if context. |
| 7 | /// </summary> |
| 8 | internal enum IfState |
| 9 | { |
| 10 | /// <summary>Context currently in unknown state.</summary> |
| 11 | Unknown, |
| 12 | |
| 13 | /// <summary>Context currently inside if statement.</summary> |
| 14 | If, |
| 15 | |
| 16 | /// <summary>Context currently inside elseif statement..</summary> |
| 17 | ElseIf, |
| 18 | |
| 19 | /// <summary>Conext currently inside else statement.</summary> |
| 20 | Else, |
| 21 | } |
| 22 | } |