Bug 1071177 - Add support for symbols as a value type. r=billm

This commit is contained in:
Tom Schuster
2014-10-07 11:29:03 +02:00
parent c168c5e4b8
commit 23c4b2f121
3 changed files with 25 additions and 0 deletions

View File

@@ -171,6 +171,10 @@ class Logging
formatObject(incoming, false, ObjectId::deserialize(ovar.get_RemoteObject().serializedId()), out);
break;
}
case JSVariant::TSymbolVariant: {
out = "<Symbol>";
break;
}
case JSVariant::Tdouble: {
out = nsPrintfCString("%.0f", value.get_double());
break;