Chromium Code Reviews

Unified Diff: runtime/lib/string_buffer_patch.dart

Issue 22685007: Implement updated method overriding rules in the vm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: runtime/lib/string_buffer_patch.dart
===================================================================
--- runtime/lib/string_buffer_patch.dart (revision 25979)
+++ runtime/lib/string_buffer_patch.dart (working copy)
@@ -47,7 +47,7 @@
_length += str.length;
}
- /* patch */ writeCharCode(int charCode) {
+ /* patch */ void writeCharCode(int charCode) {
if (charCode <= 0xFFFF) {
if (charCode < 0) {
throw new RangeError.range(charCode, 0, 0x10FFFF);

Powered by Google App Engine