class Tilt::Template

def evaluate_source(scope, locals, &block)

Evaluate the template source in the context of the scope object.
def evaluate_source(scope, locals, &block)
  source, offset = precompiled(locals)
  scope.instance_eval(source, eval_file, line - offset)
end