Skip to content
New issue

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

[BUG] parameter passing fail if out, forward, or move used as variable name #235

Closed
filipsajdak opened this issue Jan 19, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@filipsajdak
Copy link
Contributor

In the current implementation of cppfront the following code:

main: () -> int = {
    out := 1;
    forward := 2;
    move := 3;
    inout := 4;
    copy := 5;
    in := 6;

    std::cout << out << std::endl;
    std::cout << forward << std::endl;
    std::cout << move << std::endl;
    std::cout << inout << std::endl;
    std::cout << copy << std::endl;
    std::cout << in << std::endl;
} 

Will compile and print:

1
2
3
4
5
6

When you try to pass these variables to the function:

main: () -> int = {
    out := 1;
    forward := 2;
    move := 3;
    inout := 4;
    copy := 5;
    in := 6;

    fun(out);
    fun(forward);
    fun(move);
    fun(inout);
    fun(copy);
    fun(in);
}

fun: (i : int) = {
    std::cout << i << std::endl;
}

it ends with a compilation error:

../tests/variable_names_passing_style.cpp2:9:5: error: no matching function for call to 'fun'
    fun(   );
    ^~~
../tests/variable_names_passing_style.cpp2:17:6: note: candidate function not viable: requires single argument 'i', but no arguments were provided
auto fun(cpp2::in<int> i) -> void;
     ^
../tests/variable_names_passing_style.cpp2:10:5: error: no matching function for call to 'fun'
    fun(       );
    ^~~
../tests/variable_names_passing_style.cpp2:17:6: note: candidate function not viable: requires single argument 'i', but no arguments were provided
auto fun(cpp2::in<int> i) -> void;
     ^
../tests/variable_names_passing_style.cpp2:11:5: error: no matching function for call to 'fun'
    fun(    );
    ^~~
../tests/variable_names_passing_style.cpp2:17:6: note: candidate function not viable: requires single argument 'i', but no arguments were provided
auto fun(cpp2::in<int> i) -> void;
     ^
3 errors generated.

The following cases failed:

    fun(out);
    fun(forward);
    fun(move);

Expectation

I would expect an error when using these keywords as variable names - I found this by accident trying to understand why I cannot pass variable out to the function:

out : *std::ostream = std::cout&;
// ...
print(out*, x, 0);

When additional keywords are added to the function argument list more variables will cause this issue (see: #230 (comment))

@filipsajdak filipsajdak added the bug Something isn't working label Jan 19, 2023
@hsutter
Copy link
Owner

hsutter commented Jan 30, 2023

Thanks! Yes, your examples should all work and now after the fix in the next commit. The production parameter-direction? expression does allow examples like fun(out) to not mean out with its special meaning.

Azmah-Bad pushed a commit to Azmah-Bad/cppfront that referenced this issue Feb 24, 2023
Azmah-Bad pushed a commit to Azmah-Bad/cppfront that referenced this issue Feb 24, 2023
zaucy pushed a commit to zaucy/cppfront that referenced this issue Dec 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants