Package org.eclipse.dltk.core.ISourceModuleInfoCache

Examples of org.eclipse.dltk.core.ISourceModuleInfoCache.ISourceModuleInfo


      if (moduleDeclaration != null) {
        // do nothing if already have AST - optimization for reconcile
        return;
      }
      // get cache entry
      final ISourceModuleInfo cacheEntry = ModelManager.getModelManager()
          .getSourceModuleInfoCache().get(context.getSourceModule());
      // if full build,do not use cache,or the error marker will not be
      // refreshed
      if (context.getBuildType() != IScriptBuilder.FULL_BUILD) {
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.core.ISourceModuleInfoCache.ISourceModuleInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.