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
This doesn´t compile (Malformed statement):
Malformed statement
data: a is number map map b is number map c is number procedure: display a:b:c:b:0
If we replace the c with 0 it works.
c
0
Maybe the problem is here:
ldpl/src/ldpl.cpp
Line 2081 in eb14e2f
I also found that this passes the LDPL to C++ stage (but throws an error compiling the C++ code because of the VAR_A[VAR_A] expression):
VAR_A[VAR_A]
data: a is number map procedure: display a:a
The text was updated successfully, but these errors were encountered:
@dgarroDC I see this was marked as fixed in a commit. Shall I close this ticket?
Sorry, something went wrong.
0567ea9
Wonderful! Thank you very very very very much for fixing this! <3
No branches or pull requests
This doesn´t compile (
Malformed statement
):If we replace the
c
with0
it works.Maybe the problem is here:
ldpl/src/ldpl.cpp
Line 2081 in eb14e2f
Should we check if the token is any scalar expression (instead of just a literal)?
I also found that this passes the LDPL to C++ stage (but throws an error compiling the C++ code because of the
VAR_A[VAR_A]
expression):The text was updated successfully, but these errors were encountered: