| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library fasta.outline_builder; | 5 library fasta.outline_builder; |
| 6 | 6 |
| 7 import 'package:kernel/ast.dart' show ProcedureKind; | 7 import 'package:kernel/ast.dart' show ProcedureKind; |
| 8 | 8 |
| 9 import '../../scanner/token.dart' show Token; | 9 import '../../scanner/token.dart' show Token; |
| 10 | 10 |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 971 } | 971 } |
| 972 buffer.write(lexeme); | 972 buffer.write(lexeme); |
| 973 } | 973 } |
| 974 docToken = docToken.next; | 974 docToken = docToken.next; |
| 975 } | 975 } |
| 976 return buffer.toString(); | 976 return buffer.toString(); |
| 977 } | 977 } |
| 978 | 978 |
| 979 @override | 979 @override |
| 980 void debugEvent(String name) { | 980 void debugEvent(String name) { |
| 981 // printEvent(name); | 981 // printEvent('OutlineBuilder: $name'); |
| 982 } | 982 } |
| 983 } | 983 } |
| OLD | NEW |