Lines Matching refs:transient
49 * @param {boolean} transient indicate whether this object is transient and
50 * should not be added to the mirror cache. The default is not transient.
56 // Look for non transient mirrors in the mirror cache.
407 * Allocate a transient handle id for this object. Transient handles are
425 * @param {boolean} transient indicate whether this object is transient with a
426 * transient handle
430 function ValueMirror(type, value, transient) {
433 if (!transient) {
568 * @param {boolean} transient indicate whether this object is transient with a
569 * transient handle
573 function ObjectMirror(value, type, transient) {
574 %_CallFunction(this, type || OBJECT_TYPE, value, transient, ValueMirror);
1791 // For local and closure scopes create a transient mirror as these objects are
1794 var transient = this.scopeType() == ScopeType.Local ||
1796 return MakeMirror(this.details_.object(), transient);