1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

readline: put duplicated code in readline_default.c.v

This commit is contained in:
Delyan Angelov
2020-12-24 12:39:11 +02:00
parent d1223851a2
commit 9d1365ec67
9 changed files with 20 additions and 445 deletions

View File

@@ -0,0 +1,20 @@
import readline { Readline }
fn no_lines(s string) string {
return s.replace('\n', ' ')
}
fn test_struct_readline() {
// mut rl := Readline{}
// eprintln('rl: $rl')
// line := rl.read_line('Please, enter your name: ') or { panic(err) }
// eprintln('line: $line')
mut methods := []string{}
$for method in Readline.methods {
// eprintln(' method: $method.name | ' + no_lines('$method'))
methods << method.name
}
// eprintln('methods: $methods')
assert 'read_line_utf8' in methods
assert 'read_line' in methods
}