mirror of
https://github.com/tc39/test262.git
synced 2025-05-28 02:30:29 +02:00
sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
23 lines
607 B
JavaScript
23 lines
607 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
function Module(stdlib, imports, buffer) {
|
|
"use asm";
|
|
var x = new stdlib.Int8Array(buffer);
|
|
function f() {
|
|
return x[0] | 0;
|
|
}
|
|
return { f:f };
|
|
}
|
|
|
|
var b = new ArrayBuffer(1024);
|
|
var m1 = Module({ Int8Array:Int8Array }, {}, b);
|
|
assertEquals(0, m1.f());
|
|
|
|
var was_called = 0;
|
|
function observer() { was_called++; return [23]; }
|
|
var m2 = Module({ Int8Array:observer }, {}, b);
|
|
assertEquals(1, was_called);
|
|
assertEquals(23, m2.f());
|