chromium/v8/src/runtime/runtime-proxy.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/factory.h"
#include "src/heap/heap-inl.h"  // For ToBoolean. TODO(jkummerow): Drop.
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {

RUNTIME_FUNCTION(Runtime_IsJSProxy) {}

RUNTIME_FUNCTION(Runtime_JSProxyGetHandler) {}

RUNTIME_FUNCTION(Runtime_JSProxyGetTarget) {}

RUNTIME_FUNCTION(Runtime_GetPropertyWithReceiver) {}

RUNTIME_FUNCTION(Runtime_SetPropertyWithReceiver) {}

RUNTIME_FUNCTION(Runtime_CheckProxyGetSetTrapResult) {}

RUNTIME_FUNCTION(Runtime_CheckProxyHasTrapResult) {}

RUNTIME_FUNCTION(Runtime_CheckProxyDeleteTrapResult) {}

}  // namespace internal
}  // namespace v8