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

Side by Side Diff: dart/frog/leg/lib/js_helper.dart

Issue 9855018: Tweak corelib/ConstListLiteralTest while we wait for a resolution of CL 9839101. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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 | dart/tests/corelib/src/ConstListLiteralTest.dart » ('j') | 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 4
5 #library('js_helper'); 5 #library('js_helper');
6 6
7 #import('coreimpl.dart'); 7 #import('coreimpl.dart');
8 8
9 #source('constant_map.dart'); 9 #source('constant_map.dart');
10 #source('regexp_helper.dart'); 10 #source('regexp_helper.dart');
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 /** 1361 /**
1362 * Represents the type of Null. The compiler treats this specially. 1362 * Represents the type of Null. The compiler treats this specially.
1363 */ 1363 */
1364 class Null { 1364 class Null {
1365 factory Null() { 1365 factory Null() {
1366 throw new UnsupportedOperationException('new Null()'); 1366 throw new UnsupportedOperationException('new Null()');
1367 } 1367 }
1368 } 1368 }
1369 1369
1370 builtin$get$toString(receiver) => () => builtin$toString$0(receiver); 1370 builtin$get$toString(receiver) => () => builtin$toString$0(receiver);
1371
1372 builtin$copyFrom$4(receiver, arg1, arg2, arg3, arg4) {
1373 // TODO(ahe): Remove this method when CL 9839101 has landed.
1374 if (!isJsArray(receiver)) {
1375 return UNINTERCEPTED(receiver.copyFrom(arg1, arg2, arg3, arg4));
1376 }
1377 throw new UnsupportedOperationException('copyFrom');
1378 }
OLDNEW
« no previous file with comments | « no previous file | dart/tests/corelib/src/ConstListLiteralTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698