woollybah / eclipsemax

Automatically exported from code.google.com/p/eclipsemax
1 stars 0 forks source link

All files are consumed from system libraries #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When adding a BlitzMax installation, available modules (or system
libraries, as Eclipse classifies them) are automatically detected.
As part of the caching mechanism, source files are processed from within
the modules.

However, all files are currently processed. This includes non-source files,
and other folders (like .svn), which we are not interested in.
Specifically, only .bmx files should really be processed for system libraries.

I'm fairly sure org.eclipse.dltk.internal.launching.InterpreterContainer's
exclusion list from computeBuildpathEntries() could contain those not
required. Otherwise, the inclusion list is set to only include .bmx files.

This would significantly reduce the processing overhead, and speed up indexing.

Original issue reported on code.google.com by woolly...@gmail.com on 13 Jul 2009 at 3:10