| org.mozilla.javascript.RefCallable
RefCallable | public interface RefCallable extends Callable(Code) | | Object that can allows assignments to the result of function calls.
|
Method Summary | |
public Ref | refCall(Context cx, Scriptable thisObj, Object[] args) Perform function call in reference context.
The args array reference should not be stored in any object that is
can be GC-reachable after this method returns. |
refCall | public Ref refCall(Context cx, Scriptable thisObj, Object[] args)(Code) | | Perform function call in reference context.
The args array reference should not be stored in any object that is
can be GC-reachable after this method returns. If this is necessary,
for example, to implement
Ref methods, then store args.clone(),
not args array itself.
Parameters: cx - the current Context for this thread Parameters: thisObj - the JavaScript this object Parameters: args - the array of arguments |
|
|