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

cgen: error if ForInStmt is not handled (#6131)

This commit is contained in:
Nick Treleaven
2020-08-14 20:01:43 +01:00
committed by GitHub
parent b2fee21ef3
commit 75212f9fab
5 changed files with 22 additions and 6 deletions

View File

@ -3,7 +3,6 @@
// that can be found in the LICENSE file.
module builtin
import strings
//import hash.wyhash as hash
import hash
@ -556,6 +555,7 @@ pub fn (m &map) free() {
}
}
/*
pub fn (m map_string) str() string {
if m.len == 0 {
return '{}'
@ -568,3 +568,4 @@ pub fn (m map_string) str() string {
sb.writeln('}')
return sb.str()
}
*/