--[[ These messages are used by Component to help users diagnose when they're calling setState in inappropriate places. The indentation may seem odd, but it's necessary to avoid introducing extra whitespace into the error messages themselves. ]] local ComponentLifecyclePhase = require(script.Parent.ComponentLifecyclePhase) local invalidSetStateMessages = {} invalidSetStateMessages[ComponentLifecyclePhase.WillUpdate] = [[ setState cannot be used in the willUpdate lifecycle method. Consider using the didUpdate method instead, or using getDerivedStateFromProps. Check the definition of willUpdate in the component %q.]] invalidSetStateMessages[ComponentLifecyclePhase.WillUnmount] = [[ setState cannot be used in the willUnmount lifecycle method. A component that is being unmounted cannot be updated! Check the definition of willUnmount in the component %q.]] invalidSetStateMessages[ComponentLifecyclePhase.ShouldUpdate] = [[ setState cannot be used in the shouldUpdate lifecycle method. shouldUpdate must be a pure function that only depends on props and state. Check the definition of shouldUpdate in the component %q.]] invalidSetStateMessages[ComponentLifecyclePhase.Render] = [[ setState cannot be used in the render method. render must be a pure function that only depends on props and state. Check the definition of render in the component %q.]] invalidSetStateMessages["default"] = [[ setState can not be used in the current situation, because Roact doesn't know which part of the lifecycle this component is in. This is a bug in Roact. It was triggered by the component %q. ]] return invalidSetStateMessages