⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webscriptobjectprivate.h

📁 It is Java script interpreter for Nokia browser with source code
💻 H
字号:
/*
    Copyright (C) 2004 Apple Computer, Inc. All rights reserved.    
*/
#ifndef _WEB_SCRIPT_OBJECT_PRIVATE_H_
#define _WEB_SCRIPT_OBJECT_PRIVATE_H_

#import <JavaScriptCore/WebScriptObject.h>

#include <JavaScriptCore/internal.h>
#include <JavaScriptCore/list.h>
#include <JavaScriptCore/object.h>
#include <JavaScriptCore/runtime_root.h>
#include <JavaScriptCore/value.h>

@interface WebScriptObject (Private)
+ (id)_convertValueToObjcValue:(KJS::Value)value root:(const KJS::Bindings::RootObject *)root;
- _init;
- _initWithObjectImp:(KJS::ObjectImp *)imp root:(const KJS::Bindings::RootObject *)root;
- (void)_initializeWithObjectImp:(KJS::ObjectImp *)imp root:(const KJS::Bindings::RootObject *)root;
- (void)_initializeScriptDOMNodeImp;
- (KJS::ObjectImp *)_imp;
- (const KJS::Bindings::RootObject *)_executionContext;
@end

@interface WebScriptObjectPrivate : NSObject
{
    KJS::ObjectImp *imp;
    const KJS::Bindings::RootObject *root;
    BOOL isCreatedByDOMWrapper;
}
@end


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -