• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2015 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5var stdlib = this;
6var buffer = new ArrayBuffer(64 * 1024);
7var foreign = {}
8
9var foo = (function Module(stdlib, foreign, heap) {
10  "use asm";
11  function foo(i) {
12    var x = i ? (i&1) : true;
13    if (x) return x;
14    return false;
15  }
16  return {foo:foo};
17})(stdlib, foreign, buffer).foo;
18
19assertEquals(1, foo(1));
20