Skip to main content



      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 06:47
Eclipse UserFriend
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: Wed Mar 19 19:46:34 EDT 2025

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

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

Back to the top