# File lib/cgikit.rb, line 812
 def definitions
		return @definitions if @definitions

		unless FileTest.exist? _controller
			msg = "Can't read a binding file - #{_controller} #{self.class}"
			raise FileNotFoundError, msg
		end

		@definitions = CKDefinition.parse_ckd_file _controller
	end