Register a post-handler for a route path.

Posthandlers are matched after every other handlers in registrastion order.

Property definitions

popcorn $ Router :: use_after
	# Register a post-handler for a route `path`.
	#
	# Posthandlers are matched after every other handlers in registrastion order.
	fun use_after(path: String, handler: Handler) do
		var route = build_route(handler, path)
		post_handlers[route] = handler
	end
lib/popcorn/pop_handlers.nit:338,2--344,4