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

Side by Side Diff: tests/compiler/dart2js/mock_compiler.dart

Issue 11543017: Revert r16032: it revealed a bug in our bailout environment computation. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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 | « tests/co19/co19-dart2js.status ('k') | 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 4
5 library mock_compiler; 5 library mock_compiler;
6 6
7 import 'dart:uri'; 7 import 'dart:uri';
8 8
9 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api; 9 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api;
10 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' 10 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart'
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 boolConversionCheck(x) {} 44 boolConversionCheck(x) {}
45 abstract class JavaScriptIndexingBehavior {} 45 abstract class JavaScriptIndexingBehavior {}
46 class JSInvocationMirror {} 46 class JSInvocationMirror {}
47 S() {} 47 S() {}
48 assertHelper(a){} 48 assertHelper(a){}
49 throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {}'''; 49 throwNoSuchMethod(obj, name, arguments, expectedArgumentNames) {}''';
50 50
51 const String DEFAULT_INTERCEPTORSLIB = r''' 51 const String DEFAULT_INTERCEPTORSLIB = r'''
52 class JSArray { 52 class JSArray {
53 var length; 53 var length;
54 operator[](index) {}
55 } 54 }
56 class JSString { 55 class JSString {
57 var length; 56 var length;
58 } 57 }
59 class JSNumber { 58 class JSNumber {
60 } 59 }
61 class JSInt { 60 class JSInt {
62 } 61 }
63 class JSDouble { 62 class JSDouble {
64 } 63 }
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 operator []=(Node node, Element element) { 272 operator []=(Node node, Element element) {
274 map[node] = element; 273 map[node] = element;
275 } 274 }
276 275
277 operator [](Node node) => map[node]; 276 operator [](Node node) => map[node];
278 277
279 void remove(Node node) { 278 void remove(Node node) {
280 map.remove(node); 279 map.remove(node);
281 } 280 }
282 } 281 }
OLDNEW
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698