Examples of postNodeEval()


Examples of org.jruby.runtime.ThreadContext.postNodeEval()

            parseFile(in, scriptName, null).interpret(this, context, self, Block.NULL_BLOCK);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            context.setFile(file);
        }
    }
   
    public void compileAndLoadFile(String filename, InputStream in, boolean wrap) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

            runScript(script);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            context.setFile(file);
        }
    }

    public void loadScript(Script script) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

           
            script.load(context, self, IRubyObject.NULL_ARRAY, Block.NULL_BLOCK);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
        }
    }

    public class CallTraceFuncHook extends EventHook {
        private RubyProc traceFunc;
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

            runInterpreter(context, parseFile(in, scriptName, null), self);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            context.setFile(file);
        }
    }
   
    public void compileAndLoadFile(String filename, InputStream in, boolean wrap) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

        } catch (IOException ioe) {
            throw newIOErrorFromException(ioe);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            context.setFile(file);
        }
    }

    public void addBoundMethod(String javaName, String rubyName) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

            }
            runInterpreter(context, node, self);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            ThreadContext.popBacktrace(context);
        }
    }
   
    public void compileAndLoadFile(String filename, InputStream in, boolean wrap) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

        } catch (IOException ioe) {
            throw newIOErrorFromException(ioe);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
        }
    }

    public void addBoundMethod(String className, String methodName, String rubyName) {
        Map<String, String> javaToRuby = boundMethods.get(className);
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

           
            runInterpreter(context, parseResult, self);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
            ThreadContext.popBacktrace(context);
        }
    }
   
    public void compileAndLoadFile(String filename, InputStream in, boolean wrap) {
View Full Code Here

Examples of org.jruby.runtime.ThreadContext.postNodeEval()

        } catch (IOException ioe) {
            throw newIOErrorFromException(ioe);
        } catch (JumpException.ReturnJump rj) {
            return;
        } finally {
            context.postNodeEval();
        }
    }

    public void addBoundMethod(String className, String methodName, String rubyName) {
        Map<String, String> javaToRuby = boundMethods.get(className);
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.