term: replace assert with panic to enable build-module for it too
parent
61611159c7
commit
f3732b730a
|
@ -50,7 +50,9 @@ pub fn get_cursor_position() Coord {
|
||||||
ch = C.getchar()
|
ch = C.getchar()
|
||||||
b := byte(ch)
|
b := byte(ch)
|
||||||
i++
|
i++
|
||||||
assert i < 15
|
if i >= 15 {
|
||||||
|
panic('C.getchar() called too many times')
|
||||||
|
}
|
||||||
// state management:
|
// state management:
|
||||||
if b == `R` {
|
if b == `R` {
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue