mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 14:25:44 +08:00
20 lines
649 B
Python
20 lines
649 B
Python
|
# This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
|
||
|
|
||
|
class VariantPrinter:
|
||
|
def __init__(self, val):
|
||
|
self.val = val
|
||
|
|
||
|
def to_string(self):
|
||
|
typeId = int(self.val['typeId'])
|
||
|
type = self.val.type.template_argument(typeId)
|
||
|
value = self.val['storage'].reinterpret_cast(type.pointer()).dereference()
|
||
|
return type.name + " [" + str(value) + "]"
|
||
|
|
||
|
def match_printer(val):
|
||
|
type = val.type.strip_typedefs()
|
||
|
if type.name and type.name.startswith('Luau::Variant<'):
|
||
|
return VariantPrinter(val)
|
||
|
return None
|
||
|
|
||
|
gdb.pretty_printers.append(match_printer)
|