Warning, /frameworks/ktexteditor/autotests/input/indent/ruby/basic5/expected is written in an unsupported language. File is not indexed.
0001 # basic5.txt - access modifiers before `def`
0002
0003 class MyClass
0004 public def foo
0005 puts "in foo"
0006 end
0007
0008 protected def bar(x)
0009 puts "in bar with #{x}"
0010 end
0011
0012 private def bat y
0013 puts "in bat with #{y}"
0014 end
0015 end