chromium/v8/src/runtime/runtime-numbers.cc

// Copyright 2014 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.

#include "src/execution/arguments-inl.h"
#include "src/execution/isolate-inl.h"
#include "src/heap/heap-inl.h"  // For ToBoolean. TODO(jkummerow): Drop.

namespace v8 {
namespace internal {

RUNTIME_FUNCTION(Runtime_StringToNumber) {}


// ES6 18.2.5 parseInt(string, radix) slow path
RUNTIME_FUNCTION(Runtime_StringParseInt) {}


// ES6 18.2.4 parseFloat(string)
RUNTIME_FUNCTION(Runtime_StringParseFloat) {}

RUNTIME_FUNCTION(Runtime_NumberToStringSlow) {}

RUNTIME_FUNCTION(Runtime_MaxSmi) {}


RUNTIME_FUNCTION(Runtime_IsSmi) {}


RUNTIME_FUNCTION(Runtime_GetHoleNaNUpper) {}


RUNTIME_FUNCTION(Runtime_GetHoleNaNLower) {}

}  // namespace internal
}  // namespace v8