@@ -195,7 +195,7 @@ public static ASTNode resolveExpression(ASTNode nearestNode,
195195 * @param astNode
196196 * @return
197197 */
198- public static ClassMember resolveExpression3rdParty (PreprocessedSketch ps , ASTNode nearestNode ,
198+ public static ClassMember resolveExpression3rdParty (PreprocSketch ps , ASTNode nearestNode ,
199199 ASTNode astNode , boolean noCompare ) {
200200 log ("Resolve 3rdParty expr-- " + getNodeAsString (astNode )
201201 + " nearest node " + getNodeAsString (nearestNode ));
@@ -524,7 +524,7 @@ public static ASTNode getParentExpression(ASTNode expression) {
524524 * @param noCompare
525525 * @return
526526 */
527- public static ArrayList <CompletionCandidate > getMembersForType (PreprocessedSketch ps ,
527+ public static ArrayList <CompletionCandidate > getMembersForType (PreprocSketch ps ,
528528 String typeName ,
529529 String child ,
530530 boolean noCompare ,
@@ -542,7 +542,7 @@ public static ArrayList<CompletionCandidate> getMembersForType(PreprocessedSketc
542542
543543 }
544544
545- public static ArrayList <CompletionCandidate > getMembersForType (PreprocessedSketch ps ,
545+ public static ArrayList <CompletionCandidate > getMembersForType (PreprocSketch ps ,
546546 ClassMember tehClass ,
547547 String childToLookFor ,
548548 boolean noCompare ,
@@ -682,7 +682,7 @@ private static boolean isStatic(List<org.eclipse.jdt.core.dom.Modifier> modifier
682682 * @param className
683683 * @return
684684 */
685- protected static Class <?> findClassIfExists (PreprocessedSketch ps , String className ){
685+ protected static Class <?> findClassIfExists (PreprocSketch ps , String className ){
686686 if (className == null ){
687687 return null ;
688688 }
@@ -766,7 +766,7 @@ protected static Class<?> loadClass(String className, ClassLoader classLoader){
766766 return tehClass ;
767767 }
768768
769- public static ClassMember definedIn3rdPartyClass (PreprocessedSketch ps , String className ,String memberName ){
769+ public static ClassMember definedIn3rdPartyClass (PreprocSketch ps , String className ,String memberName ){
770770 Class <?> probableClass = findClassIfExists (ps , className );
771771 if (probableClass == null ) {
772772 log ("Couldn't load " + className );
@@ -779,7 +779,7 @@ public static ClassMember definedIn3rdPartyClass(PreprocessedSketch ps, String c
779779 }
780780 }
781781
782- public static ClassMember definedIn3rdPartyClass (PreprocessedSketch ps , ClassMember tehClass ,String memberName ){
782+ public static ClassMember definedIn3rdPartyClass (PreprocSketch ps , ClassMember tehClass ,String memberName ){
783783 if (tehClass == null )
784784 return null ;
785785 log ("definedIn3rdPartyClass-> Looking for " + memberName
@@ -1317,7 +1317,7 @@ protected static ASTNode findDeclaration2(Name findMe, ASTNode alternateParent)
13171317 }
13181318
13191319
1320- protected static boolean ignorableSuggestionImport (PreprocessedSketch ps , String impName ) {
1320+ protected static boolean ignorableSuggestionImport (PreprocSketch ps , String impName ) {
13211321
13221322 String impNameLc = impName .toLowerCase ();
13231323
@@ -1402,7 +1402,7 @@ public ClassMember(Constructor<?> m) {
14021402 + m .getDeclaringClass ().getName ();
14031403 }
14041404
1405- public ClassMember (PreprocessedSketch ps , ASTNode node ){
1405+ public ClassMember (PreprocSketch ps , ASTNode node ){
14061406 astNode = node ;
14071407 stringVal = getNodeAsString (node );
14081408 if (node instanceof TypeDeclaration ){
@@ -1730,7 +1730,7 @@ protected static List<CompletionCandidate> trimCandidates(String newWord, List<C
17301730 * @param line
17311731 * @param lineStartNonWSOffset
17321732 */
1733- public List <CompletionCandidate > preparePredictions (final PreprocessedSketch ps ,
1733+ public List <CompletionCandidate > preparePredictions (final PreprocSketch ps ,
17341734 final String pdePhrase ,
17351735 final int lineNumber ) {
17361736 Messages .log ("* preparePredictions" );
0 commit comments