Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: pkg/analyzer2dart/lib/src/dart_backend.dart

Issue 867233004: Support constructor declarations in analyzer2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698