Home | History | Annotate | Download | only in test

Lines Matching refs:chr

9   def here_indent( chr = '| ' )
10 dup.here_indent!( chr )
13 def here_indent!( chr = '| ' )
14 chr = Regexp.escape( chr )
15 exp = Regexp.new( "^ *#{ chr }" )
20 def here_flow( chr = '| ' )
21 dup.here_flow!( chr )
24 def here_flow!( chr = '| ' )
25 here_indent!( chr ).gsub!( /\n\s+/,' ' )