Navigation Menu

Skip to content

Commit

Permalink
Move *InterpreterContext from operands/ to interpreter/
Browse files Browse the repository at this point in the history
  • Loading branch information
subbuss committed Oct 20, 2014
1 parent ac42880 commit 93820f2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
Expand Up @@ -5,7 +5,7 @@

import org.jruby.RubyModule;
import org.jruby.ir.*;
import org.jruby.ir.operands.InterpreterContext;
import org.jruby.ir.interpreter.InterpreterContext;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
Expand Down
Expand Up @@ -8,9 +8,9 @@
import org.jruby.RubyClass;
import org.jruby.RubyModule;
import org.jruby.ir.*;
import org.jruby.ir.operands.InterpreterContext;
import org.jruby.ir.representations.CFG;
import org.jruby.ir.interpreter.Interpreter;
import org.jruby.ir.interpreter.InterpreterContext;
import org.jruby.ir.runtime.IRRuntimeHelpers;
import org.jruby.parser.StaticScope;
import org.jruby.runtime.Arity;
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/org/jruby/ir/IRClosure.java
@@ -1,6 +1,8 @@
package org.jruby.ir;

import org.jruby.ir.instructions.*;
import org.jruby.ir.interpreter.ClosureInterpreterContext;
import org.jruby.ir.interpreter.InterpreterContext;
import org.jruby.ir.operands.*;
import org.jruby.ir.representations.CFG;
import org.jruby.ir.transformations.inlining.CloneInfo;
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/org/jruby/ir/IRScope.java
Expand Up @@ -5,6 +5,8 @@
import org.jruby.RubyModule;
import org.jruby.ir.dataflow.DataFlowProblem;
import org.jruby.ir.instructions.*;
import org.jruby.ir.interpreter.ClosureInterpreterContext;
import org.jruby.ir.interpreter.InterpreterContext;
import org.jruby.ir.operands.*;
import org.jruby.ir.operands.Float;
import org.jruby.ir.passes.CompilerPass;
Expand Down
@@ -1,4 +1,4 @@
package org.jruby.ir.operands;
package org.jruby.ir.interpreter;

import org.jruby.ir.IRClosure;
import org.jruby.ir.instructions.Instr;
Expand Down
@@ -1,4 +1,4 @@
package org.jruby.ir.operands;
package org.jruby.ir.interpreter;

import org.jruby.ir.IRFlags;
import org.jruby.ir.IRMetaClassBody;
Expand Down
@@ -1,10 +1,10 @@
package org.jruby.runtime;

import org.jruby.EvalType;
import org.jruby.ir.operands.InterpreterContext;
import org.jruby.ir.IRClosure;
import org.jruby.ir.IRFlags;
import org.jruby.ir.interpreter.Interpreter;
import org.jruby.ir.interpreter.InterpreterContext;
import org.jruby.ir.representations.CFG;
import org.jruby.ir.runtime.IRRuntimeHelpers;
import org.jruby.runtime.Block.Type;
Expand Down

0 comments on commit 93820f2

Please sign in to comment.