chromium/v8/src/runtime/runtime-operators.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.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_Add) {}


RUNTIME_FUNCTION(Runtime_Equal) {}

RUNTIME_FUNCTION(Runtime_NotEqual) {}

RUNTIME_FUNCTION(Runtime_StrictEqual) {}

RUNTIME_FUNCTION(Runtime_StrictNotEqual) {}

RUNTIME_FUNCTION(Runtime_ReferenceEqual) {}

RUNTIME_FUNCTION(Runtime_LessThan) {}

RUNTIME_FUNCTION(Runtime_GreaterThan) {}

RUNTIME_FUNCTION(Runtime_LessThanOrEqual) {}

RUNTIME_FUNCTION(Runtime_GreaterThanOrEqual) {}

}  // namespace internal
}  // namespace v8