# File lib/rake/ext/module.rb, line 21
21:   def const_missing(const_name)
22:     case const_name
23:     when :Task
24:       Rake.application.const_warning(const_name)
25:       Rake::Task
26:     when :FileTask
27:       Rake.application.const_warning(const_name)
28:       Rake::FileTask
29:     when :FileCreationTask
30:       Rake.application.const_warning(const_name)
31:       Rake::FileCreationTask
32:     when :RakeApp
33:       Rake.application.const_warning(const_name)
34:       Rake::Application
35:     else
36:       rake_original_const_missing(const_name)
37:     end
38:   end