OLD | NEW |
(Empty) | |
| 1 >>> (indent 4) |
| 2 enterBlock.setBlockFlow( |
| 3 new HTryBlockInformation( |
| 4 wrapStatementGraph(bodyGraph), |
| 5 exception, |
| 6 wrapStatementGraph(catchGraph), |
| 7 wrapStatementGraph(finallyGraph)), |
| 8 exitBlock); |
| 9 <<< |
| 10 enterBlock.setBlockFlow( |
| 11 new HTryBlockInformation(wrapStatementGraph(bodyGraph), exception, |
| 12 wrapStatementGraph(catchGraph), wrapStatementGraph(finallyGraph)), |
| 13 exitBlock); |
| 14 >>> (indent 8) |
| 15 enterBlock.setBlockFlow( |
| 16 new HTryBlockInformation( |
| 17 wrapStatementGraph(bodyGraph), |
| 18 exception, |
| 19 wrapStatementGraph(catchGraph), |
| 20 wrapStatementGraph(finallyGraph)), |
| 21 exitBlock); |
| 22 <<< |
| 23 enterBlock.setBlockFlow( |
| 24 new HTryBlockInformation( |
| 25 wrapStatementGraph(bodyGraph), |
| 26 exception, |
| 27 wrapStatementGraph(catchGraph), |
| 28 wrapStatementGraph(finallyGraph)), |
| 29 exitBlock); |
| 30 >>> (indent 6) |
| 31 assert(invariant( |
| 32 CURRENT_ELEMENT_SPANNABLE, |
| 33 kind == MessageKind.GENERIC || |
| 34 !message.contains(new RegExp(r'#\{.+\}')), |
| 35 message: 'Missing arguments in error message: "$message"')); |
| 36 <<< |
| 37 assert(invariant( |
| 38 CURRENT_ELEMENT_SPANNABLE, |
| 39 kind == MessageKind.GENERIC || |
| 40 !message.contains(new RegExp(r'#\{.+\}')), |
| 41 message: 'Missing arguments in error message: "$message"')); |
OLD | NEW |