コード例 #1
0
ファイル: inline_block.hpp プロジェクト: Azzurrio/rubinius
 CompiledCode* method() {
   return method_.get();
 }
コード例 #2
0
ファイル: jit.hpp プロジェクト: stormbrew/rubinius
 CompiledMethod* method() {
   return method_.get();
 }
コード例 #3
0
 Exception* interrupted_exception() {
   return interrupted_exception_.get();
 }
コード例 #4
0
ファイル: environment.hpp プロジェクト: Red54/rubinius
 Object* loader() {
   return loader_->get();
 }
コード例 #5
0
ファイル: jit.hpp プロジェクト: stormbrew/rubinius
 BlockEnvironment* block_env() {
   return try_as<BlockEnvironment>(mm_.get());
 }
コード例 #6
0
ファイル: channel.cpp プロジェクト: atoulme/rubinius
 virtual Object* object() {
   return chan.get();
 }
コード例 #7
0
ファイル: thread_state.hpp プロジェクト: stormbrew/rubinius
 Object* throw_dest() {
   return throw_dest_.get();
 }
コード例 #8
0
ファイル: thread_state.hpp プロジェクト: stormbrew/rubinius
 VariableScope* destination_scope() {
   return destination_scope_.get();
 }
コード例 #9
0
ファイル: thread_state.hpp プロジェクト: stormbrew/rubinius
 Object* raise_value() {
   return raise_value_.get();
 }
コード例 #10
0
 Class* self_class() {
   return self_class_.get();
 }