dart-sdk/tests/lib/mirrors/invoke_natives_malicious_test.dart
Ryan Macnak 8ed772d37f Reland "[vm] Fix some further mirror breaks with frontend NNBD checks enabled."
Without loadLibrary()! changes.

Change-Id: I78806547ac62fa806e99eb2d5e3f2041f20ce942
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/139404
Reviewed-by: Régis Crelier <regis@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
2020-03-13 17:11:52 +00:00

29 lines
858 B
Dart

// Copyright (c) 2014, 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.
library test.invoke_natives;
import 'dart:mirrors';
import 'package:expect/expect.dart';
test(name, action) {
print(name);
Expect.throws(action, (e) => true, name);
print("done");
}
main() {
LibraryMirror dartcore = reflectClass(Object).owner as LibraryMirror;
test('List_copyFromObjectArray', () {
var receiver = new List<dynamic>.filled(3, null);
var selector = MirrorSystem.getSymbol('_copyFromObjectArray', dartcore);
var src = new List<dynamic>.filled(3, null);
var srcStart = 10;
var dstStart = 10;
var count = 10;
reflect(receiver).invoke(selector, [src, srcStart, dstStart, count]);
});
}