Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 analyzer2dart.dart_backend; | 5 library analyzer2dart.dart_backend; |
| 6 | 6 |
| 7 import 'package:compiler/src/elements/elements.dart'; | 7 import 'package:compiler/src/elements/elements.dart'; |
| 8 import 'package:compiler/src/dart_backend/dart_backend.dart'; | 8 import 'package:compiler/src/dart_backend/dart_backend.dart'; |
| 9 import 'package:compiler/src/dart2jslib.dart'; | 9 import 'package:compiler/src/dart2jslib.dart'; |
| 10 import 'package:compiler/src/dart_types.dart'; | 10 import 'package:compiler/src/dart_types.dart'; |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 } | 70 } |
| 71 | 71 |
| 72 @override | 72 @override |
| 73 void reportError(Spannable node, | 73 void reportError(Spannable node, |
| 74 MessageKind errorCode, | 74 MessageKind errorCode, |
| 75 [Map arguments = const {}]) { | 75 [Map arguments = const {}]) { |
| 76 // TODO: implement reportError | 76 // TODO: implement reportError |
| 77 } | 77 } |
| 78 | 78 |
| 79 @override | 79 @override |
| 80 void reportFatalError(Spannable node, | |
|
Johnni Winther
2015/01/28 13:38:01
Cleanup.
| |
| 81 MessageKind errorCode, | |
| 82 [Map arguments = const {}]) { | |
| 83 // TODO: implement reportFatalError | |
| 84 } | |
| 85 | |
| 86 @override | |
| 87 void reportHint(Spannable node, | 80 void reportHint(Spannable node, |
| 88 MessageKind errorCode, | 81 MessageKind errorCode, |
| 89 [Map arguments = const {}]) { | 82 [Map arguments = const {}]) { |
| 90 // TODO: implement reportHint | 83 // TODO: implement reportHint |
| 91 } | 84 } |
| 92 | 85 |
| 93 @override | 86 @override |
| 94 void reportInfo(Spannable node, | 87 void reportInfo(Spannable node, |
| 95 MessageKind errorCode, | 88 MessageKind errorCode, |
| 96 [Map arguments = const {}]) { | 89 [Map arguments = const {}]) { |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 107 @override | 100 @override |
| 108 spanFromSpannable(Spannable node) { | 101 spanFromSpannable(Spannable node) { |
| 109 // TODO: implement spanFromSpannable | 102 // TODO: implement spanFromSpannable |
| 110 } | 103 } |
| 111 | 104 |
| 112 @override | 105 @override |
| 113 withCurrentElement(element, f()) { | 106 withCurrentElement(element, f()) { |
| 114 // TODO: implement withCurrentElement | 107 // TODO: implement withCurrentElement |
| 115 } | 108 } |
| 116 } | 109 } |
| OLD | NEW |