Fixes and enhancements to get class references, constructors and scripts

working from .xml input.


git-svn-id: svn://10.0.0.236/trunk@85189 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
2001-01-19 23:56:37 +00:00
parent 322511835d
commit e56b80d07d
18 changed files with 332 additions and 210 deletions

View File

@@ -41,8 +41,8 @@ namespace JavaScript {
void
JSException::toString8 (string8 &rval)
{
rval = *exception_types[mType] + " Exception: " +
*exception_msgs[mID];
rval = string8(exception_types[mType]) + " Exception: " +
string8(exception_msgs[mID]);
if (mSource.size() != 0)
rval += " in " + mSource;
}