るりまサーチ

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

別のキーワード

  1. string []=
  2. string slice
  3. string slice!
  4. string []
  5. string gsub

ライブラリ

クラス

キーワード

検索結果

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

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

...d>@<compiled>>
iseq.path
# => "<compiled>"

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

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

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

@see RubyVM::In...
...structionSequence#absolute_path...

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

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

...iseq.absolute_path
# => nil

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

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

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

@see RubyV...
...M::InstructionSequence#path...

Proc#source_location -> [String, Integer] | nil (132.0)

ソースコードのファイル名と行番号を配列で返します。

...][ruby]{
# /path/to/target.rb を実行
proc {}.source_location # => ["/path/to/target.rb", 1]
proc {}.source_location # => ["/path/to/target.rb", 2]
(eval "proc {}").source_location # => ["(eval)", 1]
method
(:p).to_proc.source_location # => nil
//}

@see Method#source_locati...