Subversion Repositories JSX

Compare Revisions

Last modification

Regard whitespace Rev 611 → Rev 612

/trunk/object.js
50,6 → 50,9
*/
de.pointedears.jsx = jsx;
 
(function (global) {
"use strict";
 
/**
* Wrapper for a safer <code>try</code>...<code>catch</code>.
*
147,16 → 150,12
var result;
try
{
result = (t == "function"
? statements()
: eval(statements));
result = (t == "function" ? statements() : eval(statements));
}
catch (e)
{
t = typeof errorHandler;
result = (t == "function"
? errorHandler(e)
: eval(errorHandler));
result = (t == "function" ? errorHandler(e) : eval(errorHandler));
}
finally
{
163,9 → 162,7
if (finalizer != null)
{
t = typeof finalizer;
result = (t == "function"
? finalizer()
: eval(finalizer));
result = (t == "function" ? finalizer() : eval(finalizer));
}
}
 
173,9 → 170,6
};
//}());
 
(function () {
"use strict";
 
/**
* @namespace
*/
1850,7 → 1844,6
&& window.onerror == fHandler);
};
}());
}(this));
 
/**
* Throws an exception, including an execution context hint if provided,
1968,7 → 1961,6
eval("throw exception");
};
 
(function (global) {
jsx.object.extend(jsx, {
/**
* Holds the runtime options for JSX.
3861,8 → 3853,6
{
if ((k in this))
{
if ((k in this))
{
a[n] = this[k];
}
 
3872,7 → 3862,6
 
return a;
}
}
});
}