From 0a8b97395914b430fa8fcc043cf74562909f285a Mon Sep 17 00:00:00 2001 From: Michael Thomsen Date: Fri, 19 Jan 2024 14:05:48 +0000 Subject: [PATCH] Remove explicit enable of inline class Change-Id: I77f42ccf07d18f1895333581a5c72bdf74a973bd Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/347300 Reviewed-by: Martin Kustermann Commit-Queue: Michael Thomsen --- pkg/dartdev/lib/src/commands/compile.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/dartdev/lib/src/commands/compile.dart b/pkg/dartdev/lib/src/commands/compile.dart index 3e4aa8980bf..7b915ad38dd 100644 --- a/pkg/dartdev/lib/src/commands/compile.dart +++ b/pkg/dartdev/lib/src/commands/compile.dart @@ -10,7 +10,6 @@ import 'package:dart2native/generate.dart'; import 'package:dart2wasm/generate_wasm.dart'; import 'package:front_end/src/api_prototype/compiler_options.dart' show Verbosity; -import 'package:front_end/src/api_unstable/vm.dart' as fe; import 'package:path/path.dart' as path; import 'package:vm/target_os.dart'; // For possible --target-os values. @@ -559,9 +558,6 @@ class CompileWasmCommand extends CompileSubcommandCommand { options.translatorOptions.importSharedMemory = true; options.translatorOptions.sharedMemoryMaxPages = maxPages; } - // Enable inline classes. - // TODO: Remove this when inline classe ship. - options.feExperimentalFlags = {fe.ExperimentalFlag.inlineClass: true}; int result; try {