smalruby3-gui icon indicating copy to clipboard operation
smalruby3-gui copied to clipboard

occur name error if procedure argument first letter is uppercase

Open takaokouji opened this issue 1 year ago • 0 comments

Expected Behavior

code -> ruby

def self.procedure(aRG1)
  move(aRG1)
end

Actual Behavior

def self.procedure(aRG1)
  move(ARG1)
end

First letter is still uppercase.

Steps to Reproduce

Defined procedure with ARG1. After that, you click Ruby tab.

takaokouji avatar Oct 27 '23 14:10 takaokouji