OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 library test.kernel.closures.suite; | 5 library test.kernel.closures.suite; |
6 | 6 |
7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
8 | 8 |
9 import 'dart:io' show File; | 9 import 'dart:io' show File; |
10 | 10 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 class FastaCompile extends Step<TestDescription, Program, InterpreterContext> { | 74 class FastaCompile extends Step<TestDescription, Program, InterpreterContext> { |
75 const FastaCompile(); | 75 const FastaCompile(); |
76 | 76 |
77 String get name => "fasta compile"; | 77 String get name => "fasta compile"; |
78 | 78 |
79 Future<Result<Program>> run( | 79 Future<Result<Program>> run( |
80 TestDescription description, InterpreterContext context) async { | 80 TestDescription description, InterpreterContext context) async { |
81 Program platform = await context.loadPlatform(); | 81 Program platform = await context.loadPlatform(); |
82 Ticker ticker = new Ticker(); | 82 Ticker ticker = new Ticker(); |
83 DillTarget dillTarget = | 83 DillTarget dillTarget = new DillTarget(ticker, context.uriTranslator, "vm"); |
84 new DillTarget(ticker, context.uriTranslator, "vm_fasta"); | |
85 platform.unbindCanonicalNames(); | 84 platform.unbindCanonicalNames(); |
86 dillTarget.loader.appendLibraries(platform); | 85 dillTarget.loader.appendLibraries(platform); |
87 KernelTarget sourceTarget = new KernelTarget(PhysicalFileSystem.instance, | 86 KernelTarget sourceTarget = new KernelTarget(PhysicalFileSystem.instance, |
88 dillTarget, context.uriTranslator, context.strongMode); | 87 dillTarget, context.uriTranslator, context.strongMode); |
89 | 88 |
90 Program p; | 89 Program p; |
91 try { | 90 try { |
92 sourceTarget.read(description.uri); | 91 sourceTarget.read(description.uri); |
93 await dillTarget.buildOutlines(); | 92 await dillTarget.buildOutlines(); |
94 await sourceTarget.buildOutlines(); | 93 await sourceTarget.buildOutlines(); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 final Uri uri; | 153 final Uri uri; |
155 | 154 |
156 /// Evaluated program log. | 155 /// Evaluated program log. |
157 final String log; | 156 final String log; |
158 | 157 |
159 EvaluationLog(this.uri, this.log); | 158 EvaluationLog(this.uri, this.log); |
160 } | 159 } |
161 | 160 |
162 main(List<String> arguments) => | 161 main(List<String> arguments) => |
163 runMe(arguments, InterpreterContext.create, "testing.json"); | 162 runMe(arguments, InterpreterContext.create, "testing.json"); |
OLD | NEW |