We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
:
see test/mo-idl/ok/named.did.ok
service : { /// anon anon: (nat, nat) -> (nat); // no space before `:` /// escape candid keywords escape: ("int": int, "bool": bool, "service": service { // <- weird break }) -> ("int": int, "bool": bool, "service": service { // <- weird break }); /// function arg/ret f: (named: func (x: nat, y: nat) -> (r: nat)) -> (unamed: // <- weird break func (nat, nat) -> (nat)); /// actor arg/ret g: (A: service { anon: (nat, nat) -> (nat); named: (x: nat, y: nat) -> (r: nat); }) -> (service { anon: (x: nat, y: nat) -> (r: nat); named: (nat, nat) -> (nat); }); /// named named: (x: nat, y: nat) -> (r: nat); /// record "record": (record { x: nat; y: nat; }) -> (record {r: nat;}); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
:
see test/mo-idl/ok/named.did.ok
The text was updated successfully, but these errors were encountered: