|
Post by jacecen on Feb 16, 2021 16:34:43 GMT
Hi
After updating one of my projects from RhoMobile 5.5 to version 7.3.2, the debugger has stopped stopping at breakpoints both debugging in the device and in RhoSimulator.
Best regards Javier
|
|
|
Post by Vladimir Musulainen on Feb 16, 2021 16:55:08 GMT
|
|
|
Post by skaplon on Oct 27, 2021 11:20:40 GMT
Breakpoints and step-by debugging is working in the new plugin after creating a new configuration in VS Code, but there seems to be no way to get variable values by hints in the code or in the debug console, it just prints this: @pedido -> evaluate(context: 'repl', '@pedido') @pedido.vars -> evaluate(context: 'repl', '@pedido.vars') @pedido.vars.to_json -> evaluate(context: 'repl', '@pedido.vars.to_json') puts @pedido.vars.to_json -> evaluate(context: 'repl', 'puts @pedido.vars.to_json')
|
|
|
Post by Vladimir Musulainen on Oct 27, 2021 11:48:23 GMT
>but there seems to be no way to get variable values by hints in the code or in the debug console, it just prints this: Do you see the variables al Variables section when the app is stopped on the breakpoint? Yes, you right, eval is not supported yet.
|
|
|
Post by skaplon on Dec 2, 2021 19:01:50 GMT
>but there seems to be no way to get variable values by hints in the code or in the debug console, it just prints this: Do you see the variables al Variables section when the app is stopped on the breakpoint? Yes, but the Instance variables seems to not show all variables, like stepping a new-ish variable set this way doesn't show in the windows: @var = value
|
|