"[" L C F(tk::OpenBracket, hi::Structure);
"]" L C F(tk::CloseBracket, hi::Structure);
+"@error" L C F(tk::AtError, hi::Error);
+
@begin Java
"@class" L C F(tk::AtClass, hi::Meta);
@end
bool comma(false);
for (size_t index(0), count(JSPropertyNameArrayGetCount(names)); index != count; ++index) {
- JSStringRef name(JSPropertyNameArrayGetNameAtIndex(names, index));
- JSValueRef value(CYGetProperty(context, object, name));
-
if (comma)
str << ',';
else
comma = true;
+ JSStringRef name(JSPropertyNameArrayGetNameAtIndex(names, index));
CYUTF8String string(CYPoolUTF8String(pool, context, name));
+
if (CYIsKey(string))
str << string.data;
else
CYStringify(str, string.data, string.size);
- str << ':' << CYPoolCCYON(pool, context, value);
- }
+ str << ':';
- str << '}';
+ try {
+ JSValueRef value(CYGetProperty(context, object, name));
+ str << CYPoolCCYON(pool, context, value);
+ } catch (const CYException &error) {
+ str << "@error";
+ }
+ }
JSPropertyNameArrayRelease(names);
+ str << '}';
+
std::string string(str.str());
return pool.strmemdup(string.c_str(), string.size());
}
case hi::Comment: color = CYColor(true, 30); break;
case hi::Constant: color = CYColor(false, 31); break;
case hi::Control: color = CYColor(false, 33); break;
- case hi::Escape: color = CYColor(true, 31); break;
+ case hi::Error: color = CYColor(true, 31); break;
case hi::Identifier: color = CYColor(false, 0); break;
case hi::Meta: color = CYColor(false, 32); break;
case hi::Nothing: color = CYColor(false, 0); break;