cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
bculver
Level II

Function locals in JSL Debugger

I've never been able to get function locals to appear in the debugger. Here is a simple example. When the debugger is inside the function the tooltip shows the correct value, but neither variable 'a' or 'c' appear below. Is this a bug?

 

bculver_0-1695418976848.png

 

JMP 17.2.0

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Function locals in JSL Debugger

This is a bug. It appears to have stopped working in JMP 15. Thanks for letting us know.

View solution in original post

4 REPLIES 4

Re: Function locals in JSL Debugger

Thanks @bculver . I just pinged [email protected] to let them know. It's possible that there's something that we're overlooking (I, too, tried to get something to appear in the Locals tab under Function but couldn't). In the future, when you run across something you think isn't working properly, I'd encourage you to contact [email protected]. It's possibly something we haven't found yet.

Re: Function locals in JSL Debugger

This is a bug. It appears to have stopped working in JMP 15. Thanks for letting us know.

hogi
Level XIII

Re: Function locals in JSL Debugger

I have to admit - I did not use the JSL Debugger till I set up my own Namespace Inspector.

Just to find out that it's already there ...  The huge benefit compared my own one: it can even list variables from local namespaces of functions ... Ah no, it cant. 


hogi_0-1727507869411.png

JMP 18.1

 

Names default to here(1);
z=1;
func = function({a},{c},
c=a*2;
c;
);
func(1);
hogi
Level XIII

Re: Function locals in JSL Debugger

added it to Tiny Traps in Jmp and JSL 

Recommended Articles