Index: packages/dart_style/test/regression/0100/0142.stmt |
diff --git a/packages/dart_style/test/regression/0100/0142.stmt b/packages/dart_style/test/regression/0100/0142.stmt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..85707c8d2b0e45fd995469856b122b93097431d2 |
--- /dev/null |
+++ b/packages/dart_style/test/regression/0100/0142.stmt |
@@ -0,0 +1,41 @@ |
+>>> (indent 4) |
+ enterBlock.setBlockFlow( |
+ new HTryBlockInformation( |
+ wrapStatementGraph(bodyGraph), |
+ exception, |
+ wrapStatementGraph(catchGraph), |
+ wrapStatementGraph(finallyGraph)), |
+ exitBlock); |
+<<< |
+ enterBlock.setBlockFlow( |
+ new HTryBlockInformation(wrapStatementGraph(bodyGraph), exception, |
+ wrapStatementGraph(catchGraph), wrapStatementGraph(finallyGraph)), |
+ exitBlock); |
+>>> (indent 8) |
+ enterBlock.setBlockFlow( |
+ new HTryBlockInformation( |
+ wrapStatementGraph(bodyGraph), |
+ exception, |
+ wrapStatementGraph(catchGraph), |
+ wrapStatementGraph(finallyGraph)), |
+ exitBlock); |
+<<< |
+ enterBlock.setBlockFlow( |
+ new HTryBlockInformation( |
+ wrapStatementGraph(bodyGraph), |
+ exception, |
+ wrapStatementGraph(catchGraph), |
+ wrapStatementGraph(finallyGraph)), |
+ exitBlock); |
+>>> (indent 6) |
+ assert(invariant( |
+ CURRENT_ELEMENT_SPANNABLE, |
+ kind == MessageKind.GENERIC || |
+ !message.contains(new RegExp(r'#\{.+\}')), |
+ message: 'Missing arguments in error message: "$message"')); |
+<<< |
+ assert(invariant( |
+ CURRENT_ELEMENT_SPANNABLE, |
+ kind == MessageKind.GENERIC || |
+ !message.contains(new RegExp(r'#\{.+\}')), |
+ message: 'Missing arguments in error message: "$message"')); |