Method: CSDL::Processor#on_target
- Defined in:
- lib/csdl/processor.rb
#on_target(node) ⇒ String
Process :target nodes, ensuring the the given terminator value is a valid operator.
223 224 225 226 227 |
# File 'lib/csdl/processor.rb', line 223 def on_target(node) target = node.children.first.to_s validate_target!(target) target end |