If I call AppBase.setProperty with a value of type dictionary, where the dictionary has keys of type symbol, then I get an exception.
According to documentation this should be allowed.
function onStop() {
self.setProperty("Works", {"test" => 1});
self.setProperty("Bug", {:test => 1});
}