Home | History | Annotate | Download | only in antlr3

Lines Matching defs:to_s

127     erb.def_method( sclass, 'to_s' )
132 self::TEMPLATES.fetch( name.to_s ).new( values )
140 self::TEMPLATES.has_key?( name.to_s )
144 name = name.to_s.dup.freeze
147 ERB.new( source, nil, '%' ).def_method( tclass, 'to_s' )
155 new_name, old_name = new_name.to_s.dup.freeze, old_name.to_s
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
189 end.to_s
203 TEMPLATES[ #{ name.inspect } ].new( values ).to_s
242 case name = method.to_s
278 name = name.to_s
288 def to_s
303 names = map { | param | param.name.to_s }
304 @splat and names << @splat.to_s
305 @block and names << @block.to_s
313 else Parameter.new( name.to_s )
325 def to_s
327 @splat and signature << ", *" << @splat.to_s
328 @block and signature << ", &" << @block.to_s