summaryrefslogtreecommitdiffstats
path: root/js/src/gdb/tests/test-JSSymbol.cpp
blob: 933f3075ca6f6c22eabf696af5cab9b05b17ae7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "gdb-tests.h"
#include "jsapi.h"

FRAGMENT(JSSymbol, simple) {
  using namespace JS;

  RootedString hello(cx, JS_NewStringCopyZ(cx, "Hello!"));

  Rooted<Symbol*> unique(cx, NewSymbol(cx, nullptr));
  Rooted<Symbol*> unique_with_desc(cx, NewSymbol(cx, hello));
  Rooted<Symbol*> registry(cx, GetSymbolFor(cx, hello));
  Rooted<Symbol*> well_known(cx, GetWellKnownSymbol(cx, SymbolCode::iterator));

  breakpoint();

  (void) unique;
  (void) unique_with_desc;
  (void) registry;
  (void) well_known;
}