In command-runner full-command mode, this:
#! REMOTE::SSH
foo="some bar"; echo "${foo}foobar"
fails with:
Description = No such variable 'foo' in 'foo="some bar"; echo "${foo}foobar"',
This sort of thing becomes essential if you want to do something like split a string. E.g.,
split_me="foo,bar"; IFS=',' read -ra arr <<< "${split_me}"; echo "${arr[0]}"
should echo “foo”
Let me know if you want more info to reproduce this.