Add address comments for methods and vtables

This commit is contained in:
Bigjango13 2024-01-14 15:26:30 -05:00
parent da98988090
commit 37eaa5175d

View File

@ -31,7 +31,7 @@ export class Method {
} }
// Generate Variable Definition // Generate Variable Definition
generateDefinition(showAddress: bool, nameSuffix?: string) { generateDefinition(nameSuffix?: string) {
return `${this.getType()} ${this.getName()}${nameSuffix !== undefined ? nameSuffix : ''}; // ${toHex(this.address)}\n`; return `${this.getType()} ${this.getName()}${nameSuffix !== undefined ? nameSuffix : ''}; // ${toHex(this.address)}\n`;
} }
} }