Improve the evaluate requests (#2583)

Currently it evaluates the given expression in the context of the top most stack frame.
The expression should access to any variables and arguments that are in the scope chain.
Implement the eval_at request with the level of the scope chain as a further argument.

JerryScript-DCO-1.0-Signed-off-by: Robert Sipka rsipka.uszeged@partner.samsung.com
This commit is contained in:
Robert Sipka
2018-11-15 15:53:10 +01:00
committed by GitHub
parent 6c4b316609
commit 47fa5904b1
10 changed files with 170 additions and 13 deletions
+23
View File
@@ -171,6 +171,29 @@ class DebuggerPrompt(Cmd):
self.stop = True
do_e = do_eval
def do_eval_at(self, args):
""" Evaluate JavaScript source code at a scope chain level """
code = ''
index = 0
try:
args = args.split(" ", 1)
index = int(args[0])
if len(args) == 2:
code = args[1]
if index < 0 or index > 65535:
raise ValueError("Invalid scope chain index: %d (must be between 0 and 65535)" % index)
except ValueError as val_errno:
print("Error: %s" % (val_errno))
return
self.debugger.eval_at(code, index)
self.stop = True
def do_memstats(self, _):
""" Memory statistics """
self.debugger.memstats()
+14 -3
View File
@@ -24,7 +24,7 @@ import struct
import sys
# Expected debugger protocol version.
JERRY_DEBUGGER_VERSION = 7
JERRY_DEBUGGER_VERSION = 8
# Messages sent by the server to client.
JERRY_DEBUGGER_CONFIGURATION = 1
@@ -553,6 +553,10 @@ class JerryDebugger(object):
self._send_string(JERRY_DEBUGGER_EVAL_EVAL + code, JERRY_DEBUGGER_EVAL)
self.prompt = False
def eval_at(self, code, index):
self._send_string(JERRY_DEBUGGER_EVAL_EVAL + code, JERRY_DEBUGGER_EVAL, index)
self.prompt = False
def throw(self, code):
self._send_string(JERRY_DEBUGGER_EVAL_THROW + code, JERRY_DEBUGGER_EVAL)
self.prompt = False
@@ -587,12 +591,18 @@ class JerryDebugger(object):
return "Stop at exception disabled\n"
def _send_string(self, args, message_type):
size = len(args)
def _send_string(self, args, message_type, index=0):
# 1: length of type byte
# 4: length of an uint32 value
message_header = 1 + 4
# Add scope chain index
if message_type == JERRY_DEBUGGER_EVAL:
args = struct.pack(self.byte_order + "I", index) + args
size = len(args)
max_fragment = min(self.max_message_size - message_header, size)
message = struct.pack(self.byte_order + "BBIBI",
@@ -601,6 +611,7 @@ class JerryDebugger(object):
0,
message_type,
size)
if size == max_fragment:
self.send_message(message + args)
return