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
Where:
boxed a (text); boxed b (a); boxed c (b);
The following Python code depending on the generated Python code doesn’t work as we expect:
assert C(B(A('test')).__nirum_serialize__()) == 'test' assert B(A('test')).__nirum_serialize__() == 'test'
Although the following code works as we expect:
assert A('test').__nirum_serialize__() == 'test'
The text was updated successfully, but these errors were encountered:
Validate/Serialize boxed type properly if aliased many time #4
7a409d4
Merge pull request #5 from admire93/bugfix/issue-4-boxed-type
60cad1c
Validate/Serialize boxed type properly if boxed more than once #4
Merge pull request nirum-lang#4 from admire93/http-resource-cors
0fc600d
Support CORS for @http-resource
kanghyojun
No branches or pull requests
Where:
The following Python code depending on the generated Python code doesn’t work as we expect:
Although the following code works as we expect:
The text was updated successfully, but these errors were encountered: