Package org.openquark.cal.compiler.ModuleNameResolver

Examples of org.openquark.cal.compiler.ModuleNameResolver.ResolutionResult


            userInputQualifiedNameLength = userInputWordLength;
        } else {
            userInputQualifiedNameLength = caretPosition - startOfModuleName;
            try{
                final ModuleName moduleName = ModuleName.make(moduleNameString);
                final ResolutionResult resolution = perspective.getWorkingModuleTypeInfo().getModuleNameResolver().resolve(moduleName);

                listAdapter.setModule(resolution);
            }
            catch(IllegalArgumentException e){
                // if the module name is not valid then there are no suggestions available.
View Full Code Here

TOP

Related Classes of org.openquark.cal.compiler.ModuleNameResolver.ResolutionResult

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.