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

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

Issue 10827180: Move types out of the HInstructions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Simplifications. Created 8 years, 4 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 // Test constant folding. 4 // Test constant folding.
5 5
6 #library("compiler_helper"); 6 #library("compiler_helper");
7 7
8 #import("dart:uri"); 8 #import("dart:uri");
9 #import("../../../lib/compiler/implementation/leg.dart", prefix: "leg"); 9 #import("../../../lib/compiler/implementation/leg.dart", prefix: "leg");
10 #import("../../../lib/compiler/implementation/elements/elements.dart", prefix: " lego"); 10 #import("../../../lib/compiler/implementation/elements/elements.dart", prefix: " lego");
11 #import('../../../lib/compiler/implementation/source_file.dart'); 11 #import('../../../lib/compiler/implementation/source_file.dart');
12 #import("../../../lib/compiler/implementation/ssa/ssa.dart", prefix: "ssa"); 12 #import("../../../lib/compiler/implementation/ssa/ssa.dart", prefix: "ssa");
13 #import("parser_helper.dart"); 13 #import("parser_helper.dart");
14 #import("mock_compiler.dart"); 14 #import("mock_compiler.dart");
15 15
16 String compile(String code, [String entry = 'main']) { 16 String compile(String code, [String entry = 'main']) {
17 MockCompiler compiler = new MockCompiler(); 17 MockCompiler compiler = new MockCompiler();
18 compiler.parseScript(code); 18 compiler.parseScript(code);
19 lego.Element element = compiler.mainApp.find(buildSourceString(entry)); 19 lego.Element element = compiler.mainApp.find(buildSourceString(entry));
20 if (element === null) return null; 20 if (element === null) return null;
21 compiler.processQueue(compiler.enqueuer.resolution, element); 21 compiler.processQueue(compiler.enqueuer.resolution, element);
22 leg.WorkItem work = new leg.WorkItem(element, null); 22 var context = new leg.JavaScriptItemCompilationContext();
23 leg.WorkItem work = new leg.WorkItem(element, null, context);
23 String generated = work.run(compiler, compiler.enqueuer.codegen); 24 String generated = work.run(compiler, compiler.enqueuer.codegen);
24 return generated; 25 return generated;
25 } 26 }
26 27
27 MockCompiler compilerFor(String code, Uri uri) { 28 MockCompiler compilerFor(String code, Uri uri) {
28 MockCompiler compiler = new MockCompiler(); 29 MockCompiler compiler = new MockCompiler();
29 compiler.sourceFiles[uri.toString()] = new SourceFile(uri.toString(), code); 30 compiler.sourceFiles[uri.toString()] = new SourceFile(uri.toString(), code);
30 return compiler; 31 return compiler;
31 } 32 }
32 33
(...skipping 26 matching lines...) Expand all
59 String generated = compile(code, entry); 60 String generated = compile(code, entry);
60 Expect.isTrue(regexp.hasMatch(generated), 61 Expect.isTrue(regexp.hasMatch(generated),
61 '"$generated" does not match /$regexp/'); 62 '"$generated" does not match /$regexp/');
62 } 63 }
63 64
64 void compileAndDoNotMatch(String code, String entry, RegExp regexp) { 65 void compileAndDoNotMatch(String code, String entry, RegExp regexp) {
65 String generated = compile(code, entry); 66 String generated = compile(code, entry);
66 Expect.isFalse(regexp.hasMatch(generated), 67 Expect.isFalse(regexp.hasMatch(generated),
67 '"$generated" has a match in /$regexp/'); 68 '"$generated" has a match in /$regexp/');
68 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698