コード例 #1
0
    /** Returns a StackFrame for the given function or script. */
    public DebugFrame getFrame(Context cx, DebuggableScript fnOrScript) {
      if (type != IPROXY_DEBUG) Kit.codeBug();

      FunctionSource item = dim.getFunctionSource(fnOrScript);
      if (item == null) {
        // Can not debug if source is not available
        return null;
      }
      return new StackFrame(cx, dim, item);
    }