1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

dataTable bitcount improvements

This commit is contained in:
Robin Appelman 2017-11-24 22:02:15 +01:00
commit 686f240c05
4 changed files with 37 additions and 13 deletions

View file

@ -23,6 +23,7 @@ export class SendPropDefinition {
public lowValue: number;
public highValue: number;
public bitCount: number;
public originalBitCount: number | null = null;
public table: SendTable | null;
public numElements: number;
public arrayProperty: SendPropDefinition | null;
@ -63,7 +64,7 @@ export class SendPropDefinition {
data.highValue = this.highValue;
}
if (this.type === SendPropType.DPT_DataTable && this.table) {
data.tableName = this.table.name;
data.excludeDTName = this.table.name;
}
return data;