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
for (let k of Object.keys(message.artifacts)) {
- for (let k of Object.keys(message.artifacts)) {+ for (let k of globalThis.Object.keys(message.artifacts)) {
writer.tag(2, WireType.LengthDelimited).fork().tag(1, WireType.LengthDelimited).string(k);
writer.tag(2, WireType.LengthDelimited).fork();
I think this might be a different issue than #579. You are generating speed-optimized code, and it looks like it's missing a globalThis. This should be an easy fix, PRs welcome.
I compiled Argo Workflows v1alpha1 messages and there is a message named 'Object', which causes this issue:
in the generated code:
I think it should be:
I don't know this is related with the #579
The text was updated successfully, but these errors were encountered: