You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Got the latest Studio (v12.0.6) and generated my service files and encountered a massive issue. We rely on the constructor of many of our classes to build the classes. But since v12.0.6, the constructor does not have the mappings. Is that an issue or have you changed the way it works?
Previous
constructor(data?: className) {
super(data);
}
// Super
constructor(data?: ICommand) {
if (data) {
for (var property in data) {
if (data.hasOwnProperty(property))
(<any>this)[property] = (<any>data)[property];
}
}
}
Now
constructor(data?: className) {
super(data);
}
// Super
constructor(data?: ICommand) {}
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
Got the latest Studio (
v12.0.6
) and generated my service files and encountered a massive issue. We rely on the constructor of many of our classes to build the classes. But sincev12.0.6
, the constructor does not have the mappings. Is that an issue or have you changed the way it works?Previous
Now
Thanks
The text was updated successfully, but these errors were encountered: