diff options
| author | Eduardo Julian | 2021-08-09 23:02:01 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2021-08-09 23:02:01 -0400 | 
| commit | 464b6e8f5e6c62f58fa8c7ff61ab2ad215e98bd1 (patch) | |
| tree | 1ae9d95956cee4251cd29a3e24c246c4360d567d /lux-ruby/source | |
| parent | f621a133e6e0a516c0586270fea8eaffb4829d82 (diff) | |
Improved single-line comment syntax (from "##" to "...").
Diffstat (limited to 'lux-ruby/source')
| -rw-r--r-- | lux-ruby/source/program.lux | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index c0342f441..33a7ff9cb 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -159,7 +159,7 @@     (runScriptlet [java/lang/String] #try #? java/lang/Object)     (getProvider [] org/jruby/embed/internal/LocalContextProvider)]) -## TODO; Figure out a way to not need "interpreter" to be a global variable. +... TODO; Figure out a way to not need "interpreter" to be a global variable.  (def: interpreter    (org/jruby/embed/ScriptingContainer::new)) @@ -523,7 +523,7 @@               (^or "==" "equal?"                    "to_s" "inspect"                    "[]" "length" "respond_to?" -                  ## "to_hash" +                  ... "to_hash"                    )               true @@ -672,7 +672,7 @@                 org/jruby/runtime/BlockBody                 (ffi.object [] org/jruby/runtime/BlockBody []                   [{org/jruby/runtime/Signature ..phase_block_signature}] -                 ## Methods +                 ... Methods                   (org/jruby/runtime/BlockBody                    [] (getFile self)                    java/lang/String @@ -692,7 +692,7 @@                       org/jruby/RubyProc))                 (let [block (ffi.object [] org/jruby/runtime/Block []                               [{org/jruby/runtime/BlockBody ..phase_block_body}] -                             ## Methods +                             ... Methods                               (org/jruby/runtime/Block                                [] (call self                                         {_ org/jruby/runtime/ThreadContext} @@ -762,7 +762,7 @@               (def: (extender phase_wrapper)                 (-> platform.Phase_Wrapper Extender) -               ## TODO: Stop relying on coercions ASAP. +               ... TODO: Stop relying on coercions ASAP.                 (<| (:as Extender)                     (function (@self handler))                     (:as Handler) | 
