IDL Problem Code 69
with alias unfinished-dot
Want to disable me? Check out the configuration guide to learn more.
Execution Error
This is a fatal error that prevents IDL from compiling or running code
This problem is detected when you use the "dot" notation to access a property or method, but you don't specify the property or method.
Here's an example of this problem:
idl
p = plot(/test)
axis = p.
; ^^ unfinished dot
And how to fix it:
idl
p = plot(/test)
axis = p.axis
; ^^^^^^ OK!