diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-25 14:43:50 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-25 14:50:31 -0700 |
| commit | 38afa9e7bc7eacc021f8805f607368a05751e3c3 (patch) | |
| tree | 803b0a8d9a06a7d6f7c4df408437017ae21a883e /src/WixToolset.Core/Bind/DelayedField.cs | |
| parent | 8968578d50858721317d410549a9f9b5c62bf1f7 (diff) | |
| download | wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.tar.gz wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.tar.bz2 wix-38afa9e7bc7eacc021f8805f607368a05751e3c3.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/WixToolset.Core/Bind/DelayedField.cs')
| -rw-r--r-- | src/WixToolset.Core/Bind/DelayedField.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Core/Bind/DelayedField.cs b/src/WixToolset.Core/Bind/DelayedField.cs index 7d0045e6..25641516 100644 --- a/src/WixToolset.Core/Bind/DelayedField.cs +++ b/src/WixToolset.Core/Bind/DelayedField.cs | |||
| @@ -6,26 +6,26 @@ namespace WixToolset.Core.Bind | |||
| 6 | using WixToolset.Extensibility.Data; | 6 | using WixToolset.Extensibility.Data; |
| 7 | 7 | ||
| 8 | /// <summary> | 8 | /// <summary> |
| 9 | /// Structure used to hold a row and field that contain binder variables, which need to be resolved | 9 | /// Holds a symbol and field that contain binder variables, which need to be resolved |
| 10 | /// later, once the files have been resolved. | 10 | /// later, once the files have been resolved. |
| 11 | /// </summary> | 11 | /// </summary> |
| 12 | internal class DelayedField : IDelayedField | 12 | internal class DelayedField : IDelayedField |
| 13 | { | 13 | { |
| 14 | /// <summary> | 14 | /// <summary> |
| 15 | /// Basic constructor for struct | 15 | /// Creates a delayed field. |
| 16 | /// </summary> | 16 | /// </summary> |
| 17 | /// <param name="row">Row for the field.</param> | 17 | /// <param name="symbol">Symbol for the field.</param> |
| 18 | /// <param name="field">Field needing further resolution.</param> | 18 | /// <param name="field">Field needing further resolution.</param> |
| 19 | public DelayedField(IntermediateTuple row, IntermediateField field) | 19 | public DelayedField(IntermediateSymbol symbol, IntermediateField field) |
| 20 | { | 20 | { |
| 21 | this.Row = row; | 21 | this.Symbol = symbol; |
| 22 | this.Field = field; | 22 | this.Field = field; |
| 23 | } | 23 | } |
| 24 | 24 | ||
| 25 | /// <summary> | 25 | /// <summary> |
| 26 | /// The row containing the field. | 26 | /// The row containing the field. |
| 27 | /// </summary> | 27 | /// </summary> |
| 28 | public IntermediateTuple Row { get; } | 28 | public IntermediateSymbol Symbol { get; } |
| 29 | 29 | ||
| 30 | /// <summary> | 30 | /// <summary> |
| 31 | /// The field needing further resolving. | 31 | /// The field needing further resolving. |
