class ContextEvaluator

Attributes

context[RW]

Public Class Methods

new(context) click to toggle source
# File lib/thymeleaf/processor/context_evaluator.rb, line 3
def initialize(context)
  self.context = context
end

Public Instance Methods

evaluate(expr) click to toggle source
# File lib/thymeleaf/processor/context_evaluator.rb, line 7
def evaluate(expr)
  context.evaluate(expr)
end