Home | History | Annotate | Download | only in src

Lines Matching full:exec_state

207 BreakPoint.prototype.isTriggered = function(exec_state) {
215 var mirror = exec_state.frame(0).evaluate(this.condition());
953 function MakeBreakEvent(exec_state, break_points_hit) {
954 return new BreakEvent(exec_state, break_points_hit);
958 function BreakEvent(exec_state, break_points_hit) {
959 this.exec_state_ = exec_state;
1037 function MakeExceptionEvent(exec_state, exception, uncaught) {
1038 return new ExceptionEvent(exec_state, exception, uncaught);
1042 function ExceptionEvent(exec_state, exception, uncaught) {
1043 this.exec_state_ = exec_state;
1115 function MakeCompileEvent(exec_state, script, before) {
1116 return new CompileEvent(exec_state, script, before);
1120 function CompileEvent(exec_state, script, before) {
1121 this.exec_state_ = exec_state;
1186 function MakeScriptCollectedEvent(exec_state, id) {
1187 return new ScriptCollectedEvent(exec_state, id);
1191 function ScriptCollectedEvent(exec_state, id) {
1192 this.exec_state_ = exec_state;
1234 function DebugCommandProcessor(exec_state, opt_is_running) {
1235 this.exec_state_ = exec_state;