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
Current behaviour serialises them straight into the JS file. Another option, which should be opt-in, could be to create a separate JS class for every found version of the generic class.
E.g. new Generic<string>() and new Generic<int>() could create Generic_string.js and Generic_int.js
The text was updated successfully, but these errors were encountered:
Current behaviour serialises them straight into the JS file. Another option, which should be opt-in, could be to create a separate JS class for every found version of the generic class.
E.g.
new Generic<string>()
andnew Generic<int>()
could createGeneric_string.js
andGeneric_int.js
The text was updated successfully, but these errors were encountered: