diff --git a/distribution/lib/Standard/Base/0.0.0-dev/src/Runtime/Debug.enso b/distribution/lib/Standard/Base/0.0.0-dev/src/Runtime/Debug.enso index f69dba53d650d..8d35fe65f1db0 100644 --- a/distribution/lib/Standard/Base/0.0.0-dev/src/Runtime/Debug.enso +++ b/distribution/lib/Standard/Base/0.0.0-dev/src/Runtime/Debug.enso @@ -15,7 +15,7 @@ import project.Nothing.Nothing > Example Dropping into a debugging REPL during execution. - Debug.breakpoint + Standard.Base.Runtime.Debug.breakpoint breakpoint : Nothing breakpoint = @Builtin_Method "Debug.breakpoint" diff --git a/distribution/lib/Standard/Table/0.0.0-dev/src/Data/Type/Value_Type.enso b/distribution/lib/Standard/Table/0.0.0-dev/src/Data/Type/Value_Type.enso index bc71494503e76..880919256af64 100644 --- a/distribution/lib/Standard/Table/0.0.0-dev/src/Data/Type/Value_Type.enso +++ b/distribution/lib/Standard/Table/0.0.0-dev/src/Data/Type/Value_Type.enso @@ -206,9 +206,11 @@ type Value_Type Specifies if values of the given type can be compared for ordering. are_comparable : Value_Type -> Value_Type -> Boolean are_comparable type_1 type_2 = - find_bucket typ = + find_bucket typ = typ.if_not_error <| buckets = [["Integer", "Float", "Decimal"], ["Char"], ["Date"], ["Date_Time"], ["Time"], ["Mixed"]] - ctor_name = Meta.meta typ . constructor . name + ## TODO [RW] workaround for the bug #6258: + cleared_typ = Warning.clear typ + ctor_name = Meta.meta cleared_typ . constructor . name buckets.index_of bucket-> bucket.contains ctor_name