# File lib/rake.rb, line 1483
1483:   def const_missing(const_name)
1484:     case const_name
1485:     when :Task
1486:       Rake.application.const_warning(const_name)
1487:       Rake::Task
1488:     when :FileTask
1489:       Rake.application.const_warning(const_name)
1490:       Rake::FileTask
1491:     when :FileCreationTask
1492:       Rake.application.const_warning(const_name)
1493:       Rake::FileCreationTask
1494:     when :RakeApp
1495:       Rake.application.const_warning(const_name)
1496:       Rake::Application
1497:     else
1498:       rake_original_const_missing(const_name)
1499:     end
1500:   end