Method: Liquid::Context#pop
- Defined in:
- lib/liquid/context.rb
#pop ⇒ Object
Pop from the stack. use Context#stack instead
124 125 126 127 |
# File 'lib/liquid/context.rb', line 124 def pop raise ContextError if @scopes.size == 1 @scopes.shift end |