Module: Treetop_Configgy::QuotedEntity0
- Defined in:
- lib/treetop/configgy.rb
Instance Method Summary collapse
Instance Method Details
#unquoted ⇒ Object
721 722 723 724 725 726 727 728 729 |
# File 'lib/treetop/configgy.rb', line 721 def unquoted case text_value when "r" then "\r" when "n" then "\n" when "t" then "\t" when "$" then "\\$" else text_value end end |