mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 01:50:55 +01:00
Typescript lint error fix (#243)
This commit is contained in:
parent
d42bfc9f63
commit
ddf0c4c2dc
4 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# `lune-std-ffi`
|
||||
|
||||
## Tests
|
||||
## Tests & Benchmarks
|
||||
|
||||
See [tests/ffi](../../tests/ffi/README.md)
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import { libSuffix } from "../../utility/deno.ts";
|
|||
import { get_clock, get_offset } from "../../utility/proc_clock/deno.ts";
|
||||
|
||||
const library_file = "./tests/ffi/benchmark/external_call/lib."+libSuffix;
|
||||
// @ts-ignore
|
||||
let library = Deno.dlopen(library_file, {
|
||||
add: {
|
||||
parameters: ["i32", "i32"],
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
export let libSuffix = "";
|
||||
// @ts-ignore
|
||||
switch (Deno.build.os) {
|
||||
case "windows":
|
||||
libSuffix = "dll";
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { libSuffix } from "../deno.ts";
|
||||
|
||||
const library_file = "./tests/ffi/utility/proc_clock/lib."+libSuffix;
|
||||
// @ts-ignore
|
||||
let library = Deno.dlopen(library_file, {
|
||||
sizeof_clock: {
|
||||
parameters: [],
|
||||
|
@ -10,6 +11,7 @@ let library = Deno.dlopen(library_file, {
|
|||
const sizeof_clock = library.symbols.sizeof_clock();
|
||||
const type_clock_t = "u" + (sizeof_clock * 8);
|
||||
library.close();
|
||||
// @ts-ignore
|
||||
library = Deno.dlopen(library_file, {
|
||||
get_clock: {
|
||||
parameters: [],
|
||||
|
|
Loading…
Add table
Reference in a new issue