diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/WixFragmentTuple.cs | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs index cda7534d..9c31b79c 100644 --- a/src/WixToolset.Data/Tuples/WixFragmentTuple.cs +++ b/src/WixToolset.Data/Tuples/WixFragmentTuple.cs | |||
@@ -2,35 +2,35 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
4 | { | 4 | { |
5 | using WixToolset.Data.Tuples; | 5 | using WixToolset.Data.Symbols; |
6 | 6 | ||
7 | public static partial class TupleDefinitions | 7 | public static partial class SymbolDefinitions |
8 | { | 8 | { |
9 | public static readonly IntermediateTupleDefinition WixFragment = new IntermediateTupleDefinition( | 9 | public static readonly IntermediateSymbolDefinition WixFragment = new IntermediateSymbolDefinition( |
10 | TupleDefinitionType.WixFragment, | 10 | SymbolDefinitionType.WixFragment, |
11 | new IntermediateFieldDefinition[] | 11 | new IntermediateFieldDefinition[] |
12 | { | 12 | { |
13 | }, | 13 | }, |
14 | typeof(WixFragmentTuple)); | 14 | typeof(WixFragmentSymbol)); |
15 | } | 15 | } |
16 | } | 16 | } |
17 | 17 | ||
18 | namespace WixToolset.Data.Tuples | 18 | namespace WixToolset.Data.Symbols |
19 | { | 19 | { |
20 | public enum WixFragmentTupleFields | 20 | public enum WixFragmentSymbolFields |
21 | { | 21 | { |
22 | } | 22 | } |
23 | 23 | ||
24 | public class WixFragmentTuple : IntermediateTuple | 24 | public class WixFragmentSymbol : IntermediateSymbol |
25 | { | 25 | { |
26 | public WixFragmentTuple() : base(TupleDefinitions.WixFragment, null, null) | 26 | public WixFragmentSymbol() : base(SymbolDefinitions.WixFragment, null, null) |
27 | { | 27 | { |
28 | } | 28 | } |
29 | 29 | ||
30 | public WixFragmentTuple(SourceLineNumber sourceLineNumber, Identifier id = null) : base(TupleDefinitions.WixFragment, sourceLineNumber, id) | 30 | public WixFragmentSymbol(SourceLineNumber sourceLineNumber, Identifier id = null) : base(SymbolDefinitions.WixFragment, sourceLineNumber, id) |
31 | { | 31 | { |
32 | } | 32 | } |
33 | 33 | ||
34 | public IntermediateField this[WixFragmentTupleFields index] => this.Fields[(int)index]; | 34 | public IntermediateField this[WixFragmentSymbolFields index] => this.Fields[(int)index]; |
35 | } | 35 | } |
36 | } \ No newline at end of file | 36 | } \ No newline at end of file |