2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-10-26 10:02:37 +02:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-10-26 10:02:37 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-10-26 10:02:37 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2011-10-26 10:02:37 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-10-26 10:02:37 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-10-26 10:02:37 +02:00
|
|
|
|
|
|
|
|
#ifndef QMLV8DEBUGGERCLIENTCONSTANTS_H
|
|
|
|
|
#define QMLV8DEBUGGERCLIENTCONSTANTS_H
|
|
|
|
|
|
|
|
|
|
namespace Debugger {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2011-12-07 09:38:40 +01:00
|
|
|
const char V8REQUEST[] = "v8request";
|
|
|
|
|
const char V8MESSAGE[] = "v8message";
|
2012-04-16 12:00:23 +02:00
|
|
|
const char BREAKONSIGNAL[] = "breakonsignal";
|
2011-12-07 09:38:40 +01:00
|
|
|
const char CONNECT[] = "connect";
|
|
|
|
|
const char INTERRUPT[] = "interrupt";
|
2011-10-26 10:02:37 +02:00
|
|
|
const char V8DEBUG[] = "V8DEBUG";
|
|
|
|
|
const char SEQ[] = "seq";
|
|
|
|
|
const char TYPE[] = "type";
|
|
|
|
|
const char COMMAND[] = "command";
|
|
|
|
|
const char ARGUMENTS[] = "arguments";
|
|
|
|
|
const char STEPACTION[] = "stepaction";
|
|
|
|
|
const char EXPRESSION[] = "expression";
|
|
|
|
|
const char FRAME[] = "frame";
|
|
|
|
|
const char GLOBAL[] = "global";
|
|
|
|
|
const char DISABLE_BREAK[] = "disable_break";
|
|
|
|
|
const char ADDITIONAL_CONTEXT[] = "additional_context";
|
|
|
|
|
const char HANDLES[] = "handles";
|
|
|
|
|
const char INCLUDESOURCE[] = "includeSource";
|
|
|
|
|
const char FROMFRAME[] = "fromFrame";
|
|
|
|
|
const char TOFRAME[] = "toFrame";
|
|
|
|
|
const char BOTTOM[] = "bottom";
|
|
|
|
|
const char NUMBER[] = "number";
|
|
|
|
|
const char FRAMENUMBER[] = "frameNumber";
|
|
|
|
|
const char TYPES[] = "types";
|
|
|
|
|
const char IDS[] = "ids";
|
|
|
|
|
const char FILTER[] = "filter";
|
|
|
|
|
const char FROMLINE[] = "fromLine";
|
|
|
|
|
const char TOLINE[] = "toLine";
|
|
|
|
|
const char TARGET[] = "target";
|
|
|
|
|
const char LINE[] = "line";
|
|
|
|
|
const char COLUMN[] = "column";
|
|
|
|
|
const char ENABLED[] = "enabled";
|
|
|
|
|
const char CONDITION[] = "condition";
|
|
|
|
|
const char IGNORECOUNT[] = "ignoreCount";
|
|
|
|
|
const char BREAKPOINT[] = "breakpoint";
|
|
|
|
|
const char FLAGS[] = "flags";
|
|
|
|
|
|
|
|
|
|
const char CONTINEDEBUGGING[] = "continue";
|
|
|
|
|
const char EVALUATE[] = "evaluate";
|
|
|
|
|
const char LOOKUP[] = "lookup";
|
|
|
|
|
const char BACKTRACE[] = "backtrace";
|
|
|
|
|
const char SCOPE[] = "scope";
|
|
|
|
|
const char SCRIPTS[] = "scripts";
|
|
|
|
|
const char SETBREAKPOINT[] = "setbreakpoint";
|
|
|
|
|
const char CLEARBREAKPOINT[] = "clearbreakpoint";
|
|
|
|
|
const char SETEXCEPTIONBREAK[] = "setexceptionbreak";
|
|
|
|
|
const char VERSION[] = "version";
|
|
|
|
|
const char DISCONNECT[] = "disconnect";
|
|
|
|
|
//const char PROFILE[] = "profile";
|
|
|
|
|
|
|
|
|
|
const char REQUEST[] = "request";
|
|
|
|
|
const char IN[] = "in";
|
|
|
|
|
const char NEXT[] = "next";
|
|
|
|
|
const char OUT[] = "out";
|
|
|
|
|
|
|
|
|
|
const char FUNCTION[] = "function";
|
2011-12-07 09:38:40 +01:00
|
|
|
const char SCRIPTREGEXP[] = "scriptRegExp";
|
2011-10-26 10:02:37 +02:00
|
|
|
const char EVENT[] = "event";
|
|
|
|
|
|
|
|
|
|
const char ALL[] = "all";
|
|
|
|
|
const char UNCAUGHT[] = "uncaught";
|
|
|
|
|
|
|
|
|
|
//const char PAUSE[] = "pause";
|
|
|
|
|
//const char RESUME[] = "resume";
|
|
|
|
|
|
|
|
|
|
const char HANDLE[] = "handle";
|
|
|
|
|
const char REF[] = "ref";
|
|
|
|
|
const char REFS[] = "refs";
|
|
|
|
|
const char BODY[] = "body";
|
|
|
|
|
const char NAME[] = "name";
|
|
|
|
|
const char VALUE[] = "value";
|
|
|
|
|
|
|
|
|
|
const char OBJECT[] = "{}";
|
|
|
|
|
const char ARRAY[] = "[]";
|
|
|
|
|
|
2012-04-06 11:03:33 +02:00
|
|
|
const char INTERNAL_FUNCTION[] = "(function(method) { "\
|
|
|
|
|
"return (function(object, data, qmlglobal) { "\
|
|
|
|
|
"return (function() { "\
|
|
|
|
|
"return method(object, data, qmlglobal, arguments.length, arguments); "\
|
|
|
|
|
"});"\
|
|
|
|
|
"});"\
|
|
|
|
|
"})";
|
2011-10-26 10:02:37 +02:00
|
|
|
} //Internal
|
|
|
|
|
} //Debugger
|
|
|
|
|
#endif // QMLV8DEBUGGERCLIENTCONSTANTS_H
|