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

Unified Diff: pkg/front_end/test/fasta/sdk_test.dart

Issue 2726843003: Rename FeContext to FastaContext. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/test/fasta/outline_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/fasta/sdk_test.dart
diff --git a/pkg/front_end/test/fasta/sdk_test.dart b/pkg/front_end/test/fasta/sdk_test.dart
index 9e770540e6c276fda92164bca3bfaae1c6963234..0480c676df66238c8669c1581ccadb24a7ddb88d 100644
--- a/pkg/front_end/test/fasta/sdk_test.dart
+++ b/pkg/front_end/test/fasta/sdk_test.dart
@@ -4,20 +4,18 @@
library fasta.test.compile_test;
-import 'dart:async' show
- Future;
+import 'dart:async' show Future;
import 'package:front_end/src/fasta/testing/suite.dart';
-import 'package:front_end/src/fasta/testing/kernel_chain.dart' show
- MatchExpectation;
+import 'package:front_end/src/fasta/testing/kernel_chain.dart'
+ show MatchExpectation;
-Future<FeContext> createContext(
+Future<FastaContext> createContext(
Chain suite, Map<String, String> environment) async {
environment[ENABLE_FULL_COMPILE] = "";
environment[AST_KIND_INDEX] = "${AstKind.Kernel.index}";
- FeContext context =
- await TestContext.create(suite, environment, FeContext.create);
+ FastaContext context = await FastaContext.create(suite, environment);
int index;
for (int i = 0; i < context.steps.length; i++) {
if (context.steps[i] is MatchExpectation) {
« no previous file with comments | « pkg/front_end/test/fasta/outline_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698