bigrixx committed revision 7807 to the Open Object Rexx SVN repository, changing 2 files.
2012-05-28 06:38:25 PDT in Open Object Rexx
bigrixx committed revision 7806 to the Open Object Rexx SVN repository, changing 2 files.
2012-05-28 06:34:28 PDT in Open Object Rexx
Committed revision 7805. Note, based on the call patterns I was seeing in the debugger, your use of ReleaseLocalReference is completely unneeded. You really only need to do that when you wish to allow an object to become eligible for garbage collection. This will not happen in the case of objects taken from the call list, so all you are doing is adding additional overhead.
2012-05-28 06:04:03 PDT in Open Object Rexx
bigrixx committed revision 7805 to the Open Object Rexx SVN repository, changing 3 files.
2012-05-28 06:00:41 PDT in Open Object Rexx
The contents of this zip file are not a functional example that can be used to debug this problem. The following error occurs: 2932 *-* ::requires rgf_util2.rex Error 43 running C:\ORexxDev\bugs\3529966\testReleaseLocalReference\ooRexxTry.rx j line 2932: Routine not found Error 43.901: Could not find routine "RGF_UTIL2.REX" for ::REQUIRES.
2012-05-27 14:41:14 PDT in Open Object Rexx
If this is your program, then this in invalid: 1 #! /usr/bin/rexx -- testing raise propagate return 2 3 signal on novalue 4 say testVar 5 return 0 6 7 o = .context~condition 8 novalue: raise propagate return (o) 9 --novalue: raise propagate return (.context~condition) Because the variable O is never assigned because the signal on novalue causes a jump...
2012-05-02 16:41:52 PDT in Open Object Rexx
Bracket characters are not a valid Rexx program character outside of a literal string, so that is the appropriate syntax error. It's not clear to me what your intentions were on the original statement, but that is NOT a syntactically correct Rexx statement. Changing that line to WMIObject = .OLEObject~GetObject("Winmgmts:impersonationLevel=impersonate}") Will give you the same...
2012-04-12 10:52:15 PDT in Open Object Rexx
What release are you using? I'm unable to reproduce this problem on the latest version.
2012-04-10 06:33:30 PDT in Open Object Rexx
rexxc does not generate a .exe file. rexxc just generated a pre-parsed image of the rexx program that does not include the source. The resulting generated image still needs to be run by the rexx interpreter.
2012-04-05 03:39:35 PDT in Open Object Rexx
bigrixx committed revision 7689 to the Open Object Rexx SVN repository, changing 1 files.
2012-03-18 17:47:28 PDT in Open Object Rexx