3d8829fad2
Change-Id: I84f8dbc174dbac5a11ca84e248c7aecb3759aaad Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/380283 Reviewed-by: Slava Egorov <vegorov@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com> Commit-Queue: Alexander Markov <alexmarkov@google.com>
13 lines
431 B
Dart
13 lines
431 B
Dart
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:dynamic_modules/dynamic_modules.dart' show loadModuleFromBytes;
|
|
|
|
main(List<String> args) {
|
|
final bytes = File(args[0]).readAsBytesSync();
|
|
return loadModuleFromBytes(bytes);
|
|
}
|