16.2.11	 break, continue, return, and throw Statements
- By convention, we say that V is definitely assigned after any break,continue,return, orthrowstatement. The notion that a variable is "definitely assigned after" a statement or expression really means "is definitely assigned after the statement or expression completes normally". Because abreak,continue,return, orthrowstatement never completes normally, it vacuously satisfies this notion.
- In a returnstatement with an expression or athrowstatement, V is definitely assigned before the expression iff V is definitely assigned before thereturnorthrowstatement.