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
resolve-aliases.xsl
Currently, if I parse this code:
+alias stdout
I will get this XMIR:
<program> <metas> <meta> <head>alias</head> <tail>stdout</tail> <part>stdout</part> </meta> </metas>
This is misleading, since this short format is just a syntax sugar. Full format is this:
<program> <metas> <meta> <head>alias</head> <tail>stdout org.eolang.stdout</tail> <part>stdout</part> <part>org.eolang.stdout</part> </meta> </metas>
This de-sugaring is done by resolve-aliases.xsl, which is not part of the TrCanonical. I believe, it should be.
TrCanonical
The text was updated successfully, but these errors were encountered:
LtIncorrectAlias
No branches or pull requests
Currently, if I parse this code:
I will get this XMIR:
This is misleading, since this short format is just a syntax sugar. Full format is this:
This de-sugaring is done by
resolve-aliases.xsl
, which is not part of theTrCanonical
. I believe, it should be.The text was updated successfully, but these errors were encountered: