Method: Kenma::Macro::Basic#stringify!
- Defined in:
- lib/kenma/macro/basic.rb
#stringify!(args) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/kenma/macro/basic.rb', line 17 def stringify!(args) if args.respond_to?(:source) [:STR, [args.source]] else [:STR, [args.to_s]] end end |