Displaying 1 result from an estimated 1 matches for "realtimestate".
2010 Oct 04
2
Recursion error after upgrade to R_2.11.1 [Sec=Unclassified]
Hi all,
After an upgrade from R_2.10.1 to R_2.11.1 I am now getting the following error:
Error: evaluation nested too deeply: infinite recursion / options(expressions=)?
This occurs in the initialize method of S4 classes where I was initialising attributes eg:
.Object[['realtimeState']] <- list()
I can avoid this new error by altering the code to do:
.Object$realtimeState <- list() OR .Object@.xData$realtimeState <- list()
My classes all extend .environment and store all changeable data as per above (in environment .xData slot) rather than in normal class slots b...