Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [photran] Photran beta2 issues

Well I just upgraded to the 3.0.0 release and yes definitely the parser is much faster.  And yes my second bug was still present so I did a simple work around
      data radii/(12*(fcasts+1))*0/
is now 
      size = 12*(fcasts+1)
      data radii/size*0/
this solved the rparen error, now all the outline says is:
1774631184
??????????

Thanks
Nick

On Jan 31, 2006, at 5:21 PM, Jeffrey Overbey wrote:

Yes, the new parser will take care of the first issue.  Version 3.0.0 (with this new parser) will be released later today.

As for the second issue, we have added error recovery to the parser, so within the next few months, hopefully the second issue will disappear as well.  Nonetheless, if there are legal FORMAT or DATA statements it cannot parse, it is important that we know about these, because the same parser is used in the (not-yet-released) refactoring engine.  In that case, "glossing over" parse errors is potentially much more problematic.  So please submit such issues to this list or to Bugzilla.

Thanks
Jeff Overbey
Photran Team

Nicholas Carrasco wrote:
Issue 1:
I'm working on a Mac running 10.4.4 (PowerPC G5) and every time I save a Fortran File, eclipse swallows all the available CPU performance, basically rendering the machine practically useless until it finishes.  Depending on the size of the file, this can be a while.
Issue 2:
I keep getting an error like:
Error: Unexpected T_RPAREN ")"
which points to the line:
      data radii/(12*(fcasts+1))*0/
                         ^
What is the deal, if I don't see what the issue is, it compiles and works great, I've seen this syntax in many programs.  Well in main issues is that this prevents the Outline View from working.
------------------------------------------------------------------------
_______________________________________________
photran mailing list

_______________________________________________
photran mailing list


Back to the top