It is currently Mon May 20, 2013 1:34 am

All times are UTC + 1 hour




Post new topic Reply to topic  [ 143 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7, 8 ... 10  Next
Author Message
 Post subject:
PostPosted: Wed May 14, 2008 11:14 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
WOW! Now it works! 8) 8) 8)
Thanks, thanks, thanks!

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 14, 2008 11:15 pm 
Offline
Addict
Addict
User avatar

Joined: Mon May 26, 2003 3:07 pm
Posts: 1146
Location: Nantes
eddy wrote:
[version v3.2b]
FIXED : saving parameters (v3.2) :oops:
It was my fault I broke my previous version because of only one line. :shock:
I can continue to add features now :lol:

btw, what kind of OOP precompiler did you test ?

_________________
Image
XP x86 4.40b3 » ToolbarPlus | SplitterGadgetPlus | Requester Position | CustomTooltip


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 14, 2008 11:22 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
eddy wrote:
btw, what kind of OOP precompiler did you test ?

it's not a precompiler. it's a my class generator based on the macroses

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 17, 2008 9:18 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
Bug:
Code:
ProcedureC Test()
ProcedureReturn 1
EndProcedure

No indentation

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 17, 2008 10:14 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
Another bug:

Code:
Macro MyMacro1(a1, a2)
    Procedure test()
      Protected c
EndMacro

Macro EndMyMacro1
EndProcedure
EndMacro

MyMacro1 and EndMyMacro1 - Custom keywords

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Sun May 18, 2008 1:37 pm 
Offline
Addict
Addict
User avatar

Joined: Mon May 26, 2003 3:07 pm
Posts: 1146
Location: Nantes
sorry the next release will take more time.
Im fighting with scintilla regex for word-spacing. :evil:

_________________
Image
XP x86 4.40b3 » ToolbarPlus | SplitterGadgetPlus | Requester Position | CustomTooltip


Top
 Profile  
 
 Post subject:
PostPosted: Sun May 18, 2008 6:21 pm 
Offline
Addict
Addict
User avatar

Joined: Mon May 26, 2003 3:07 pm
Posts: 1146
Location: Nantes
[version v3.3]
ADDED : format word-spacing
FIXED : ProcedureC indent

Code:
If TEST( 1,2,3 ) = 4
   x =x+ 1/2:START ()        ;// result      
EndIf


:arrow: formatted code
Code:
If TEST(1, 2, 3)=4
   x=x+1/2 : START()        ;// result      
EndIf
[/code]

_________________
Image
XP x86 4.40b3 » ToolbarPlus | SplitterGadgetPlus | Requester Position | CustomTooltip


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 5:52 am 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
eddy wrote:
[version v3.3]
ADDED : format word-spacing

good idea! 10x!

To wishlist:
I want to use '( 1,2 ,3) -> (1, 2, 3)' and I don't want to format 'x = x' to 'x=x' . But all variants -> single option... New tab? :)

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 8:25 am 
Offline
Addict
Addict
User avatar

Joined: Tue Nov 13, 2007 12:42 pm
Posts: 1307
Location: Manchester, UK
This is great! :)

One thing: the CompilerIf, etc doesn't indent.
Also, I prefer x = y over x=y, could this be an option please?


Last edited by Foz on Mon May 19, 2008 8:26 am, edited 2 times in total.

Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 8:25 am 
Offline
Enthusiast
Enthusiast

Joined: Thu May 06, 2004 4:28 pm
Posts: 406
Location: Cologne/GER
SofT MANiAC wrote:
eddy wrote:
[version v3.3]
ADDED : format word-spacing

good idea! 10x!

http://www.purebasic.fr/english/viewtop ... highlight= ;-)


Anyhow, great work eddy. BTW: Do you take use of a lexer like remi meiers one or do you get the token via stringfield()-like commands?

_________________
Check out OOP support for PB here!


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 2:24 pm 
Offline
Addict
Addict
User avatar

Joined: Mon May 26, 2003 3:07 pm
Posts: 1146
Location: Nantes
I used the scintilla regex function

_________________
Image
XP x86 4.40b3 » ToolbarPlus | SplitterGadgetPlus | Requester Position | CustomTooltip


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 5:33 pm 
Offline
Addict
Addict
User avatar

Joined: Thu Feb 09, 2006 11:27 pm
Posts: 1716
Fatal Error seen :(

Press "Enter" at the end of a source code line and then Alt-Backspace !

Michael


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 7:32 pm 
Offline
Enthusiast
Enthusiast
User avatar

Joined: Mon Sep 17, 2007 10:28 am
Posts: 141
Location: P.O.P
Michael Vogel wrote:
Fatal Error seen :(

Press "Enter" at the end of a source code line and then Alt-Backspace !

Michael

I dont confirm this error

_________________
POiNT.OF.PRESENCE group


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 19, 2008 11:10 pm 
Offline
Addict
Addict
User avatar

Joined: Mon May 26, 2003 3:07 pm
Posts: 1146
Location: Nantes
I can't reproduce this bug ???

_________________
Image
XP x86 4.40b3 » ToolbarPlus | SplitterGadgetPlus | Requester Position | CustomTooltip


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 20, 2008 7:44 am 
Offline
Addict
Addict
User avatar

Joined: Thu Feb 09, 2006 11:27 pm
Posts: 1716
eddy wrote:
I can't reproduce this bug ???


I pressed the following keys (no spaces) after creating a new source:

a <enter> a <anter> a <enter> <up> <up> <end> <enter> <alt-backspace>

That's it!

But it has only problems, if you have all options but Format word-spacing on !

Michael


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 143 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7, 8 ... 10  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: falsam, jack and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

 


Powered by phpBB © 2008 phpBB Group
subSilver+ theme by Canver Software, sponsor Sanal Modifiye