summaryrefslogtreecommitdiffstats
path: root/js/src/gdb/tests/test-JSObject.cpp
blob: b1780a73329caa27669a2aaa374cce3e41a2a3d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "gdb-tests.h"
#include "jsapi.h"
#include "js/GlobalObject.h"
#include "js/Object.h"  // JS::GetClass

FRAGMENT(JSObject, simple) {
  JS::Rooted<JSObject*> glob(cx, JS::CurrentGlobalOrNull(cx));
  JS::Rooted<JSObject*> plain(cx, JS_NewPlainObject(cx));
  JS::Rooted<JSObject*> objectProto(cx, JS::GetRealmObjectPrototype(cx));
  JS::Rooted<JSObject*> global(cx, JS::CurrentGlobalOrNull(cx));
  JS::Rooted<JSObject*> func(
      cx, (JSObject*)JS_NewFunction(cx, (JSNative)1, 0, 0, "dys"));
  JS::Rooted<JSObject*> anon(
      cx, (JSObject*)JS_NewFunction(cx, (JSNative)1, 0, 0, nullptr));
  JS::Rooted<JSFunction*> funcPtr(
      cx, JS_NewFunction(cx, (JSNative)1, 0, 0, "formFollows"));

  // JS_NewObject will now assert if you feed it a bad class name, so mangle
  // the name after construction.
  char namebuf[20] = "goodname";
  static JSClass cls{namebuf};
  JS::RootedObject badClassName(cx, JS_NewObject(cx, &cls));
  MOZ_RELEASE_ASSERT(badClassName);
  strcpy(namebuf, "\xc7X");

  JSObject& plainRef = *plain;
  JSFunction& funcRef = *funcPtr;
  JSObject* plainRaw = plain;
  JSObject* funcRaw = func;

  breakpoint();

  use(glob);
  use(plain);
  use(objectProto);
  use(func);
  use(anon);
  use(funcPtr);
  use(&plainRef);
  use(&funcRef);
  use(JS::GetClass((JSObject*)&funcRef));
  use(plainRaw);
  use(funcRaw);
}

FRAGMENT(JSObject, null) {
  JS::Rooted<JSObject*> null(cx, nullptr);
  JSObject* nullRaw = null;

  breakpoint();

  use(null);
  use(nullRaw);
}