91b0f16663
Closes https://github.com/dart-lang/sdk/issues/43711 Change-Id: I7628e4a6192efb26a12f8051b4fa87dfafabab9c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/180960 Reviewed-by: Régis Crelier <regis@google.com> Commit-Queue: Alexander Markov <alexmarkov@google.com>
13 lines
494 B
Dart
13 lines
494 B
Dart
// Copyright (c) 2012, 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 sample_synchronous_extension;
|
|
|
|
import 'dart-ext:sample_extension';
|
|
|
|
// The simplest way to call native code: top-level functions.
|
|
int systemRand() native "SystemRand";
|
|
int noScopeSystemRand() native "NoScopeSystemRand";
|
|
bool systemSrand(int seed) native "SystemSrand";
|