36件ヒット
[1-36件を表示]
(0.110秒)
ライブラリ
- ビルトイン (36)
クラス
- Proc (12)
-
RubyVM
:: InstructionSequence (24)
キーワード
-
absolute
_ path (12) -
source
_ location (12)
検索結果
先頭3件
-
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...