-
-
Notifications
You must be signed in to change notification settings - Fork 924
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Truffle] Move ModuleChain to its own file.
- Loading branch information
1 parent
b160b2d
commit 9bae5af
Showing
2 changed files
with
22 additions
and
10 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
core/src/main/java/org/jruby/truffle/runtime/ModuleChain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2014 Oracle and/or its affiliates. All rights reserved. This | ||
* code is released under a tri EPL/GPL/LGPL license. You can use it, | ||
* redistribute it and/or modify it under the terms of the: | ||
* | ||
* Eclipse Public License version 1.0 | ||
* GNU General Public License version 2 | ||
* GNU Lesser General Public License version 2.1 | ||
*/ | ||
package org.jruby.truffle.runtime; | ||
|
||
import org.jruby.truffle.runtime.core.RubyModule; | ||
|
||
/** | ||
* Either an IncludedModule, a RubyClass or a RubyModule. | ||
* Private interface, do not use outside RubyModule. | ||
*/ | ||
public interface ModuleChain { | ||
ModuleChain getParentModule(); | ||
|
||
RubyModule getActualModule(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters