# File lib/rake.rb, line 2451
2451:   def const_missing(const_name)
2452:     case const_name
2453:     when :Task
2454:       Rake.application.const_warning(const_name)
2455:       Rake::Task
2456:     when :FileTask
2457:       Rake.application.const_warning(const_name)
2458:       Rake::FileTask
2459:     when :FileCreationTask
2460:       Rake.application.const_warning(const_name)
2461:       Rake::FileCreationTask
2462:     when :RakeApp
2463:       Rake.application.const_warning(const_name)
2464:       Rake::Application
2465:     else
2466:       rake_original_const_missing(const_name)
2467:     end
2468:   end