Subj : Re: [Rhino] Adding per-property discretionary access control? To : James Hugard From : Igor Bukanov Date : Mon Apr 07 2003 12:00 am James Hugard wrote: .... > Would any of y'all know whether all property access to native (script) > objects goes through Scriptable.get (etc.), even when the script object has > been compiled/optimized? The access is always done via calling via Scriptable.get and its implementation in various classes. Script optimization level has no effect on it. With interpreter mode (optimiation level -1) most (but not all) access with intereis done via utility methods ScriptableObject.getProperty etc. Regards, Igor .