the halting problem and background compilation? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:30:10Z http://stackoverflow.com/feeds/question/586213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/586213/the-halting-problem-and-background-compilation 0 the halting problem and background compilation? Robert Gould 2009-02-25T14:38:59Z 2009-02-25T16:04:07Z <p>I'm trying to figure out how I could write an autocompletion algorithm for Lua, but since as with many scripting languages it lacks a static type system I think I need background compilation, but during background compilation it's easy to hit the halting problem so I was wondering if anyone has solved this sort of thing before, and what are the standard strategies for solving compilation and halting? </p> http://stackoverflow.com/questions/586213/the-halting-problem-and-background-compilation/586591#586591 1 Answer by Godeke for the halting problem and background compilation? Godeke 2009-02-25T15:52:05Z 2009-02-25T15:52:05Z <p>Autocompletion based on static text analysis sounds more reasonable than trying to compile in the background. Most text editors that provide autocomplete use this method, although it isn't as accurate.</p> <p>To do so, you can parse the document looking for names and recording the scope they belong to. As the point moves through the document, your autocomplete notes the scope it is currently in and provides the names that should be available at that point.</p> <p>As LUA is global scope by default, you may end up with a fairly polluted namespace if your programmers aren't using the "local" keyword to narrow scopes. </p> http://stackoverflow.com/questions/586213/the-halting-problem-and-background-compilation/586645#586645 0 Answer by jpalecek for the halting problem and background compilation? jpalecek 2009-02-25T16:04:07Z 2009-02-25T16:04:07Z <p>You can</p> <ul> <li>actually execute the code to see what kind of object is represented by a particular variable, and cut the execution in the middle if it takes too long</li> <li>guess what type would the actual variable have, if Lua had types. This means you'd have to create a type system, which is a nontrivial task (you have to be enough restrictive to allow reasoning about the object model, and enough permissive for enough Lua programs actually conform to your model). However, all the shiny new javascript engines try to do this, AFAIK, so you could look there for pointers.</li> <li>just guess from the syntax. For example, emacs completion, which only looks for the same prefixes, works like charm in cases where other IDEs usually fail (C++ templates)</li> </ul>