| Index: sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
 | 
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
 | 
| index b2d7a070d9574b7961cb2fbe88420731709914bb..bb1044ba921176662440a38fb4a596443c7aa823 100644
 | 
| --- a/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
 | 
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/tracer.dart
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file
 | 
| +// Copyright (c) 2013, the Dart project authors.  Please see the AUTHORS file
 | 
|  // for details. All rights reserved. Use of this source code is governed by a
 | 
|  // BSD-style license that can be found in the LICENSE file.
 | 
|  
 | 
| @@ -20,8 +20,9 @@ class HTracer extends HGraphVisitor implements Tracer {
 | 
|    bool traceActive = false;
 | 
|  
 | 
|    HTracer([String path = "dart.cfg"])
 | 
| -      : output = GENERATE_SSA_TRACE ? new File(path).openSync(FileMode.WRITE)
 | 
| -                                    : null;
 | 
| +      : output = GENERATE_SSA_TRACE
 | 
| +          ? new File(path).openSync(mode: FileMode.WRITE)
 | 
| +          : null;
 | 
|  
 | 
|    void close() {
 | 
|      if (enabled) output.closeSync();
 | 
| 
 |