summaryrefslogtreecommitdiffstats
path: root/js/src/gdb/tests/test-jsop.cpp
blob: d92c8f0d2e0f04392146ed73ce8348dbc4b34b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "gdb-tests.h"

#include "vm/BytecodeUtil.h"

FRAGMENT(jsop, simple) {
  JSOp undefined = JSOp::Undefined;
  JSOp debugger = JSOp::Debugger;

  breakpoint();

  use(undefined);
  use(debugger);
}