Methods in org.jruby.compiler with parameters of type ASTInspector |
void |
CacheCompiler.cacheClosure(BaseBodyCompiler method,
java.lang.String closureMethod,
int arity,
StaticScope scope,
boolean hasMultipleArgsHead,
NodeType argsNodeId,
ASTInspector inspector)
|
void |
ASTCompiler.compileRoot(Node node,
ScriptCompiler context,
ASTInspector inspector)
|
void |
ASTCompiler.compileRoot(Node node,
ScriptCompiler context,
ASTInspector inspector,
boolean load,
boolean main)
|
void |
BodyCompiler.createNewClosure(int line,
StaticScope scope,
int arity,
CompilerCallback body,
CompilerCallback args,
boolean hasMultipleArgsHead,
NodeType argsNodeId,
ASTInspector inspector)
Create a new closure (block) using the given lexical scope information, call arity, and
body generated by the body callback. |
void |
BodyCompiler.defineNewMethod(java.lang.String name,
int methodArity,
StaticScope scope,
CompilerCallback body,
CompilerCallback args,
CompilerCallback receiver,
ASTInspector inspector,
boolean root)
Define a new method with the given name, arity, local variable count, and body callback. |
void |
ASTInspector.integrate(ASTInspector other)
Integrate the results of a separate inspection into the state of this
inspector. |
BodyCompiler |
ScriptCompiler.startMethod(java.lang.String rubyName,
java.lang.String javaName,
CompilerCallback argsHandler,
StaticScope scope,
ASTInspector inspector)
Begin compilation for a method that has the specified number of local variables. |
Methods in org.jruby.compiler.impl with parameters of type ASTInspector |
void |
InheritedCacheCompiler.cacheClosure(BaseBodyCompiler method,
java.lang.String closureMethod,
int arity,
StaticScope scope,
boolean hasMultipleArgsHead,
NodeType argsNodeId,
ASTInspector inspector)
|
void |
BaseBodyCompiler.createNewClosure(int line,
StaticScope scope,
int arity,
CompilerCallback body,
CompilerCallback args,
boolean hasMultipleArgsHead,
NodeType argsNodeId,
ASTInspector inspector)
|
void |
BaseBodyCompiler.defineNewMethod(java.lang.String name,
int methodArity,
StaticScope scope,
CompilerCallback body,
CompilerCallback args,
CompilerCallback receiver,
ASTInspector inspector,
boolean root)
|
BodyCompiler |
StandardASMCompiler.startMethod(java.lang.String rubyName,
java.lang.String javaName,
CompilerCallback args,
StaticScope scope,
ASTInspector inspector)
|
Constructors in org.jruby.compiler.impl with parameters of type ASTInspector |
ASMClassBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String friendlyName,
ASTInspector inspector,
StaticScope scope)
|
BaseBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String methodName,
ASTInspector inspector,
StaticScope scope)
|
ChainedChildBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String methodName,
ASTInspector inspector,
StaticScope scope,
ChildScopedBodyCompiler parent)
|
ChainedRootBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String methodName,
ASTInspector inspector,
StaticScope scope,
RootScopedBodyCompiler parent)
|
ChildScopedBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String closureMethodName,
ASTInspector inspector,
StaticScope scope)
|
MethodBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String rubyName,
java.lang.String javaName,
ASTInspector inspector,
StaticScope scope)
|
RootScopedBodyCompiler(StandardASMCompiler scriptCompiler,
java.lang.String friendlyName,
ASTInspector inspector,
StaticScope scope)
|