本文簡要介紹ruby語言中 RubyVM::InstructionSequence.compile_file
的用法。
用法
compile_file(file[, options]) → iseq
獲取 file
,一個帶有 Ruby 源文件位置的 String
,讀取、解析和編譯文件,並返回 iseq
,編譯後的 InstructionSequence
並設置了源位置元數據。
可選地采用 options
(可以是 true
、 false
或 Hash
)來修改 Ruby iseq 編譯器的默認行為。
有關有效編譯選項的詳細信息,請參閱 ::compile_option=
。
# /tmp/hello.rb
puts "Hello, world!"
# elsewhere
RubyVM::InstructionSequence.compile_file("/tmp/hello.rb")
#=> <RubyVM::InstructionSequence:<main>@/tmp/hello.rb>
相關用法
- Ruby InstructionSequence.compile用法及代碼示例
- Ruby InstructionSequence.base_label用法及代碼示例
- Ruby InstructionSequence.disasm用法及代碼示例
- Ruby InstructionSequence.first_lineno用法及代碼示例
- Ruby InstructionSequence.of用法及代碼示例
- Ruby InstructionSequence.path用法及代碼示例
- Ruby InstructionSequence.label用法及代碼示例
- Ruby InstructionSequence.absolute_path用法及代碼示例
- Ruby InstructionSequence.disassemble用法及代碼示例
- Ruby InstructionSequence.eval用法及代碼示例
- Ruby Installer.install用法及代碼示例
- Ruby Installer.shebang用法及代碼示例
- Ruby Inspector.def_inspector用法及代碼示例
- Ruby Inspector類用法及代碼示例
- Ruby Integer.nobits?用法及代碼示例
- Ruby Integer lcm()用法及代碼示例
- Ruby Integer.self >=用法及代碼示例
- Ruby Integer.self >>用法及代碼示例
- Ruby Integer.next用法及代碼示例
- Ruby Integer.self ** numeric用法及代碼示例
- Ruby Integer integer?用法及代碼示例
- Ruby Integer.truncate用法及代碼示例
- Ruby Integer digits用法及代碼示例
- Ruby Integer divmod()用法及代碼示例
- Ruby Inflate.inflate用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 InstructionSequence.compile_file。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。