Debugger option to step over mapping methods
A common pattern in my code is to use a mapping method to lazily initialise something. E.g.: customer := app.myRoot.getCustomerById(customerId); where myRoot is a property on app with a mapping method. When debugging, trying to step into the getCu...