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

📄 lookup.h

📁 kaffe Java 解释器语言,源码,Java的子集系统,开放源代码
💻 H
字号:
/* * lookup.h * Various lookup calls for resolving objects, methods, exceptions, etc. * * Copyright (c) 1996, 1997 *	Transvirtual Technologies, Inc.  All rights reserved. * * See the file "license.terms" for information on usage and redistribution  * of this file.  */#ifndef __lookup_h#define __lookup_hstruct _dispatchTable;typedef struct _callInfo {	Hjava_lang_Class*	class;	Method*			method;	short			in;	short			out;	Utf8Const*		cname;	Utf8Const*		name;	Utf8Const*		signature;	char			rettype;} callInfo;typedef struct _exceptionInfo {	uintp			handler;	Hjava_lang_Class*	class;	Method*			method;} exceptionInfo;typedef struct _fieldInfo {	Field*			field;	Hjava_lang_Class*	class;	Utf8Const*		cname;	Utf8Const*		name;	Utf8Const*		signature;} fieldInfo;bool	getMethodSignatureClass(constIndex, Hjava_lang_Class*, bool, int, callInfo*, errorInfo*);bool	getField(constIndex, Hjava_lang_Class*, bool, fieldInfo*, errorInfo*);Hjava_lang_Class* getClass(constIndex, Hjava_lang_Class*, errorInfo*);Method* findMethod(Hjava_lang_Class*, Utf8Const*, Utf8Const*, errorInfo*);Method* findMethodLocal(Hjava_lang_Class*, Utf8Const*, Utf8Const*);#endif

⌨️ 快捷键说明

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