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
So say I had something like this, with arbitrary languages supported by SMACK:
classFoo:
@propertybar: float
^Note the type of bar
classFoo {
public:int bar;
};
publicclassFoo {
publicintbar;
}
publicclassFoo{publicintbar{get;set;}};
Now I want to compare all the target languages, and point out which one has the 'wrong' structure. I'm confident SMACK can do this.
Next, I want to explicitly specify the right structure (e.g., bar should be float) and change all source files to match this new structure (rerunning SMACK as a sanity check that the structures are now equal).
AFAIK, SMACK doesn't support this workflow. Could you advise? (also advise if not SMACK then if you know of a project that facilitates this workflow)
Thanks
The text was updated successfully, but these errors were encountered:
So say I had something like this, with arbitrary languages supported by SMACK:
^Note the type of
bar
Now I want to compare all the target languages, and point out which one has the 'wrong' structure. I'm confident SMACK can do this.
Next, I want to explicitly specify the right structure (e.g.,
bar
should befloat
) and change all source files to match this new structure (rerunning SMACK as a sanity check that the structures are now equal).AFAIK, SMACK doesn't support this workflow. Could you advise? (also advise if not SMACK then if you know of a project that facilitates this workflow)
Thanks
The text was updated successfully, but these errors were encountered: