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

Side by Side Diff: runtime/lib/error.dart

Issue 11092014: Include method name in NoSuchMethodError.toString(). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // Errors are created and thrown by DartVM only. 4 // Errors are created and thrown by DartVM only.
5 // Changes here should also be reflected in corelib/error.dart as well 5 // Changes here should also be reflected in corelib/error.dart as well
6 6
7 class AssertionErrorImplementation implements AssertionError { 7 class AssertionErrorImplementation implements AssertionError {
8 factory AssertionErrorImplementation._uninstantiable() { 8 factory AssertionErrorImplementation._uninstantiable() {
9 throw const UnsupportedOperationException( 9 throw const UnsupportedOperationException(
10 "AssertionError can only be allocated by the VM"); 10 "AssertionError can only be allocated by the VM");
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 } 91 }
92 92
93 93
94 // TODO(regis): This class will change once mirrors are available. 94 // TODO(regis): This class will change once mirrors are available.
95 class NoSuchMethodErrorImplementation implements NoSuchMethodError { 95 class NoSuchMethodErrorImplementation implements NoSuchMethodError {
96 factory NoSuchMethodErrorImplementation._uninstantiable() { 96 factory NoSuchMethodErrorImplementation._uninstantiable() {
97 throw const UnsupportedOperationException( 97 throw const UnsupportedOperationException(
98 "NoSuchMethodError can only be allocated by the VM"); 98 "NoSuchMethodError can only be allocated by the VM");
99 } 99 }
100 100
101 String toString() => "No such method: url '$url' line $line " 101 String toString() => "No such method: '$functionName', url '$url' line $line "
102 "pos $column\n$failedResolutionLine\n"; 102 "pos $column\n$failedResolutionLine\n";
103 103
104 static _throwNew(int call_pos, String functionName) 104 static _throwNew(int call_pos, String functionName)
105 native "NoSuchMethodError_throwNew"; 105 native "NoSuchMethodError_throwNew";
106 106
107 final String functionName; 107 final String functionName;
108 final String failedResolutionLine; 108 final String failedResolutionLine;
109 final String url; 109 final String url;
110 final int line; 110 final int line;
111 final int column; 111 final int column;
(...skipping 13 matching lines...) Expand all
125 125
126 String toString() { 126 String toString() {
127 return "Cannot instantiate abstract class $className: " 127 return "Cannot instantiate abstract class $className: "
128 "url '$url' line $line"; 128 "url '$url' line $line";
129 } 129 }
130 130
131 final String className; 131 final String className;
132 final String url; 132 final String url;
133 final int line; 133 final int line;
134 } 134 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698