| Index: lib/compiler/implementation/tree/unparser.dart
|
| diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
|
| index 221a5e59ffe6496027adc12380ec3c88ffdce83d..f13b36b8233e5fe70b0a587e53be78d0e9c311af 100644
|
| --- a/lib/compiler/implementation/tree/unparser.dart
|
| +++ b/lib/compiler/implementation/tree/unparser.dart
|
| @@ -124,7 +124,7 @@ class Unparser implements Visitor {
|
|
|
| visitFunctionExpression(FunctionExpression node) {
|
| // Check length to not print unnecessary whitespace.
|
| - if (node.modifiers !== null && node.modifiers.nodes.length() > 0) {
|
| + if (node.modifiers.nodes.length() > 0) {
|
| visit(node.modifiers);
|
| sb.add(' ');
|
| }
|
|
|