1 function Sys$_Application$registerDisposableObject(object) {
4 var e = Function._validateParams(arguments, [
5 {name: "object", type: Sys.IDisposable}
6 ]);
7 if (e) throw e;
8 if (!this._disposing) {
9 this._disposableObjects[this._disposableObjects.length] = object;
10 }
11 }