Examples of popFrame()


Examples of org.cx4a.rsense.ruby.Context.popFrame()

            Context context = graph.getRuntime().getContext();
            context.pushFrame(context.getFrameModule(), node.getName(), receiver, null, Visibility.PUBLIC);
            context.pushScope(new LocalScope(method.getModule()));
            graph.createVertex(node.getBodyNode());
            context.popScope();
            context.popFrame();
        }
        Logger.debug(SourceLocation.of(node), "dummy call: %s", method);
    }

    public static void dummyCallForTemplates(Graph graph, MethodDefNode node, Method method, Collection<TemplateAttribute> templateAttributes) {
View Full Code Here

Examples of org.cx4a.rsense.ruby.Context.popFrame()

        if (ret != null && result != AnnotationResolver.Result.RESOLVED) {
            graph.addEdgeAndUpdate(ret, returnVertex);
        }

        context.popScope();
        context.popFrame();

        return template;
    }

    private static List<TemplateAttribute> generateTemplateAttributes(Collection<IRubyObject> receivers, List<Collection<IRubyObject>> args, Block block) {
View Full Code Here

Examples of org.eclipse.jdt.internal.debug.core.model.JDIStackFrame.popFrame()

    JDIStackFrame popFrame = null;
    Iterator<JDIStackFrame> iter = popFrames.iterator();
    while (iter.hasNext()) {
      try {
        popFrame = iter.next();
        popFrame.popFrame();
        poppedThreads.add(popFrame.getThread());
      } catch (DebugException de) {
        poppedThreads.remove(popFrame.getThread());
        notifyFailedDrop(
            ((JDIThread) popFrame.getThread()).computeStackFrames(),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.