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
Describe the bug
The formfeed character (denoted by \f) is not supported by readTextValueString.
\f
readTextValueString
To Reproduce
Steps to reproduce the behavior:
rascal>import ValueIO; ok rascal>readTextValueString("\"\\n\""); value: "\n" rascal>readTextValueString("\"\\f\""); value: "102" <=== expected: "\f"
The text was updated successfully, but these errors were encountered:
It seems that StandardTextReader.readString does support \f.
StandardTextReader.readString
A related observation: org.rascalmpl.values.parsetrees.SymbolFactory.char2int doesn't not support it (and I assume it should).
org.rascalmpl.values.parsetrees.SymbolFactory.char2int
Sorry, something went wrong.
This bug has been fixed in the latest vallang, (see usethesource/vallang#268 and usethesource/vallang#270), fixed in this commid.
So I assume this was in a version of Rascal that was running an older version of vallang.
However, the org.rascalmpl.values.parsetrees.SymbolFactory.char2int is a omission.
Solved in #2135
No branches or pull requests
Describe the bug
The formfeed character (denoted by
\f
) is not supported byreadTextValueString
.To Reproduce
Steps to reproduce the behavior:
The text was updated successfully, but these errors were encountered: