mirror of https://github.com/yt-dlp/yt-dlp.git
[swfinterp] Improve undefined representation
This commit is contained in:
parent
fbf94a7815
commit
f48d3e9bbc
|
@ -170,6 +170,10 @@ class _Undefined(object):
|
||||||
def __hash__(self):
|
def __hash__(self):
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return 'undefined'
|
||||||
|
__repr__ = __str__
|
||||||
|
|
||||||
undefined = _Undefined()
|
undefined = _Undefined()
|
||||||
|
|
||||||
|
|
||||||
|
@ -686,6 +690,7 @@ class SWFInterpreter(object):
|
||||||
res = _builtin_classes[mname]
|
res = _builtin_classes[mname]
|
||||||
else:
|
else:
|
||||||
# Assume unitialized
|
# Assume unitialized
|
||||||
|
# TODO warn here
|
||||||
res = undefined
|
res = undefined
|
||||||
stack.append(res)
|
stack.append(res)
|
||||||
elif opcode == 97: # setproperty
|
elif opcode == 97: # setproperty
|
||||||
|
|
Loading…
Reference in New Issue