diff options
Diffstat (limited to 'src/test/Example.Extension/ExampleTuple.cs')
| -rw-r--r-- | src/test/Example.Extension/ExampleTuple.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/test/Example.Extension/ExampleTuple.cs b/src/test/Example.Extension/ExampleTuple.cs index f2bcb925..314087e9 100644 --- a/src/test/Example.Extension/ExampleTuple.cs +++ b/src/test/Example.Extension/ExampleTuple.cs | |||
| @@ -4,27 +4,27 @@ namespace Example.Extension | |||
| 4 | { | 4 | { |
| 5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
| 6 | 6 | ||
| 7 | public enum ExampleTupleFields | 7 | public enum ExampleSymbolFields |
| 8 | { | 8 | { |
| 9 | Value, | 9 | Value, |
| 10 | } | 10 | } |
| 11 | 11 | ||
| 12 | public class ExampleTuple : IntermediateTuple | 12 | public class ExampleSymbol : IntermediateSymbol |
| 13 | { | 13 | { |
| 14 | public ExampleTuple() : base(ExampleTupleDefinitions.Example, null, null) | 14 | public ExampleSymbol() : base(ExampleSymbolDefinitions.Example, null, null) |
| 15 | { | 15 | { |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | public ExampleTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ExampleTupleDefinitions.Example, sourceLineNumber, id) | 18 | public ExampleSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(ExampleSymbolDefinitions.Example, sourceLineNumber, id) |
| 19 | { | 19 | { |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | public IntermediateField this[ExampleTupleFields index] => this.Fields[(int)index]; | 22 | public IntermediateField this[ExampleSymbolFields index] => this.Fields[(int)index]; |
| 23 | 23 | ||
| 24 | public string Value | 24 | public string Value |
| 25 | { | 25 | { |
| 26 | get => this.Fields[(int)ExampleTupleFields.Value]?.AsString(); | 26 | get => this.Fields[(int)ExampleSymbolFields.Value]?.AsString(); |
| 27 | set => this.Set((int)ExampleTupleFields.Value, value); | 27 | set => this.Set((int)ExampleSymbolFields.Value, value); |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | } | 30 | } |
