View previous topic :: View next topic |
Author |
Message |
Uwar
Joined: 10 Feb 2008 Posts: 11 Location: Poland
|
Posted: Sun May 04, 2008 10:35 am Post subject: Interesting behaviour of parser. |
|
|
Little strange behaviour of parser.
_____________________________________________________________
When we write:
Code: | "FL: ""no tilde"~__FILE__~" LN: "~ToStr(__LINE__) |
Compiled succesful and parsed succesful.
_____________________________________________________________
But when we write:
Code: | "FL: "__FILE__~" LN: "~ToStr(__LINE__) |
Compiled succesful but parsed failure. |
|
Back to top |
|
|
Kuan Hsu
Joined: 15 Apr 2006 Posts: 143 Location: Taiwan
|
Posted: Mon May 05, 2008 7:49 pm Post subject: Re: Interesting behaviour of parser. |
|
|
It's because no Special Tokens Lexical in parser, I'll fix it, for now, please add ~ sign...
"FL: "__FILE__~" LN: "~ToStr(__LINE__)
to
"FL: "~__FILE__~" LN: "~ToStr(__LINE__) |
|
Back to top |
|
|
Uwar
Joined: 10 Feb 2008 Posts: 11 Location: Poland
|
Posted: Tue May 06, 2008 3:27 pm Post subject: |
|
|
Of course I know . I just only inform you about my discovery because Poseidon is cool. |
|
Back to top |
|
|
|