るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.225秒)

別のキーワード

  1. irb/cmd/subirb execute
  2. irb/input-method gets
  3. irb/input-method new
  4. irb/cmd/load execute
  5. irb/cmd/pushws execute

ライブラリ

検索結果

RubyVM::InstructionSequence#absolute_path -> String | nil (24226.0)

self が表す命令シーケンスの絶対パスを返します。

...elf が表す命令シーケンスの絶対パスを返します。

self を文字列から作成していた場合は nil を返します。

例1:irb で実行した場合

iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
ise...
...q.absolute_path
# => nil

例2: RubyVM::InstructionSequence.compile_file を使用した場合

# /tmp/method.rb
def hello
puts "hello, world"
e
nd

# irb
> iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.absolute_path # => "/tmp/method.rb"

@see RubyVM::Ins...
...tructionSequence#path...

RubyVM::InstructionSequence#path -> String (3019.0)

self が表す命令シーケンスの相対パスを返します。

...self が表す命令シーケンスの相対パスを返します。

self の作成時に指定した文字列を返します。self を文字列から作成していた
場合は "<compiled>" を返します。

例1:irb で実行した場合

iseq = RubyVM::InstructionSequence.compile('num = 1...
...tionSequence:<compiled>@<compiled>>
iseq.path
# => "<compiled>"

例2: RubyVM::InstructionSequence.compile_file を使用した場合

# /tmp/method.rb
def hello
puts "hello, world"
e
nd

# irb
> iseq = RubyVM::InstructionSequence.compile_file('method.rb')
> iseq.path # => "method...
....rb"

@see RubyVM::InstructionSequence#absolute_path...