You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The input 1(2+3) should not be parsed as a function call.
$ cargo run -- -d
Tokay 0.6.4
>>> 1(2+3)
main [start 1:1, end 1:7]
call [start 1:1, end 1:7]
value_integer [start 1:1, end 1:2] => 1
callarg [start 1:3, end 1:6]
op_binary_add [start 1:3, end 1:6]
value_integer [start 1:3, end 1:4] => 2
value_integer [start 1:5, end 1:6] => 3
thread 'main' panicked at 'not yet implemented: The value Int(1) is generally not callable!', src/compiler/iml/imlop.rs:135:13
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The text was updated successfully, but these errors were encountered:
phorward
changed the title
bug: 1(2+3): The value Int(1) is generally not callable!1(2+3): The value Int(1) is generally not callable! - hint for user?
Aug 15, 2023
The input
1(2+3)
should not be parsed as a function call.The text was updated successfully, but these errors were encountered: