Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Lua Development Tools » Outline missing functions if they are called
Outline missing functions if they are called [message #1760654] Sun, 30 April 2017 10:47
N M is currently offline N MFriend
Messages: 1
Registered: April 2017
Junior Member
Hello,

in a scenario I have two small functions like this:

function a()
  b()
end

function b()
  a()
end


The outline only shows a(). If I remove the call to b inside a, b appears again in the outline. Any function that is called earlier in the code does not appear in the outline.

I am very new to LUA (though I have experiences in other languages) so correct me if I get something wrong here: AFAIK if I declare the funtions like this they are not declared in a local scope, so shouldn't need to be forward declared or similar things (if this is even a thing in LUA).

Also the code runs fine, it is just the outline that is missing later functions when they are called earlier in the code.

Any help how I get all my functions to display is much appreciated.

Thanks!
Previous Topic:Debug LDT source scripts
Next Topic:identification of debug ide host
Goto Forum:
  


Current Time: Sat May 04 01:04:57 GMT 2024

Powered by FUDForum. Page generated in 0.02844 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top