10.2.1.2.3 SetMutableBinding

2010-05-06

Undefined SetMutableBinding(N:String, V:mixed, S:Boolean)

Set or update the value of a property of the binding object. Uses the [[Put]] method.

Code: (Meta Ecma)
function SetMutableBinding(N, V, S){
var envRec = this;
var bindings = envRec.bindingObject;
bindings.[[Put]](N, V, S);
}