Remove explicit enable of inline class

Change-Id: I77f42ccf07d18f1895333581a5c72bdf74a973bd
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/347300
Reviewed-by: Martin Kustermann <kustermann@google.com>
Commit-Queue: Michael Thomsen <mit@google.com>
This commit is contained in:
Michael Thomsen
2024-01-19 14:05:48 +00:00
committed by Commit Queue
parent 44e3fb8db5
commit 0a8b973959
@@ -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 {