Commit Graph

56 Commits

Author SHA1 Message Date
Eddie Runia
ae751e58e9 see changelog 1999-06-04 16:28:05 +00:00
Ryszard Glab
baf69575ea See ChangeLog 19990604-02:22 rglab@imid.med.pl 1999-06-04 01:28:58 +00:00
David G. Holm
c006802c61 See ChangeLog entry 19990603-14:00 EDT David G. Holm <dholm@jsd-llc.com> 1999-06-03 19:06:55 +00:00
Eddie Runia
33f62c99ae see changelog 1999-06-03 14:34:16 +00:00
Eddie Runia
0e7f54fac9 see changelog 1999-06-03 10:44:41 +00:00
David G. Holm
23afd6ee0a See ChangeLog entry 19990602-23:30 EDT David G. Holm <dholm@jsd-llc.com> 1999-06-03 04:32:26 +00:00
David G. Holm
8cf924a706 See ChangeLog entry 19990601-12:00 EDT David G. Holm <dholm@jsd-llc.com> 1999-06-01 17:07:15 +00:00
Ron Pinkas
ca31045bcf June 1st. 1999 00:30 Ron Pinkas
Harbour.y -> modified pcode generation to move the push of the counter variable to         the NEXT rather than the FOR
        so loop code may manipulate the counter vaiable.

        TEST/WORKING/TestFor.prg -> added this file
1999-06-01 08:40:05 +00:00
Ron Pinkas
1ea510929f May 31, 1999 Ron Pinkas
Harbour.l added support for "[String]" inside ARRAY INDEX expressions
        Added "Sysntax error :" message for the macro operator (&)
        when followed by a string delimiter.
1999-06-01 03:09:08 +00:00
Eddie Runia
9e8e6d82d5 see changelog 1999-05-31 22:12:30 +00:00
Ron Pinkas
d5113a52ed May 31, 1999 Ron Pinkas
Harbour.l modified {Array} and added {FunArray} and {ExpArray}.
        To fix support of <INDEX> state to be recusive as well as support:
        Function()[nIndex].

        /TESTS/WORKING/ArrIndex.prg added this file.

        /TESTS/BROKEN/FuncArr.prg added this file to show:

       // This is NOT working?
       QOut( aFunc()[1]

       // But this IS working!
       a := aFunc()
       QOut( a[1] )
1999-05-31 19:57:48 +00:00
Ryszard Glab
c0e5bd6e10 See ChangeLog 19990527-00:40 1999-05-26 23:59:30 +00:00
Eddie Runia
d972547fbe See changelog 1999-05-22 13:19:37 +00:00
David G. Holm
f34cf412e7 See ChangeLog entry 19990520-19:35 EST David G. Holm <dholm@jsd-llc.com> 1999-05-21 00:41:27 +00:00
Gonzalo A. Diethelm
935a8d3b4b ChangeLogTag:Thu May 20 16:03:24 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl> 1999-05-20 21:14:39 +00:00
Ron Pinkas
c306542777 May 20, 1999 Ron Pinkas
Harbour.l
   Corrected problem with Array[ OtherArray[n] ]
   Changed {Array} to <INITIAL>{Array} to eliminate recusrion in state INDEX.
1999-05-20 08:48:12 +00:00
Ron Pinkas
4ed2ebdd98 May 19, 1999 Ron Pinkas
corrected problem with "[]" String Delimiters conflict with array names of reserved words (next, while, etc.)

Please note to check i_INDEX_STATE before a "BEGIN 0;" as in the followings:

if( iINDEX_STATE ) BEGIN INDEX; else BEGIN 0;
1999-05-20 07:27:30 +00:00
David G. Holm
c4d3c89a85 See ChangeLog entry 19990519-21:40 EST David G. Holm <dholm@jsd-llc.com> 1999-05-20 02:44:48 +00:00
Ryszard Glab
d3d9e6062a see ChangeLog 19990520-01:40 1999-05-20 00:47:57 +00:00
Eddie Runia
d484e5e22e See change log 1999-05-19 11:55:04 +00:00
David G. Holm
ed21ac4d0f See ChangeLog entry 19990518-23:15 David G. Holm <dholm@jsd-llc.com> 1999-05-19 04:19:53 +00:00
Ryszard Glab
4807d53a0e See ChangeLog 19990519-02:45 1999-05-19 01:45:52 +00:00
David G. Holm
30d485d211 See ChangeLog entry 19990518-18:00 David G. Holm <dholm@jsd-llc.com> 1999-05-18 23:07:30 +00:00
Eddie Runia
c221fbb9f7 HRB production added + runner.
Removed old file in tests/broken.
1999-05-18 22:50:12 +00:00
Ron Pinkas
00774e4ae6 May 18 1999 Ron Pinkas added support for [] String Delimiters.
Please note {String} definition needed to be removed. Seem to only be used in <DEFINE> will probably be resolved by the Pre Processor any way.

Also found and corrected tranctuation of string literals.
In the last 3 weeks someone changed the following to have yytext + 1 and yyleng - 2.
I reverted it back to yytext and yyleng - 1 respectivly.

<STRING1>[^']*'   { BEGIN 0; yylval.string = strdup( yytext );
                    yylval.string[ yyleng - 1 ] = 0; return LITERAL; }
<STRING2>[^\"]*\" { BEGIN 0; yylval.string = strdup( yytext );
                    yylval.string[ yyleng - 1 ] = 0; return LITERAL; }
<STRING3>[^\]]*\] { BEGIN 0; yylval.string = strdup( yytext );
                    yylval.string[ yyleng - 1 ] = 0; return LITERAL; }

Removed from bld32exe.bat refrences to -mh and -F (invalid options).
Also removed refrences to HBTOOLS.LIB (non existed).
1999-05-18 08:57:39 +00:00
Ryszard Glab
d760c43c3a See ChangeLog 19990518-03:05 1999-05-18 02:08:10 +00:00
Ryszard Glab
1c40a309b6 See ChangeLog: 19990518-01:45 <rglab@imid.med.pl> 1999-05-18 00:55:30 +00:00
Ryszard Glab
f31866fc90 See ChangeLog: 19990516-07:04 1999-05-16 06:31:14 +00:00
Eddie Runia
adf88adf4b Return error removed 1999-05-15 15:22:28 +00:00
Eddie Runia
89ccd59b97 Let this work 1999-05-15 00:14:45 +00:00
David G. Holm
3a1254b10f See ChangeLog entry 19990513-22:20 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-14 23:40:34 +00:00
Eddie Runia
aa57230df6 see changelog (again) 1999-05-14 16:28:12 +00:00
Antonio Linares
0eaac65ea4 Proper error generation for missing include files 1999-05-14 11:08:20 +00:00
Antonio Linares
4709c9cc08 _parinfa() support 1999-05-14 10:35:55 +00:00
David G. Holm
3586265340 See ChangeLog entry 19990513-22:20 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-14 03:38:37 +00:00
Antonio Linares
c86f92fd79 Improved errorapi 1999-05-13 11:46:54 +00:00
David G. Holm
0bd4aafd73 See ChangeLog entry for 19990512-01:15:00 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-12 06:16:29 +00:00
David G. Holm
6dec949a97 See ChangeLog entry 19990510-21:45 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-11 02:48:46 +00:00
Gonzalo A. Diethelm
da95a8a38b ChangeLogTag:Mon May 10 19:32:34 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl> 1999-05-11 00:41:55 +00:00
Antonio Linares
b29575642e *** empty log message *** 1999-05-10 12:45:10 +00:00
Ryszard Glab
8cab2ba0bb see ChangeLog: 19990510-01:19 1999-05-10 00:18:28 +00:00
David G. Holm
e3d081e50b See ChangeLog entry 19990507-23:45 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-08 05:01:42 +00:00
Ryszard Glab
b1bb363c6b see ChangeLog 1999.05.08-03:02 1999-05-08 02:01:38 +00:00
David G. Holm
2df124bece See ChangeLog entry 19990507-20:15 EDT David G. Holm <dholm@jsd-llc.com> 1999-05-08 01:14:50 +00:00
Ryszard Glab
1d33e28e73 Again Harbour is really quiet 1999-05-07 06:40:11 +00:00
Ryszard Glab
0fb8020f40 See ChangeLog: 19990507-07:25 <rglab@imid.med.pl> 1999-05-07 06:19:59 +00:00
Gonzalo A. Diethelm
f41f52e008 ChangeLogTag:Thu May 06 18:12:15 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl> 1999-05-06 23:07:37 +00:00
David G. Holm
ccd3a69a61 I replaced the forward declaration of sz_compare4 with the actual
function, because Borland C++ 3.1 complained about a type mismatch
when it encountered the actual function.
1999-05-06 19:15:53 +00:00
Gonzalo A. Diethelm
5c5490e33a ChangeLogTag:Thu May 06 12:34:45 1999 Gonzalo A. Diethelm <Gonzalo.Diethelm@jda.cl> 1999-05-06 17:27:20 +00:00
Ryszard Glab
2327c6b38c * Added list of reserved functions names
* Four letters abbreviations of function names are allowed
* Global static variables are now properly initialised
Made by rglab
1999-05-06 01:56:11 +00:00