Sha256: ecc9d19b28b3d093eae64936dc4e7be854282cc48f919671fb26c25198737898
Contents?: true
Size: 584 Bytes
Versions: 5
Compression:
Stored size: 584 Bytes
Contents
// Copyright 2006-2008 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(global, utils) { %CheckIsBootstrapping(); function MaxSimple(a, b) { return a > b ? a : b; } function MinSimple(a, b) { return a > b ? b : a; } %SetForceInlineFlag(MaxSimple); %SetForceInlineFlag(MinSimple); // ---------------------------------------------------------------------------- // Exports utils.Export(function(to) { to.MaxSimple = MaxSimple; to.MinSimple = MinSimple; }); })
Version data entries
5 entries across 5 versions & 1 rubygems