hookup new messages
This commit is contained in:
rginda%netscape.com 2001-09-01 18:39:01 +00:00
Родитель ac2ee4ef5b
Коммит 90e4e95266
1 изменённых файлов: 17 добавлений и 1 удалений

Просмотреть файл

@ -94,7 +94,7 @@ const exceptionMsgNames = ["err.notimplemented",
/* message values for non-parameterized messages */
const MSG_ERR_NO_STACK = getMsg("msg.err.nostack");
const MSG_ERR_NO_SOURCE = getMsg("msg.err.nosource");
const MSG_ERR_CANT_CLOSE = getMsg("msg.err.cant.close");
const MSG_ERR_CANT_CLOSE = getMsg("msg.err.cant.close");
const MSG_TYPE_BOOLEAN = getMsg("msg.type.boolean");
const MSG_TYPE_DOUBLE = getMsg("msg.type.double");
@ -107,7 +107,12 @@ const MSG_TYPE_UNKNOWN = getMsg("msg.type.unknown");
const MSG_TYPE_VOID = getMsg("msg.type.void");
const MSG_CLASS_XPCOBJ = getMsg("msg.class.xpcobj");
const MSG_BREAK_REC = getMsg("msg.break.rec");
const MSG_CALL_STACK = getMsg("msg.callstack");
const MSG_WORD_NATIVE = getMsg("msg.val.native");
const MSG_WORD_SCRIPT = getMsg("msg.val.script");
const MSG_WORD_THIS = getMsg("msg.val.this");
const MSG_WORD_BREAKPOINT = getMsg("msg.val.breakpoint");
const MSG_WORD_DEBUG = getMsg("msg.val.debug");
const MSG_WORD_DEBUGGER = getMsg("msg.val.debugger");
@ -120,9 +125,12 @@ const MSG_VAL_UNKNOWN = getMsg("msg.val.unknown");
const MSG_VAL_NA = getMsg("msg.val.na");
const MSG_VAL_OBJECT = getMsg("msg.val.object");
const MSG_VAL_EXPR = getMsg("msg.val.expression");
const MSG_VAL_PROTO = getMsg("msg.val.proto");
const MSG_VAL_PARENT = getMsg("msg.val.parent");
const MSG_VAL_EXCEPTION = getMsg("msg.val.exception");
const MSG_VAL_ON = getMsg("msg.val.on");
const MSG_VAL_OFF = getMsg("msg.val.off");
const MSG_VAL_TLSCRIPT = getMsg("msg.val.tlscript");
const MSG_VF_ENUMERABLE = getMsg("vf.enumerable");
const MSG_VF_READONLY = getMsg("vf.readonly");
@ -166,12 +174,18 @@ const CMD_FBREAK_HELP = getMsg("cmd.fbreak.help");
const CMD_FCLEAR = getMsg("cmd.fclear");
const CMD_FCLEAR_PARAMS = getMsg("cmd.fclear.params");
const CMD_FCLEAR_HELP = getMsg("cmd.fclear.help");
const CMD_FINISH = getMsg("cmd.finish");
const CMD_FINISH_PARAMS = getMsg("cmd.finish.params");
const CMD_FINISH_HELP = getMsg("cmd.finish.help");
const CMD_FRAME = getMsg("cmd.frame");
const CMD_FRAME_PARAMS = getMsg("cmd.frame.params");
const CMD_FRAME_HELP = getMsg("cmd.frame.help");
const CMD_HELP = getMsg("cmd.help");
const CMD_HELP_PARAMS = getMsg("cmd.help.params");
const CMD_HELP_HELP = getMsg("cmd.help.help");
const CMD_NEXT = getMsg("cmd.next");
const CMD_NEXT_PARAMS = getMsg("cmd.next.params");
const CMD_NEXT_HELP = getMsg("cmd.next.help");
const CMD_PROPS = getMsg("cmd.props");
const CMD_PROPS_PARAMS = getMsg("cmd.props.params");
const CMD_PROPS_HELP = getMsg("cmd.props.help");
@ -218,6 +232,7 @@ const MSN_FMT_OBJECT = "fmt.object";
const MSN_FMT_JSEXCEPTION = "fmt.jsexception";
const MSN_FMT_BADMOJO = "fmt.badmojo";
const MSN_FMT_TMP_ASSIGN = "fmt.tmp.assign";
const MSN_FMT_LONGSTR = "fmt.longstr";
const MSN_NO_PROPERTIES = "msg.noproperties";
const MSN_NO_CMDMATCH = "msg.no-commandmatch";
@ -229,6 +244,7 @@ const MSN_BP_HEADER = "msg.bp.header";
const MSN_BP_LINE = "msg.bp.line";
const MSN_BP_CREATED = "msg.bp.created";
const MSN_BP_DISABLED = "msg.bp.disabled";
const MSN_BP_CLEARED = "msg.bp.cleared";
const MSN_BP_EXISTS = "msg.bp.exists";
const MSN_FBP_HEADER = "msg.fbp.header";
const MSN_FBP_LINE = "msg.fbp.line";