Class: Twig::Node::Expression::Unary::StringCast
- Inherits:
-
Unary::Base
- Object
- Unary::Base
- Twig::Node::Expression::Unary::StringCast
- Defined in:
- lib/twig/node/expression/unary/string_cast.rb
Instance Method Summary collapse
Instance Method Details
#compile(compiler) ⇒ Object
8 9 10 11 12 13 |
# File 'lib/twig/node/expression/unary/string_cast.rb', line 8 def compile(compiler) compiler. raw('('). subcompile(nodes[:node]). raw('.to_s)') end |