Package nexj.core.scripting.PCodeFunction

Examples of nexj.core.scripting.PCodeFunction.DebugInfo


       * @return Gets the line number if debug information available, or -1
       *         otherwise
       */
      public int getLine()
      {
         DebugInfo di = function.getDebugInfo();

         return (di == null) ? -1 : di.getLine(di.getPos(offset + 1));
      }
View Full Code Here


      /**
       * @return Gets the URL if debug information available, or -1 otherwise
       */
      public String getURL()
      {
         DebugInfo di = function.getDebugInfo();

         return (di == null) ? null : di.getURL(di.getPos(offset + 1));
      }
View Full Code Here

TOP

Related Classes of nexj.core.scripting.PCodeFunction.DebugInfo

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.