A warning has been added when passing a str->Object with the same name as the props argument name. This to make the developer aware that this will NOT pass your value as argument. Keyword and value will be added to props.
public class MyClass { public constructor() { } extend public void put(str key, props: args) { pln(#args); } } { str->Object args = {str->Object: "a"->1}; MyClass myclass(); myclass.put("key", args=args);// props argument value has the same name as the props argument name } args={"args"->{"a"->1}}
A context dump has been added to the current crash information. This dump will do a less intrusive stack dump. The first frame will contain a dump of all registers, a +-32 byte dump around IP, and a +-512 byte dump around SP. The consequtive frames will dump the nonvolatile registers.
The regular stack dump can be found below the context dump.