diff options
author | Eduardo Julian | 2022-06-14 21:28:23 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-14 21:28:23 -0400 |
commit | da79da086a028a55130fbbbc5e08ed0ce736ff96 (patch) | |
tree | 3cca77c0271a65e29c5d8057d3837db3e330e359 /lux-ruby/source | |
parent | 3a81232c2367df2416f62f651259ff9297abc7d4 (diff) |
New "parser" hierarchy. [Part 2]
Diffstat (limited to 'lux-ruby/source')
-rw-r--r-- | lux-ruby/source/program.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index 68daa7bb9..83a565329 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -203,7 +203,7 @@ (import org/jruby/runtime/Signature "[1]::[0]" - ("static" THREE_ARGUMENTS org/jruby/runtime/Signature)) + ("read_only" "static" THREE_ARGUMENTS org/jruby/runtime/Signature)) (import org/jruby/parser/StaticScope "[1]::[0]") @@ -218,8 +218,8 @@ (import org/jruby/runtime/Block "[1]::[0]" - ("static" NULL_BLOCK org/jruby/runtime/Block) - (type org/jruby/runtime/Block$Type) + ("read_only" "static" NULL_BLOCK org/jruby/runtime/Block) + ("read_only" type org/jruby/runtime/Block$Type) (getBody [] org/jruby/runtime/BlockBody)) (import org/jruby/RubyProc |