48件ヒット
[1-48件を表示]
(0.020秒)
別のキーワード
ライブラリ
- ビルトイン (48)
クラス
- Proc (12)
-
RubyVM
:: InstructionSequence (36)
キーワード
-
absolute
_ path (12) -
source
_ location (12) -
to
_ a (12)
検索結果
先頭4件
-
RubyVM
:: InstructionSequence # path -> String (18138.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 (6138.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 (31.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... -
RubyVM
:: InstructionSequence # to _ a -> Array (19.0) -
self の情報を 14 要素の配列にして返します。
...ベルでは "<main>"。文字列から作成していた場合は
"<compiled>"。
: #path
命令シーケンスの相対パス。文字列から作成していた場合は "<compiled>"。
: #absolute_path
命令シーケンスの絶対パス。文字列から作成していた場合は ni......l。
: #first_lineno
命令シーケンスの 1 行目の行番号。
: type
命令シーケンスの種別。
:top、:method、:block、:class、:rescue、:ensure、:eval、:main、
:defined_guard のいずれか。
: locals
全ての引数名、ローカル変数名からなる Sym...