We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56a637c commit ec44da2Copy full SHA for ec44da2
examples/rubyish/rubyish.nqp
@@ -632,15 +632,15 @@ class Rubyish::Actions is HLL::Actions {
632
# pseudo-code:
633
#
634
# def new(*call-args)
635
- # $new-obj$ = Class.new;
+ # $new-obj = Class.new;
636
# if call-args then
637
# # always try to call initialize, when new has arguments
638
- # $new-obj$.initialize(call-args)
+ # $new-obj.initialize(call-args)
639
# else
640
- # $new-obj$.initialize() \
641
- # if $new-obj$.can('initialize')
+ # $new-obj.initialize() \
+ # if $new-obj.can('initialize')
642
# end
643
- # return $new-obj$
+ # return $new-obj
644
645
646
# create the new object
0 commit comments