View structures by pointer

Post bugs related to the IDE here
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

View structures by pointer

Post by User_Russian »

Simple test code.

Code: Select all

Structure Test
  x.l
  y.f
  List z.s()
EndStructure

Procedure Test(*p.Test)
  CallDebugger
EndProcedure

s.Test
Test(s)
If you place the cursor over the structure pointer name, the structure data is displayed.

Image

But why is this data not available in Variable Viewer? Because of this, it is impossible to look at the data in the z() linked list.

Image