From 7f44bb89a73ce4cfb55bac2333478ee73edaae1e Mon Sep 17 00:00:00 2001 From: mahaifeng Date: Wed, 3 Jul 2024 16:02:55 +0800 Subject: [PATCH] =?UTF-8?q?[array-buffer]=E4=BF=AE=E6=94=B9=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-tests/utssdk/ArrayBuffer.uts | 20 +++++++++---------- .../utssdk/{TDataView.js => TDataView.uts} | 0 .../{TFloat32Array.js => TFloat32Array.uts} | 0 .../{TFloat64Array.js => TFloat64Array.uts} | 0 .../{TInt16Array.js => TInt16Array.uts} | 0 .../{TInt32Array.js => TInt32Array.uts} | 0 .../utssdk/{TInt8Array.js => TInt8Array.uts} | 0 .../{TUInt8Array.js => TUInt8Array.uts} | 0 ...ClampedArray.js => TUInt8ClampedArray.uts} | 0 .../{TUint16Array.js => TUint16Array.uts} | 0 .../{TUint32Array.js => TUint32Array.uts} | 0 11 files changed, 10 insertions(+), 10 deletions(-) rename uni_modules/uts-tests/utssdk/{TDataView.js => TDataView.uts} (100%) rename uni_modules/uts-tests/utssdk/{TFloat32Array.js => TFloat32Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TFloat64Array.js => TFloat64Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TInt16Array.js => TInt16Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TInt32Array.js => TInt32Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TInt8Array.js => TInt8Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TUInt8Array.js => TUInt8Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TUInt8ClampedArray.js => TUInt8ClampedArray.uts} (100%) rename uni_modules/uts-tests/utssdk/{TUint16Array.js => TUint16Array.uts} (100%) rename uni_modules/uts-tests/utssdk/{TUint32Array.js => TUint32Array.uts} (100%) diff --git a/uni_modules/uts-tests/utssdk/ArrayBuffer.uts b/uni_modules/uts-tests/utssdk/ArrayBuffer.uts index f323bb5..2f66bd1 100644 --- a/uni_modules/uts-tests/utssdk/ArrayBuffer.uts +++ b/uni_modules/uts-tests/utssdk/ArrayBuffer.uts @@ -1,14 +1,14 @@ import { describe, test, expect, Result } from './tests.uts' -import { TDataView } from './TDataView.js' -import { TFloat32Array } from './TFloat32Array.js' -import { TFloat64Array } from './TFloat64Array.js' -import { TInt8Array } from './TInt8Array.js' -import { TInt16Array } from './TInt16Array.js' -import { TInt32Array } from './TInt32Array.js' -import { TUint8Array } from './TUint8Array.js' -import { TUint8ClampedArray } from './TUint8ClampedArray.js' -import { TUint16Array } from './TUint16Array.js' -import { TUint32Array } from './TUint32Array.js' +import { TDataView } from './TDataView.uts' +import { TFloat32Array } from './TFloat32Array.uts' +import { TFloat64Array } from './TFloat64Array.uts' +import { TInt8Array } from './TInt8Array.uts' +import { TInt16Array } from './TInt16Array.uts' +import { TInt32Array } from './TInt32Array.uts' +import { TUint8Array } from './TUint8Array.uts' +import { TUint8ClampedArray } from './TUint8ClampedArray.uts' +import { TUint16Array } from './TUint16Array.uts' +import { TUint32Array } from './TUint32Array.uts' const tDataView = new TDataView(); const float32 = new TFloat32Array(); diff --git a/uni_modules/uts-tests/utssdk/TDataView.js b/uni_modules/uts-tests/utssdk/TDataView.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TDataView.js rename to uni_modules/uts-tests/utssdk/TDataView.uts diff --git a/uni_modules/uts-tests/utssdk/TFloat32Array.js b/uni_modules/uts-tests/utssdk/TFloat32Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TFloat32Array.js rename to uni_modules/uts-tests/utssdk/TFloat32Array.uts diff --git a/uni_modules/uts-tests/utssdk/TFloat64Array.js b/uni_modules/uts-tests/utssdk/TFloat64Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TFloat64Array.js rename to uni_modules/uts-tests/utssdk/TFloat64Array.uts diff --git a/uni_modules/uts-tests/utssdk/TInt16Array.js b/uni_modules/uts-tests/utssdk/TInt16Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TInt16Array.js rename to uni_modules/uts-tests/utssdk/TInt16Array.uts diff --git a/uni_modules/uts-tests/utssdk/TInt32Array.js b/uni_modules/uts-tests/utssdk/TInt32Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TInt32Array.js rename to uni_modules/uts-tests/utssdk/TInt32Array.uts diff --git a/uni_modules/uts-tests/utssdk/TInt8Array.js b/uni_modules/uts-tests/utssdk/TInt8Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TInt8Array.js rename to uni_modules/uts-tests/utssdk/TInt8Array.uts diff --git a/uni_modules/uts-tests/utssdk/TUInt8Array.js b/uni_modules/uts-tests/utssdk/TUInt8Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TUInt8Array.js rename to uni_modules/uts-tests/utssdk/TUInt8Array.uts diff --git a/uni_modules/uts-tests/utssdk/TUInt8ClampedArray.js b/uni_modules/uts-tests/utssdk/TUInt8ClampedArray.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TUInt8ClampedArray.js rename to uni_modules/uts-tests/utssdk/TUInt8ClampedArray.uts diff --git a/uni_modules/uts-tests/utssdk/TUint16Array.js b/uni_modules/uts-tests/utssdk/TUint16Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TUint16Array.js rename to uni_modules/uts-tests/utssdk/TUint16Array.uts diff --git a/uni_modules/uts-tests/utssdk/TUint32Array.js b/uni_modules/uts-tests/utssdk/TUint32Array.uts similarity index 100% rename from uni_modules/uts-tests/utssdk/TUint32Array.js rename to uni_modules/uts-tests/utssdk/TUint32Array.uts -- GitLab