aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/compilable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/template_handlers/compilable.rb')
-rw-r--r--actionpack/lib/action_view/template_handlers/compilable.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/template_handlers/compilable.rb b/actionpack/lib/action_view/template_handlers/compilable.rb
index e4a36b8d15..6ab4f69558 100644
--- a/actionpack/lib/action_view/template_handlers/compilable.rb
+++ b/actionpack/lib/action_view/template_handlers/compilable.rb
@@ -4,6 +4,18 @@ module ActionView
def self.included(base)
base.extend ClassMethod
+
+ # Map method names to their compile time
+ base.cattr_accessor :compile_time
+ base.compile_time = {}
+
+ # Map method names to the names passed in local assigns so far
+ base.cattr_accessor :template_args
+ base.template_args = {}
+
+ # Count the number of inline templates
+ base.cattr_accessor :inline_template_count
+ base.inline_template_count = 0
end
module ClassMethod