Home | History | Annotate | Download | only in src

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.
405 * Allocate a transient handle id for this object. Transient handles are
423 * @param {boolean} transient indicate whether this object is transient with a
424 * transient handle
428 function ValueMirror(type, value, transient) {
431 if (!transient) {
566 * @param {boolean} transient indicate whether this object is transient with a
567 * transient handle
571 function ObjectMirror(value, type, transient) {
572 %_CallFunction(this, type || OBJECT_TYPE, value, transient, ValueMirror);
1740 // For local and closure scopes create a transient mirror as these objects are
1743 var transient = this.scopeType() == ScopeType.Local ||
1745 return MakeMirror(this.details_.object(), transient);