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
@yegor256 @Graur is it ok I cannot explicily copy an atrribut using ' like here?
'
[] > test [] > book "qwerty" > title book.title' > copy-title eq. > @ copy-title "qwerty"
Here I get an error
[ERROR] Failed to execute goal org.eolang:eo-maven-plugin:0.27.0:assemble (test-compile) on project eo-threads: Execution test-compile of goal org.eolang:eo-maven-plugin:0.27.0:assemble failed: Failed to parse /home/tardis3/eo-threads/src/test/eo/org/eolang/threads/mutex-test.eo: [42:12] mismatched input ''' expecting {':', ' ', '.', EOL}: " book.title' > copy-title": InputMismatchException -> [Help 1] [ERROR]
I think it is bug, because I can code this:
[] > test [] > book "qwerty" > title book.title > t t' > copy-title eq. > @ copy-title "qwerty"
and it will means the same. So when we need to copy object that is attribute of smth, we need to do the step above.
The text was updated successfully, but these errors were encountered:
@levBagryansky this is a bug in the parser
Sorry, something went wrong.
objectionary#1214 - solved the problem of parsing with copying an obj…
d89454c
…ect with a method
Graur
Successfully merging a pull request may close this issue.
@yegor256 @Graur is it ok I cannot explicily copy an atrribut using
'
like here?Here I get an error
I think it is bug, because I can code this:
and it will means the same. So when we need to copy object that is attribute of smth, we need to do the step above.
The text was updated successfully, but these errors were encountered: