aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2019-01-09 21:12:36 -0500
committerBob Arnson <bob@firegiant.com>2019-01-09 21:22:42 -0500
commit9d55d0078155316f3faf799fcf98f123c91617b6 (patch)
tree3581da10f45c7f2670c8963774a769d0d96cd20b /src
parent46374eaa642939b65dcc095a9c6caeaa49248cdf (diff)
downloadwix-9d55d0078155316f3faf799fcf98f123c91617b6.tar.gz
wix-9d55d0078155316f3faf799fcf98f123c91617b6.tar.bz2
wix-9d55d0078155316f3faf799fcf98f123c91617b6.zip
Ensure `Error`s generate symbols so they can be referenced.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Core/Compiler.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 576e60d0..02b04e5d 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -5267,8 +5267,7 @@ namespace WixToolset.Core
5267 5267
5268 if (!this.Core.EncounteredError) 5268 if (!this.Core.EncounteredError)
5269 { 5269 {
5270 var row = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.Error); 5270 var row = this.Core.CreateRow(sourceLineNumbers, TupleDefinitionType.Error, new Identifier(AccessModifier.Public, id));
5271 row.Set(0, id);
5272 row.Set(1, Common.GetInnerText(node)); // TODO: * 5271 row.Set(1, Common.GetInnerText(node)); // TODO: *
5273 } 5272 }
5274 } 5273 }