Fix TextJoyType inheritance.
This commit is contained in:
parent
49941f9a33
commit
6576e1a431
|
|
@ -210,8 +210,8 @@ flatten == [] swap [concat] step
|
||||||
quoted == [unit] dip
|
quoted == [unit] dip
|
||||||
unquoted == [i] dip
|
unquoted == [i] dip
|
||||||
enstacken == stack [clear] dip
|
enstacken == stack [clear] dip
|
||||||
disenstacken == ? [uncons ?] loop pop
|
|
||||||
? == dup truthy
|
? == dup truthy
|
||||||
|
disenstacken == ? [uncons ?] loop pop
|
||||||
dinfrirst == dip infra first
|
dinfrirst == dip infra first
|
||||||
nullary == [stack] dinfrirst
|
nullary == [stack] dinfrirst
|
||||||
unary == nullary popd
|
unary == nullary popd
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,7 @@ class IntJoyType(FloatJoyType):
|
||||||
prefix = 'i'
|
prefix = 'i'
|
||||||
|
|
||||||
|
|
||||||
class TextJoyType(FloatJoyType):
|
class TextJoyType(AnyJoyType):
|
||||||
accept = basestring
|
accept = basestring
|
||||||
prefix = 't'
|
prefix = 't'
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue