| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of source_mapping_crash_test; |
| 6 |
| 5 /******************************************************************************* | 7 /******************************************************************************* |
| 6 * Long comment to make positions in this file exceed those in | 8 * Long comment to make positions in this file exceed those in |
| 7 * 'source_mapping_crash_test.dart'. | 9 * 'source_mapping_crash_test.dart'. |
| 8 ******************************************************************************* | 10 ******************************************************************************* |
| 9 ******************************************************************************* | 11 ******************************************************************************* |
| 10 ******************************************************************************* | 12 ******************************************************************************* |
| 11 ******************************************************************************* | 13 ******************************************************************************* |
| 12 ******************************************************************************* | 14 ******************************************************************************* |
| 13 ******************************************************************************* | 15 ******************************************************************************* |
| 14 ******************************************************************************* | 16 ******************************************************************************* |
| (...skipping 30 matching lines...) Expand all Loading... |
| 45 ******************************************************************************* | 47 ******************************************************************************* |
| 46 ******************************************************************************* | 48 ******************************************************************************* |
| 47 ******************************************************************************* | 49 ******************************************************************************* |
| 48 ******************************************************************************* | 50 ******************************************************************************* |
| 49 ******************************************************************************* | 51 ******************************************************************************* |
| 50 */ | 52 */ |
| 51 class Super { | 53 class Super { |
| 52 final sb = new StringBuffer(); | 54 final sb = new StringBuffer(); |
| 53 Super(var y); | 55 Super(var y); |
| 54 } | 56 } |
| OLD | NEW |