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

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

Issue 12051013: Cleanup how we handle side effects in HInstruction and put the right flags for HIs, modulo, truncat… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | « tests/compiler/dart2js/gvn_test.dart ('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:collection'; 7 import 'dart:collection';
8 import 'dart:uri'; 8 import 'dart:uri';
9 9
10 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api; 10 import '../../../sdk/lib/_internal/compiler/compiler.dart' as api;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 operator <<(other) {} 76 operator <<(other) {}
77 operator >>(other) {} 77 operator >>(other) {}
78 operator |(other) {} 78 operator |(other) {}
79 operator &(other) {} 79 operator &(other) {}
80 operator ^(other) {} 80 operator ^(other) {}
81 operator >(other) {} 81 operator >(other) {}
82 operator >=(other) {} 82 operator >=(other) {}
83 operator <(other) {} 83 operator <(other) {}
84 operator <=(other) {} 84 operator <=(other) {}
85 operator ==(other) {} 85 operator ==(other) {}
86 operator %(other) {}
86 } 87 }
87 class JSInt { 88 class JSInt {
88 } 89 }
89 class JSDouble { 90 class JSDouble {
90 } 91 }
91 class JSNull { 92 class JSNull {
92 } 93 }
93 class JSBool { 94 class JSBool {
94 } 95 }
95 class JSFunction { 96 class JSFunction {
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 operator []=(Node node, Element element) { 330 operator []=(Node node, Element element) {
330 map[node] = element; 331 map[node] = element;
331 } 332 }
332 333
333 operator [](Node node) => map[node]; 334 operator [](Node node) => map[node];
334 335
335 void remove(Node node) { 336 void remove(Node node) {
336 map.remove(node); 337 map.remove(node);
337 } 338 }
338 } 339 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/gvn_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698