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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/lib/core_patch.dart

Issue 12827018: Add a new implementation of HashMap that uses JS objects for its (multiple) hash tables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes. Created 7 years, 8 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) 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 4
5 // Patch file for dart:core classes. 5 // Patch file for dart:core classes.
6
7 import 'dart:_interceptors'; 6 import 'dart:_interceptors';
8 import 'dart:_js_helper' show checkNull, 7 import 'dart:_js_helper' show checkNull,
9 getRuntimeTypeString, 8 getRuntimeTypeString,
10 isJsArray, 9 isJsArray,
11 JSSyntaxRegExp, 10 JSSyntaxRegExp,
12 Primitives, 11 Primitives,
13 TypeImpl, 12 TypeImpl,
14 stringJoinUnchecked; 13 stringJoinUnchecked;
15 14
16 patch void print(var object) { 15 patch void print(var object) {
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 291
293 patch class StackTrace { 292 patch class StackTrace {
294 patch String get fullStackTrace { 293 patch String get fullStackTrace {
295 throw new UnsupportedError('fullStackTrace'); 294 throw new UnsupportedError('fullStackTrace');
296 } 295 }
297 296
298 patch String get stackTrace { 297 patch String get stackTrace {
299 throw new UnsupportedError('stackTrace'); 298 throw new UnsupportedError('stackTrace');
300 } 299 }
301 } 300 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698