diff options
| author | John Hawthorn <john@hawthorn.email> | 2021-06-14 18:02:32 -0700 |
|---|---|---|
| committer | Alan Wu <XrXr@users.noreply.github.com> | 2021-10-20 18:19:36 -0400 |
| commit | f16ec70e4fe90028d8584b5447f447c429024dde (patch) | |
| tree | b42771bb511813f25547bdb64fc69f5585d6276a | |
| parent | d1d3d2c0aab39511258c5c75b34396601a94f6f5 (diff) | |
Allow yjit.rb to work with frozen strings
| -rw-r--r-- | yjit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ module YJIT blocks = YJIT.blocks_for(iseq) return if blocks.empty? - str = "" + str = String.new str << iseq.disasm str << "\n" |
