Oxygen Basic
Programming => Bugs & Feature Requests => Topic started by: Brian Alvarez on December 10, 2018, 08:11:44 PM
-
I Noticed that when you pass a literal string as a parameter, you cannot assign text to it, but
when you pass the reference to the string you can.
At least on 32 bit mode, because in 64 bit mode it crashes.
My small request is, can we alter the text of "direct string" parameters in 64 bit mode just like
in 32 bit mode? I dont care to alter the text of these parameters:
string param
I need it only for these:
string *param
Otherwise i have to make an ugly hack.
In other words, i think what i am really asking is either:
- Allow string ("") to be passed as parameter....
- Allow non byref parameters to be modified in the target modules.
- A way to pass string parameters bycopy.
If possible. Thanks!
-
Brian,
I can't reproduce your crash problem, but I will implement bycopy (same usage as in PowerBasic). Should be ready later today.
When passing a string literal byref, the compiler automatically makes a copy so that overwriting the original string constant is made impossible.
'11:37 11/12/2018
'check literals passed byref
$filename "c.exe"
uses rtl64
string f(string *s){s+=s+s : return s}
#show print f "ok"
-
Great news charles! Looking forward to give it a try!
This thing is working awesomely!, so, rest assured all your hard work is being put to good use!! :D
Added:
If possible, make it work also for other string parameters besides literal strings. ;D
By the way, notice that, your example crashes on 64 bit mode and works fine in 32 bit mode,
just as i said in my first post. Too bad you cant reproduce it... is there a way i can provide you
info to make it work?
-
Updated with OXSC181211.
Please make sure you have the right RTLs in the inc folder.
-
Cool, i am on it. :)
-
Where can i check the OXSC181211 id charles?
Disregard, i got it:
https://github.com/Charles-Pegge/OxygenBasic
-
Working great Charles! the new bycopy switch works great so far also iun 64 bit mode!
And this update catched one small error that i didnt know i was making... :)