Package org.eclipse.imp.parser

Examples of org.eclipse.imp.parser.ISourcePositionLocator


    Object targetNode = null; // node referenced from current hover point
    Object helpNode = null; // node for which a help message is to be constructed
    String msg = null; // the help message for helpNode

    // Get the node at the given offset; no node implies no message
    ISourcePositionLocator nodeLocator = parseController
        .getSourcePositionLocator();
    sourceNode = nodeLocator.findNode(ast, offset);
    if (sourceNode == null) {
      return null;
    }

    // Check whether there is a reference resolver for the identified
View Full Code Here

TOP

Related Classes of org.eclipse.imp.parser.ISourcePositionLocator

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.