FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
jruby/src/org/jruby/RubyRuntimeAdapter.java at serializable_procs · MSNexploder/jruby · GitHub
MSNexploder
/
jruby
Public
forked from
jruby/jruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
jruby
/
src
/
org
/
jruby
/
RubyRuntimeAdapter.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (13 loc) · 439 Bytes
Breadcrumbs
jruby
/
src
/
org
/
jruby
/
RubyRuntimeAdapter.java
Copy path
File metadata and controls
16 lines (13 loc) · 439 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package
org
.
jruby
;
import
java
.
io
.
InputStream
;
import
org
.
jruby
.
javasupport
.
JavaEmbedUtils
.
EvalUnit
;
import
org
.
jruby
.
runtime
.
builtin
.
IRubyObject
;
/**
*
* @author nicksieger
*/
public
interface
RubyRuntimeAdapter
{
IRubyObject
eval
(
Ruby
runtime
,
String
script
);
EvalUnit
parse
(
Ruby
runtime
,
String
script
,
String
filename
,
int
lineNumber
);
EvalUnit
parse
(
Ruby
runtime
,
InputStream
in
,
String
filename
,
int
lineNumber
);
}
Back
|
FazBrowse Home
|
New Git URL