Zugg MASTER
Joined: 25 Sep 2000 Posts: 23379 Location: Colorado, USA
|
Posted: Mon Jul 28, 2008 4:51 pm |
That is true. It's unfortunately just how the parser and syntax highlighting works. In the parser, the "val" part of your expression is just a normal string. In fact, if you look at the Compiled Code tab for this syntax in an alias, you will see that the generated code is:
VARREF dbvar
PUSHSTR val
DOT
So when the syntax highlighter sees this code, it colors "@dbvar" as a variable reference, but "val" as just normal text. |
|