Subversion Repositories JSX

Compare Revisions

Last modification

Regard whitespace Rev 610 → Rev 611

/trunk/object.js
1,4 → 1,3
"use strict";
/**
* @fileOverview <title>Basic Object Library</title>
* @file $Id$
174,6 → 173,9
};
//}());
 
(function () {
"use strict";
 
/**
* @namespace
*/
1848,6 → 1850,7
&& window.onerror == fHandler);
};
}());
}(this));
 
/**
* Throws an exception, including an execution context hint if provided,
1965,6 → 1968,7
eval("throw exception");
};
 
(function (global) {
jsx.object.extend(jsx, {
/**
* Holds the runtime options for JSX.
2453,7 → 2457,7
* @memberOf jsx
* @type Global
*/
global: this,
global: global,
 
MSG_INFO: "info",
MSG_WARN: "warn",
3857,6 → 3861,8
{
if ((k in this))
{
if ((k in this))
{
a[n] = this[k];
}
 
3866,6 → 3872,7
 
return a;
}
}
});
}
 
3933,7 → 3940,7
});
 
/**
* Property-related exception
* Property-related exception§
*
* @constructor
* @param {string} sMsg
3949,3 → 3956,4
*/
name: "jsx.object.PropertyError"
});
}(this));