summaryrefslogtreecommitdiffstats
path: root/js/src/gdb/tests/enum-printers.py
blob: ff2c088dc8abdf7c220a2c5b3d486b95c079929d (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
# Test that we can find pretty-printers for enums.
# flake8: noqa: F821

import mozilla.prettyprinters


@mozilla.prettyprinters.pretty_printer("unscoped_no_storage")
class my_typedef(object):
    def __init__(self, value, cache):
        pass

    def to_string(self):
        return "unscoped_no_storage::success"


@mozilla.prettyprinters.pretty_printer("unscoped_with_storage")
class my_typedef(object):
    def __init__(self, value, cache):
        pass

    def to_string(self):
        return "unscoped_with_storage::success"


@mozilla.prettyprinters.pretty_printer("scoped_no_storage")
class my_typedef(object):
    def __init__(self, value, cache):
        pass

    def to_string(self):
        return "scoped_no_storage::success"


@mozilla.prettyprinters.pretty_printer("scoped_with_storage")
class my_typedef(object):
    def __init__(self, value, cache):
        pass

    def to_string(self):
        return "scoped_with_storage::success"


run_fragment("enum_printers.one")
assert_pretty("i1", "unscoped_no_storage::success")
assert_pretty("i2", "unscoped_with_storage::success")
assert_pretty("i3", "scoped_no_storage::success")
assert_pretty("i4", "scoped_with_storage::success")